com.google.gms : google-services에 대해 동일한 경고가 발생했습니다.
해결 방법은 build.gradle 프로젝트의 파일에서 클래스 경로 com.google.gms : google-services를 클래스 경로 'com.google.gms : google-services : 3.2.0'으로 업그레이드하는 것입니다.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.2.0'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Android Studio verion 3.1에서 종속성을 보완하는 단어가 구현으로 대체되었습니다.
android studio 3.1에서 경고와의 종속성
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:27.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
안드로이드 스튜디오 3.1에서 의존성 OK
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
Gradel은 새 프로젝트를 위해 Android Studio 3.1에서 생성합니다.
https://docs.gradle.org/current/userguide/dependency_management_for_java_projects.html을 방문 하십시오.
자세한 내용은 https://docs.gradle.org/current/userguide/declaring_dependencies.html