现在的位置: 首页 > 综合 > 正文

android studio调整默认的debug.keystore位置。

2018年01月16日 ⁄ 综合 ⁄ 共 213字 ⁄ 字号 评论关闭

在工程文件夹的build.gradle文件中的增加以下内容:

android {
    signingConfigs {
        debug {
            storeFile file("your.keystore")
        }
    }
}

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

抱歉!评论已关闭.