当前位置:   article > 正文

build.gradle中隐式加载签名_kts 隐式签名signingconfigs

kts 隐式签名signingconfigs

- 在build.gradle中隐式和显示配置签名的效果如下

    //配置签名(debug版或默认使用默认的签名,release版要自己配置一下)
   signingConfigs {
       release {
           def Properties keyProps = new Properties()
           keyProps.load(new FileInputStream(file('C:\\Users\\Administrator\\.android\\debug_sign.properties')))
           storeFile file(keyProps["store_file"])
           storePassword keyProps["store_pwd"]
           keyAlias keyProps["key_alias"]
           keyPassword keyProps["key_pwd"]
       }
       debug {
           storeFile file('C:\\Users\\Administrator\\.android\\default.jks')
           storePassword '123456'
           keyAlias 'androiddebug'
           keyPassword '123456'
       }
   }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

隐式配置方法

  1. 新建一个sign.properties文件(其他名字和直接用项目中的local.properties)都行
  2. 在其中写上签名文件地址和密码,别名和密码(键值对的写法,根据需要修改)
store_file=C:\\Users\\Administrator\\.android\\debug.keystore
store_pwd=android
key_alias=androiddebugkey
key_pwd=android
  • 1
  • 2
  • 3
  • 4

3.在需要的版本配置就可以了

signingConfigs {
    release {
        def Properties keyProps = new Properties()
        keyProps.load(new FileInputStream(file('C:\\Users\\Administrator\\.android\\debug_sign.properties')))
        storeFile file(keyProps["store_file"])
        storePassword keyProps["store_pwd"]
        keyAlias keyProps["key_alias"]
        keyPassword keyProps["key_pwd"]
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/845357
推荐阅读
相关标签
  

闽ICP备14008679号