我最近将我的 android studio 从 0.2.6 升级到了 0.2.11。在 0.2.6 中打开的 Build -> "generate signed apk" 向导不会出现在这里。相反,它显示一个对话框,如:
对于基于 Gradle 的项目,应在 Gradle 构建脚本中指定签名配置。有关更多信息,请参阅 Gradle 用户指南。
我什至在 build.gradle 文件中添加了以下几行:
signingConfigs {
debug {
storeFile file("debug.keystore")
}
myConfig {
storeFile file("other.keystore")
storePassword "android"
keyAlias "androiddebugkey"
keyPassword "android"
}
}
buildTypes {
foo {
debuggable true
jniDebugBuild true
signingConfig signingConfigs.myConfig
}
}
谁能告诉我可能是什么问题?
或者您能否让我知道如何降级我的工作室?
谢谢