Hi If you don't want to go for hard code all of this stuff , then go for below easy steps

->Your project
  ->Your Module
  ->Right click on your module
   ->go to open module settings
      ->Go to Signing section
         ->Specify all the attribute here and browse your Custom debug key in Store File

Then you will find below code which will be auto-create by android studio in build.gradle

signingConfigs {
    debug {
        storeFile file('custom_debug_keystore')
        keyAlias 'androiddebugkey'
        keyPassword 'android'
        storePassword 'android'
    }
}

Note:

1) Please do not use .keystore in the code manually you go for manual configuration

2) Please specify correct Alias and password

http://stackoverflow.com/questions/17189076/what-is-the-equivalent-of-eclipse-custom-debug-keystore-in-android-studio

相关文章:

  • 2021-11-19
  • 2021-04-25
  • 2021-08-13
  • 2021-05-14
猜你喜欢
  • 2022-01-26
  • 2021-12-16
  • 2021-11-21
  • 2021-10-19
  • 2021-07-02
  • 2021-07-05
  • 2021-05-29
相关资源
相似解决方案