I am annoyed by the simple feature that is missing from the Android email application. Since this application is released as open source , I can fix this quite easily.
Question: How can I cancel this modification so that I and other users can install the modified EMail application (without root access)? I tried the following:
- With many copies, I was able to create an EMail application with the standard Eclipse / ant toolchain and without the ASOP toolchain that uses make scripts.
- Installing this application now leads to an error because the package is already installed (obviously, and I do not have keys for singing to update)
- Disabling the EMail application on the device also does not help, I still can not install a new application.
Although Iβm about changing the name of the application package in the manifest, itβs not so simple: you also need to move all the classes to the new package. In addition, as you can see in AndroidManifest , the application defines new permissions ( com.android.email.permission.READ_ATTACHMENT ) and other things that lead to duplication errors when installing a modified package. These permissions are links in the form of strings in the source.
Modifies each file manually and then debugs every error, is it really the only solution to my problem? These changes will also make it difficult to work with newer versions of the EMail application, as I modified and moved each file.
source share