我最近正在努力解决我的构建变体无法正常工作的问题。我无法选择变体,-----
选择行上只有一个。
我试图:
- 删除我的 .idea 文件夹,使缓存和所有内容无效
- 将项目与 Gradle 文件同步
我的 buildConfig Gradle 看起来像:
buildTypes {
debug {
minifyEnabled false
resValue "string", "ADMOB_APP_ID", "\"${keystoreProperties["debugAdmobApiKey"]}\""
resValue "string", "INSTERSTIAL_AD_ID", "\"${keystoreProperties["debugInterstialAdKey"]}\""
}
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
resValue "string", "ADMOB_APP_ID", "\"${keystoreProperties["releaseAdmobApiKey"]}\""
resValue "string", "INSTERSTIAL_AD_ID", "\"${keystoreProperties["releaseInterstialAdKey"]}\""
}
}
可能是什么问题呢?