Android Studio设置默认的签名文件(.keystore)

在build.gradle(Module: app)文件中,增加:

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

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

 

posted @ 2015-03-05 12:02  CokeKevin  阅读(3798)  评论(0编辑  收藏  举报