android studio开发打包带签名

在build.gradle文件中加入以下配置  
signingConfigs {
        debug {
            storeFile file("limpoxe.keystore")
            storePassword "123456"
            keyAlias "limpoxe"
            keyPassword "123456"
        }

        release {
            storeFile file("limpoxe.keystore")
            storePassword "123456"
            keyAlias "limpoxe"
            keyPassword "123456"
        }
    } 

猜你喜欢

转载自blog.csdn.net/zpc15200790194/article/details/51725523