Android studio gradle 配置APK簽名

Configure Signing Settings


Gradle does not sign your release build's APK unless you explicitly define a  signing configuration for this build. You can easily create a release key and  sign your release build  type using Android Studio.

To manually configure the signing configurations for your release build type  using Gradle build configurations:

  1. Create a keystore. A keystore is a binary file    that contains a set of private keys. You must keep your keystore in a safe    and secure place.

  2. Create a private key. A private key represents    the entity to be identified with the app, such as a person or a company.

  3. Add the signing configuration to the module-level build.gradle      file:

    ...
    android
    {
       
    ...
        defaultConfig
    {...}
        signingConfigs
    {
            release
    {
                storeFile file
    ("myreleasekey.keystore")
                storePassword
    "password"
                keyAlias
    "MyReleaseKey"
                keyPassword
    "password"
           
    }
       
    }
        buildTypes
    {
            release
    {
               
    ...
                signingConfig signingConfigs
    .release
           
    }
       
    }
    }

     

To generate a signed APK, select Build > Generate Signed  APK from the main menu. The package in  app/build/apk/app-release.apk is now signed with your release  key.

Note: Including the passwords for your release key and  keystore inside the build file is not a good security practice.  Alternatively, you can configure the build file to obtain these passwords  from environment variables or have the build process prompt you for these  passwords.

To obtain these passwords from environment variables:

storePassword System.getenv("KSTOREPWD")
keyPassword
System.getenv("KEYPWD")

To have the build process prompt you for these passwords if you are invoking  the build from the command line:

storePassword System.console().readLine("\nKeystore password: ")
keyPassword
System.console().readLine("\nKey password: ")

After you complete this process, you can distribute your app and publish it  on Google Play.

Warning: Keep your keystore and private key in a safe and  secure place, and ensure that you have secure backups of them. If you publish  an app to Google Play and then lose the key with which you signed your app,  you will not be able to publish any updates to your app, since you must  always sign all versions of your app with the same key.


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章