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

时间:2015-03-05 12:46:56   收藏:0   阅读:3062

在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

 

原文:http://www.cnblogs.com/cokekevin/p/4315448.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!