提问人:Abde Samad 提问时间:2/28/2023 更新时间:2/28/2023 访问量:212
如何删除此警告“请应用构建文件底部的 google-services 插件”。
how to delete this warning "Please apply google-services plugin at the bottom of the build file."
问:
我的应用程序工作正常,但我想删除此警告: 请在构建文件底部应用google-services插件。
请不要回复,不要担心,忽略它,因为我真的很想删除它。
这是我的build.gradle(项目)脚本:
type here
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.4.1' apply false
id 'com.android.library' version '7.4.1' apply false
id "com.google.gms.google-services" version "4.3.14" apply false
}
这是我的build.gradle(App)脚本:
type here
plugins {
id 'com.google.gms.google-services'
id 'com.android.application'
}
android {
namespace 'com.ahmedapps.walkthrough_app'
compileSdk 33
defaultConfig {
applicationId "com.ahmedapps.walkthrough_app"
minSdk 21
targetSdk 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_16
targetCompatibility JavaVersion.VERSION_16
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
implementation 'com.android.volley:volley:1.2.1'
implementation 'com.github.bumptech.glide:glide:4.14.2'
def lottieVersion = "4.1.0"
implementation "com.airbnb.android:lottie:$lottieVersion"
implementation platform('com.google.firebase:firebase-bom:31.2.2')
implementation 'com.google.firebase:firebase-analytics'
implementation 'androidx.core:core-splashscreen:1.0.0-alpha01'
implementation 'com.facebook.android:audience-network-sdk:6.12.0'
implementation 'com.google.android.gms:play-services-ads:21.5.0'
implementation 'com.google.ads.mediation:facebook:6.12.0.0'
implementation 'com.onesignal:OneSignal:[4.0.0, 4.99.99]'
}
我尝试更新gradle,但没有用。 我使用的是 7.5 版本
答:
0赞
Rodrigo Ferreira
2/28/2023
#1
您应该添加以下代码行:
应用插件: 'com.google.gms.google-services' 在 build.gradle 文件(模块:app)中,而不是在 build.gradle 文件(项目)中。
尝试在所有依赖项之后添加。
评论
0赞
Abde Samad
2/28/2023
不幸的是,它没有奏效。我在另一篇帖子上看到了同样的答案,我刚刚再试了一次,现在这是一个错误而不是警告。只是让它变得更糟。
0赞
Abde Samad
2/28/2023
#2
所以这是我为修复它所做的:
第 1 步:我升级了我的 gradle。
第 2 步:我将其添加到依赖项中(确保添加最新版本):
implementation 'com.google.android.gms:play-services-location:21.0.1'
上面的实现你可以在这里找到它: https://developers.google.com/android/guides/setup
step3:我在gradle.build(app)中将我的插件部分重新排序为:
plugins {
id 'com.android.application'
id 'com.google.gms.google-services'
}
它现在正在 100% 工作。
评论