หน้านี้อธิบายไลบรารี Google Play Core และวิธีเพิ่มลงในโปรเจ็กต์
ไลบรารี Google Play Core เป็นอินเทอร์เฟซรันไทม์ของแอปของคุณกับ Google Play Store ตัวอย่างสิ่งที่คุณทำได้มีดังนี้
- ดาวน์โหลดแหล่งข้อมูลภาษาเพิ่มเติม
- จัดการการส่งโมดูลฟีเจอร์
- จัดการการนำส่ง Asset Pack
- ทริกเกอร์การอัปเดตในแอป
- ขอรับการตรวจสอบในแอป
ไลบรารี Play Core มีให้บริการใน Java, Native และ Unity ดูข้อมูลเพิ่มเติมเกี่ยวกับรุ่นล่าสุดได้ที่บันทึกประจำรุ่น
การย้ายข้อมูลจากไลบรารี Java และ Kotlin ของ Play Core
ไลบรารี Java และ Kotlin ของ Play Core ได้รับการแบ่งออกเป็นไลบรารี Android หลายรายการตามฟีเจอร์ ซึ่งจะช่วยลดขนาดไลบรารี Play Core ที่เพิ่มลงในแอป และทำให้รอบการเผยแพร่ฟีเจอร์แต่ละรายการเร็วขึ้น
ลักษณะการทํางานของฟีเจอร์แต่ละอย่างยังคงเหมือนเดิมในการย้ายข้อมูลนี้ การเปลี่ยนแปลงที่สําคัญเพียงอย่างเดียวคือเวอร์ชันใหม่ใช้ Task API ของ Google Play Services
ใช้รายการด้านล่างเพื่อย้ายข้อมูลไปยังไลบรารีใหม่และใช้ประโยชน์จากฟีเจอร์ใหม่ๆ และการแก้ไขข้อบกพร่อง หากใช้ฟีเจอร์ Play หลายรายการ คุณเพียงแค่นำเข้าไลบรารีหลายรายการในไฟล์ build.gradle
พร้อมกัน
ขั้นตอนการย้ายข้อมูลทั่วไป
- อัปเดตคำสั่งการนำเข้าที่มีอยู่ของออบเจ็กต์งานจาก
import com.google.android.play.core.tasks.*;
เป็นimport com.google.android.gms.tasks.*;
ชื่อชั้นเรียนทั้งหมดจะไม่มีการเปลี่ยนแปลง - นำการนำเข้าไลบรารี Play Core เก่าในไฟล์
build.gradle
ออก
ผสานรวมไลบรารีการนำส่งเนื้อหา Play
ดึงดูด
// In your app’s build.gradle file: ... dependencies { // This dependency is downloaded from the Google’s Maven repository. // So, make sure you also include that repository in your project's build.gradle file. implementation 'com.google.android.play:asset-delivery:2.2.2' // For Kotlin users also add the Kotlin extensions library for Play Asset Delivery: implementation 'com.google.android.play:asset-delivery-ktx:2.2.2' ... }
Kotlin
// In your app’s build.gradle.kts file: ... dependencies { // This dependency is downloaded from the Google’s Maven repository. // So, make sure you also include that repository in your project's build.gradle file. implementation("com.google.android.play:asset-delivery:2.2.2") // For Kotlin users also import the Kotlin extensions library for Play Asset Delivery: implementation("com.google.android.play:asset-delivery-ktx:2.2.2") ... }
ผสานรวมไลบรารีการนำส่งฟีเจอร์ Play
Groovy
// In your app’s build.gradle file: ... dependencies { // This dependency is downloaded from the Google’s Maven repository. // So, make sure you also include that repository in your project's build.gradle file. implementation 'com.google.android.play:feature-delivery:2.1.0' // For Kotlin users, also add the Kotlin extensions library for Play Feature Delivery: implementation 'com.google.android.play:feature-delivery-ktx:2.1.0' ... }
Kotlin
// In your app’s build.gradle.kts file: ... dependencies { // This dependency is downloaded from the Google’s Maven repository. // Make sure you also include that repository in your project's build.gradle file. implementation("com.google.android.play:feature-delivery:2.1.0") // For Kotlin users, also import the Kotlin extensions library for Play Feature Delivery: implementation("com.google.android.play:feature-delivery-ktx:2.1.0") ... }
ผสานรวมไลบรารีการรีวิวในแอปของ Play
ดึงดูด
// In your app’s build.gradle file: ... dependencies { // This dependency is downloaded from the Google’s Maven repository. // Make sure you also include that repository in your project's build.gradle file. implementation 'com.google.android.play:review:2.0.2' // For Kotlin users, also add the Kotlin extensions library for Play In-App Review: implementation 'com.google.android.play:review-ktx:2.0.2' ... }
Kotlin
// In your app’s build.gradle.kts file: ... dependencies { // This dependency is downloaded from the Google’s Maven repository. // Make sure you also include that repository in your project's build.gradle file. implementation("com.google.android.play:review:2.0.2") // For Kotlin users, also import the Kotlin extensions library for Play In-App Review: implementation("com.google.android.play:review-ktx:2.0.2") ... }
ผสานรวมไลบรารีการอัปเดตในแอปของ Play
ดึงดูด
// In your app’s build.gradle file: ... dependencies { // This dependency is downloaded from the Google’s Maven repository. // Make sure you also include that repository in your project's build.gradle file. implementation 'com.google.android.play:app-update:2.1.0' // For Kotlin users, also add the Kotlin extensions library for Play In-App Update: implementation 'com.google.android.play:app-update-ktx:2.1.0' ... }
Kotlin
// In your app’s build.gradle.kts file: ... dependencies { // This dependency is downloaded from the Google’s Maven repository. // Make sure you also include that repository in your project's build.gradle file. implementation("com.google.android.play:app-update:2.1.0") // For Kotlin users, also import the Kotlin extensions library for Play In-App Update: implementation("com.google.android.play:app-update-ktx:2.1.0") ... }
ข้อกำหนดในการให้บริการของชุดพัฒนาซอฟต์แวร์ Play Core
แก้ไขล่าสุด: 24 กันยายน 2020- การใช้ Play Core Software Development Kit หมายความว่าคุณยอมรับข้อกำหนดเหล่านี้นอกเหนือจากข้อกำหนดในการให้บริการของ Google APIs ("ข้อกำหนดในการให้บริการของ API") หากข้อกำหนดเหล่านี้ขัดแย้งกัน ข้อกำหนดเหล่านี้จะมีผลเหนือกว่าข้อกำหนดในการให้บริการของ API โปรดอ่านข้อกำหนดเหล่านี้และข้อกำหนดในการให้บริการของ API อย่างละเอียด
- "API" หมายถึง API ของ Google, บริการอื่นๆ สำหรับนักพัฒนาแอป และซอฟต์แวร์ที่เกี่ยวข้อง รวมถึงโค้ดที่เผยแพร่ต่อได้
- "โค้ดที่เผยแพร่ต่อได้" หมายถึงโค้ดออบเจ็กต์หรือไฟล์ส่วนหัวที่ Google จัดหาให้ซึ่งเรียกใช้ API
- คุณจะคัดลอกและแจกจ่ายโค้ด Redistributable เพื่อรวมไว้ในไคลเอ็นต์ API เท่านั้นได้ภายใต้ข้อกำหนดเหล่านี้และข้อกำหนดของข้อกำหนดในการให้บริการของ API Google และผู้อนุญาตของ Google เป็นเจ้าของสิทธิ์ กรรมสิทธิ์ และผลประโยชน์ทั้งหมด รวมถึงทรัพย์สินทางปัญญาและสิทธิ์อื่นๆ ที่เป็นกรรมสิทธิ์ทั้งหมดในและของโค้ดที่เผยแพร่ต่อได้ คุณจะไม่มีการแก้ไข แปล หรือสร้างผลงานที่ดัดแปลงมาจากโค้ดที่เผยแพร่ซ้ำได้
- Google อาจทำการเปลี่ยนแปลงข้อกำหนดเหล่านี้ได้ทุกเมื่อโดยมีการแจ้งให้ทราบและสามารถห้ามการใช้งาน Play Core Software Development Kit ต่อไปได้ Google จะโพสต์ประกาศแจ้งการเปลี่ยนแปลงข้อกำหนดที่ https://developer.android.com/guide/playcore/license การเปลี่ยนแปลงจะไม่มีผลย้อนหลัง