ฉันมีคำเตือนเดียวที่เกิดขึ้นกับ com.google.gms: google-services
ทางออกคือการอัพเกรด classpath com.google.gms: google-services เป็น classpath 'com.google.gms: google-services: 3.2.0' ในไฟล์ใน build.gradle โครงการ:
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'
}
OKใน Android studio 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 สร้างโดย 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