android studio 修改默认的 debug.keystore

来源:互联网 发布:咕咚运动软件 编辑:程序博客网 时间:2024/05/17 21:44

在build.gradle (app)  配置文件里面 加上这段代码 ,file 括号中填写你的 debug.keystore 的路径

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


也可以直接在 studio上设置:





0 0