เวอร์ชันของไลบรารี
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
ตั้งแต่เวอร์ชัน 15.0.0 เป็นต้นไป เราจะดูแลรักษาไลบรารีบริการ Google Play
แยกกัน เพื่อให้ทีมพัฒนาของแต่ละไลบรารีสามารถจัดส่งการแก้ไขและ
การปรับปรุงได้อย่างอิสระและรวดเร็วยิ่งขึ้น คุณสามารถติดตามการเปิดตัวล่าสุด
สำหรับบริการ Google Play และ Firebase ได้
การจับคู่เวอร์ชันที่เข้มงวด
ไลบรารีเวอร์ชันหนึ่งอาจใช้ร่วมกับไลบรารีอีกรายการหนึ่งในเวอร์ชันที่เฉพาะเจาะจงไม่ได้
ปลั๊กอิน Gradle หลายตัวมีคำแนะนำเกี่ยวกับการไม่ตรงกันของเวอร์ชันเหล่านี้เพื่อช่วยจัดการสถานการณ์นี้
ตรรกะในปลั๊กอินเหล่านี้คล้ายกับตรรกะในfailOnVersionConflict()
กฎสำหรับ ResolutionStrategy
ที่เชื่อมโยงกับบริการของ Google Play และการอ้างอิงของ Firebase
ปลั๊กอินบริการของ Google
ปลั๊กอิน Gradle ของบริการ Google จะตรวจสอบเวอร์ชันที่เข้ากันได้ของบริการ Google
Play และไลบรารี Firebase
ปลั๊กอินจับคู่เวอร์ชันแบบสแตนด์อโลน
หากไม่ได้ใช้ปลั๊กอินบริการของ Google แต่ยังต้องการตรวจสอบเวอร์ชันของ Dependency อย่างเข้มงวด คุณสามารถใช้
strict-version-matcher-plugin
ได้ คุณดูโค้ด
ปลั๊กอินนี้ได้ใน GitHub
ข้อมูลโค้ดต่อไปนี้แสดงวิธีเพิ่มปลั๊กอิน Gradle
Kotlin DSL
build.gradle.kts
plugins {
id("com.google.android.gms.strict-version-matcher-plugin")
}
Groovy DSL
build.gradle
apply plugin: 'com.google.android.gms.strict-version-matcher-plugin'
หากต้องการใช้ปลั๊กอินนี้ คุณต้องเพิ่มข้อมูลต่อไปนี้ลงใน classpath ของ buildscript ซึ่งได้จากที่เก็บ Maven ของ Google
Kotlin DSL
build.gradle.kts
classpath("com.google.android.gms:strict-version-matcher-plugin:1.2.4")
Groovy DSL
build.gradle
classpath 'com.google.android.gms:strict-version-matcher-plugin:1.2.4'
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-08-31 UTC
[null,null,["อัปเดตล่าสุด 2025-08-31 UTC"],[[["\u003cp\u003eGoogle Play services libraries are now individually maintained, allowing for faster and more frequent updates to individual components.\u003c/p\u003e\n"],["\u003cp\u003eStrict version matching is crucial as library versions might be incompatible, and the Google Services Gradle plugin and the standalone strict-version-matcher-plugin help manage these dependencies.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003estrict-version-matcher-plugin\u003c/code\u003e offers a way to ensure version compatibility for Google Play services and Firebase dependencies, even without using the Google Services plugin.\u003c/p\u003e\n"],["\u003cp\u003eTo utilize the standalone plugin, you need to add it to your buildscript classpath and apply it in your Gradle file using the provided code snippets.\u003c/p\u003e\n"]]],["Google Play services libraries are individually maintained, enabling faster updates. To manage potential version incompatibilities between libraries, Gradle plugins provide guidance. The Google Services Gradle plugin checks for compatible versions of Google Play services and Firebase libraries. Alternatively, the `strict-version-matcher-plugin` offers dependency version checking without the Google Services plugin. To use it you must add the plugin and the `strict-version-matcher-plugin` classpath to your build script.\n"],null,["# Library versions\n\n\u003cbr /\u003e\n\nAs of version 15.0.0, the Google Play services libraries are maintained\nindividually, allowing the development teams for each library to ship fixes and\nenhancements independently and more quickly. You can track the latest releases\nfor [Google Play services](/android/guides/releases) and [Firebase](https://firebase.google.com/support/release-notes/android).\n\nStrict version matching\n-----------------------\n\nA version of one library might be incompatible with a specific version of\nanother library. To help handle this situation, several Gradle plugins provide\nguidance for these version mismatches. The logic in these plugins is similar to\nthe logic in a `failOnVersionConflict()` rule for a [`ResolutionStrategy`](https://docs.gradle.org/current/dsl/org.gradle.api.artifacts.ResolutionStrategy.html)\nthat's associated with Google Play services and Firebase dependencies.\n\n### Google services plugin\n\nThe [Google Services Gradle plugin](/android/guides/google-services-plugin) checks for compatible versions of Google\nPlay services and Firebase libraries.\n\n### Standalone version matcher plugin\n\nIf you're not using the Google Services plugin, but you still want strict\nversion checking of your dependencies, you can apply the\n`strict-version-matcher-plugin`. You can view this [plugin's\ncode](https://github.com/google/play-services-plugins/tree/master/strict-version-matcher-plugin) on GitHub.\n\nThe following code snippet shows how to add the Gradle plugin: \n\n### Kotlin DSL\n\nbuild.gradle.kts \n\n```kotlin\nplugins {\n id(\"com.google.android.gms.strict-version-matcher-plugin\")\n}\n```\n\n### Groovy DSL\n\nbuild.gradle \n\n```groovy\napply plugin: 'com.google.android.gms.strict-version-matcher-plugin'\n```\n\nTo use this plugin, you also need to add the following to your buildscript\nclasspath, obtained from [Google's Maven repository](https://maven.google.com/web/index.html#com.google.android.gms:strict-version-matcher-plugin): \n\n### Kotlin DSL\n\nbuild.gradle.kts \n\n```kotlin\nclasspath(\"com.google.android.gms:strict-version-matcher-plugin:1.2.4\")\n```\n\n### Groovy DSL\n\nbuild.gradle \n\n```groovy\nclasspath 'com.google.android.gms:strict-version-matcher-plugin:1.2.4'\n```"]]