เมื่อเช้านี้ฉันเริ่มอัปเดตไลบรารีโครงการเวอร์ชันล่าสุดของฉัน
ฉันพยายามอัปเดต GCM เป็นรุ่นล่าสุด 9.2.0 แต่ฉันได้รับข้อผิดพลาดนี้:
ข้อผิดพลาด: การดำเนินการล้มเหลวสำหรับงาน ': แอพ: processDebugGoogleServices' โปรดแก้ไขข้อขัดแย้งของรุ่นด้วยการอัปเดตปลั๊กอินของ google-services (ข้อมูลเกี่ยวกับรุ่นล่าสุดมีให้ที่https://bintray.com/android/android-tools/com.google.gms.google-services/ ) หรืออัปเดตเวอร์ชันของ com.google.android.gms เป็น 9.0.0
นี่คือวิธีที่ฉันมีรหัสของฉัน:
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
แล้ว:
dependencies {
...
compile "com.google.android.gms:play-services-gcm:9.2.0"
...
}
ใครมีปัญหาเดียวกัน / แก้ไขปัญหาเดียวกันได้หรือไม่
ขอบคุณ
แก้ไข
เห็นได้ชัดว่าคุณต้องใช้ปลั๊กอิน GSM ที่ด้านล่างของไฟล์แอพ / build.gradle อื่นเวอร์ชัน 9.2.0 จะทำให้เกิดความขัดแย้งในโครงการของคุณ
สำหรับการอ้างอิงนี่เป็นลักษณะของไฟล์ app / build.gradle ของฉันตอนนี้:
apply plugin: "com.android.application"
apply plugin: "com.neenbedankt.android-apt"
android {
...
}
dependencies {
...
// Google Cloud Messaging
compile "com.google.android.gms:play-services-gcm:9.2.0"
...
}
apply plugin: "com.google.gms.google-services"