最终解决方案
我只是个白痴。增加版本后的实际问题是,我在文件末尾没有应用插件。 Check this topic,我之前的搜索很糟糕
原始问题
我从不理解Gradle是如何工作的,所以对于愚蠢的问题感到抱歉。
我遇到了问题,我不知道出了什么问题,现在该做什么。 我有GCM的应用程序,一切正常,直到我们为应用程序添加第二语言。
然后我收到错误,google_app_id
没有被翻译 - 发现这是在较新版本的GCM包中修复的,我将其更新为更新的版本。现在我收到错误
错误:任务':app:processDebugGoogleServices'执行失败。 请修改版本冲突,方法是更新google-services插件的版本(有关https://bintray.com/android/android-tools/com.google.gms.google-services/的最新版本的信息)或将com.google.android.gms的版本更新为8.3.0。
但由于翻译错误,我将其从8.3.0更新到8.4.0。我的build.gradle文件就像这样
apply plugin: 'com.google.gms.google-services'
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile "com.google.android.gms:play-services-gcm:8.4.0"
compile 'com.google.code.gson:gson:2.4'
compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
compile 'com.squareup.picasso:picasso:2.5.2'
compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
transitive = true;
}
compile 'org.apmem.tools:layouts:1.10'
}
和
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.google.gms:google-services:2.0.0-alpha6'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
谢谢
答案 0 :(得分:0)
当lint找到一个未在所有语言中进行过转换的字符串时,会发生此类问题。 它应该从2.0.0-alpha3开始修复。
您可以使用一些解决方法:
您可以停用MissingTranslation
文件中的build.gradle
。
buildTypes {
release {
lintOptions {
disable 'MissingTranslation'
}
}
}
请注意,因为它会禁用所有MissingTranslation错误。
否则,您可以使用lint.xml文件:
<lint>
<issue id="MissingTranslation">
<ignore regexp="google_app_id"/>
</issue>
</lint>