Tôi có một Cảnh báo tương tự gây ra cho com.google.gms: google-services.
Giải pháp là nâng cấp classpath com.google.gms: google-services lên classpath 'com.google.gms: google-services: 3.2.0' trong tệp trong build.gradle Project:
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
}
Trong Android Studio verion 3.1, phần phụ thuộc từ được thay thế để thực hiện
phụ thuộc với Cảnh báo trong studio android 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'
}
phụ thuộc OK trong studio android 3.1
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 tạo bởi Android Studio 3.1 cho dự án mới.
Truy cập https://docs.gradle.org/civerse/userguide/dependency_man Quản lý_for_java_projects.html
Để biết chi tiết https://docs.gradle.org/civerse/userguide/declaring_dependencies.html