Current location - Quotes Website - Personality signature - How to add an Android application signature to an application file (Android application signature)
How to add an Android application signature to an application file (Android application signature)
All Android applications require developers to digitally sign with certificates, and anroid system will not install unsigned programs.

At ordinary times, our program can be installed and run on the simulator, because in the process of developing applications, ADT will be automatically signed with the default key and certificate because it is compiled in Debug interview, while when compiled in release mode, apk files will not be automatically signed, so manual signing is required.

Signing apk can bring the following benefits:

1. Application upgrade: If you want users to upgrade to the new version seamlessly, you must sign with the same certificate. This is because if the upgraded application is signed with the same certificate, only the upgraded application will be allowed to be installed. If you use a different certificate, your application will be required to use a different package name, which is equivalent to installing a brand new application. If you want to upgrade the application, the signing certificate should be the same and the package name should be the same!

2. Modularization of applications: Android system can allow multiple applications signed by the same certificate to run in one process, and the system actually treats them as one application. At this point, our application can be deployed in modules, and users can upgrade one of the modules independently.

3. Enjoy code or data * * *: Android provides a signature-based permission mechanism, so one application can disclose its functions for another application signed with the same certificate. By signing multiple applications with the same certificate, code and data can be safely shared between applications by using signature-based permission check.

If different applications want to share data or code, they should run in the same process and sign with the same certificate.