gpt4 book ai didi

android - 找不到 com.google.gms :google-services:3. 1.1

转载 作者:行者123 更新时间:2023-12-03 05:46:39 34 4
gpt4 key购买 nike

我得到了异常(exception):

Could not find com.google.gms:google-services:3.1.1. 

当我开始我的android项目时。

我的 build.gradle(项目:android)
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
google()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

和 build.gradle(模块:app)
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "de.derdoenerdon.ressourcencockpit"
minSdkVersion 15
targetSdkVersion 25
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 'com.android.support:support-v4:25.4.0'
implementation 'com.android.support:recyclerview-v7:25.4.0'
implementation 'com.android.support:design:25.4.0'


implementation 'com.google.firebase:firebase-storage:11.8.0'
implementation 'com.google.firebase:firebase-auth:11.8.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:25.4.0'


compile 'com.github.OPCFoundation:UA-Java:1.03.342.0'


testCompile 'junit:junit:4.12'
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.7'

}

buildscript {
dependencies {
classpath 'com.google.gms:google-services:3.1.1'
}
}
apply plugin: 'com.google.gms.google-services'

关于任何帮助,我将不胜感激。我是安卓新手。
它发生了,因为我尝试在我的应用程序中使用 firebase 并且它自动在我的应用程序中添加了一些依赖项。
非常感谢

编辑:
这就是我的 gradle.build (Module: app) 现在的样子:
    apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "de.derdoenerdon.ressourcencockpit"
minSdkVersion 15
targetSdkVersion 25
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 'com.android.support:support-v4:25.4.0'
implementation 'com.android.support:recyclerview-v7:25.4.0'
implementation 'com.android.support:design:25.4.0'


implementation 'com.google.firebase:firebase-storage:11.8.0'
implementation 'com.google.firebase:firebase-auth:11.8.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:25.3.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:design:25.4.0'


implementation 'com.github.OPCFoundation:UA-Java:1.03.342.0'


testImplementation 'junit:junit:4.12'
testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.7'

}


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

这是警告,我将其作为输出:
Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html

有谁知道,如何删除这个警告?谢谢

最佳答案

添加类路径

 'com.google.gms:google-services:3.1.1'

在项目gradle中的dependencies不在module.app gradle中如下:
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'
classpath 'com.google.gms:google-services:3.1.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
google()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

关于android - 找不到 com.google.gms :google-services:3. 1.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49843149/

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