gpt4 book ai didi

android - 所有gms/firebase库必须使用完全相同的版本规范。找到版本18.3.0、17.1.1、17.0.1

转载 作者:行者123 更新时间:2023-12-03 05:32:01 25 4
gpt4 key购买 nike

我正在尝试将Google admob添加到我的应用中。但是我在其他主题中使用了先前的答案。它不起作用。
这是我的gradle代码:

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion '26.0.2'

defaultConfig {
applicationId "com.test"
minSdkVersion 16
targetSdkVersion 26
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}

}
dependencies {
compile 'com.android.support.constraint:constraint-layout:+'
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
compile 'com.android.support:support-v4:26.1.0'
compile 'uk.co.chrisjenx:calligraphy:2.3.0'
implementation 'com.google.android.gms:play-services-ads:18.3.0'
}


错误是:所有gms / firebase库必须使用完全相同的版本规范。找到版本18.3.0、17.1.1、17.0.1。

最佳答案

您正在混合版本,这就是为什么会出现错误。

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.harun.basicmathquiz"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:support-annotations:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-database:16.0.1'
}

apply plugin: 'com.google.gms.google-services'

不要忘记使用以下命令更新顶级build.gradle文件
classpath 'com.google.gms:google-services:4.0.1'

关于android - 所有gms/firebase库必须使用完全相同的版本规范。找到版本18.3.0、17.1.1、17.0.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58830526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com