問題描述
我收到此錯誤.盡管嘗試了所有事情,但我無法解決它.請幫我.
I getting this error. Despite trying all thing I am unable to resolve it. Please help me.
我嘗試過的事情是:
- 刪除
.build
、.idea
等然后重建 - 清理和重建
- 修改編譯庫版本
謝謝
插件
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'io.fabric'
安卓
android {
dexOptions {
preDexLibraries = false
javaMaxHeapSize "2g"
}
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.funzone.alarmnap"
minSdkVersion 16
targetSdkVersion 27
versionCode 1
multiDexEnabled true
versionName "1.1"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
綠道插件
apply plugin: 'org.greenrobot.greendao'
greendao {
targetGenDir 'src/main/java'
schemaVersion 2
}
所有庫:
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.jjoe64:graphview:4.2.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.facebook.android:audience-network-sdk:4.+'
implementation 'com.facebook.android:facebook-android-sdk:[4,5)'
implementation 'com.facebook.android:notifications:1.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:design:27.1.0'
implementation 'com.android.support:support-v4:27.1.0'
implementation 'com.android.support:support-v13:27.1.0'
implementation 'com.android.support:cardview-v7:27.1.0'
implementation 'com.google.firebase:firebase-messaging:12.0.1'
implementation 'com.google.firebase:firebase-core:12.0.1'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.1'
implementation 'com.android.support:multidex:1.0.3'
implementation 'org.greenrobot:greendao:3.2.2'
testImplementation 'junit:junit:4.12'
testImplementation "org.robolectric:shadows-multidex:3.0"
testImplementation 'org.robolectric:robolectric:3.4.2'
implementation 'com.android.support:preference-v7:27.1.0'
}
repositories {
mavenCentral()
google()
}
谷歌插件
apply plugin: 'com.google.gms.google-services'
推薦答案
我在我的項目中修復了同樣的問題 - 在將 Kotlin 插件更新到 1.2.41 之后(我不知道它是否真的相關.顯然這與 Kotlin 無關) - 與:
I fix the same issue in my project - after updating the Kotlin plugin to 1.2.41 (I don't know if it is really related. apparently this is not related with Kotlin) - with :
classpath 'com.google.gms:google-services:3.2.1'
https://developers.google.com/android/guides/google-服務插件
備注:我可以使用唯一的 15.0.0
Google Play 服務庫版本,但不能使用 play-services-tagmanager
版本,并且firebase
:
Remark: I could stay with the unique 15.0.0
Google Play Services libraries version but not the play-services-tagmanager
one and firebase
:
implementation "com.google.android.gms:play-services-tagmanager:15.0.2"
implementation "com.google.firebase:firebase-core:15.0.2"
項目正在編譯中.
這篇關于程序類型已存在:com.google.android.gms.internal.zzfq的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!