ผสานรวมรีวิวในแอป (Kotlin หรือ Java)

คู่มือนี้จะอธิบายวิธีผสานรวมรีวิวในแอปโดยใช้ Kotlin หรือ Java มีคู่มือการผสานรวมแยกต่างหากหากคุณใช้โค้ดดั้งเดิมหรือ Unity

ตั้งค่าสภาพแวดล้อมในการพัฒนาซอฟต์แวร์

ไลบรารีการรีวิวในแอปของ Play เป็นส่วนหนึ่งของไลบรารีหลักของ Google Play โปรดใส่ Dependency ของ Gradle ต่อไปนี้เพื่อผสานรวมไลบรารีรีวิวในแอปของ 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: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.
    // So, 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")
    ...
}

สร้าง ReviewManager

ReviewManager คืออินเทอร์เฟซที่ช่วยให้แอปเริ่มขั้นตอนการตรวจสอบในแอปได้ รับได้โดยการสร้างอินสแตนซ์โดยใช้ ReviewManagerFactory

Kotlin

val manager = ReviewManagerFactory.create(context)

Java

ReviewManager manager = ReviewManagerFactory.create(context)

ขอออบเจ็กต์ ReviewInfo

ทำตามคำแนะนำเกี่ยวกับเวลาที่ควรขอรีวิวในแอปเพื่อระบุจุดที่เหมาะสมในเส้นทางของผู้ใช้แอปเพื่อแจ้งให้ผู้ใช้เขียนรีวิว (เช่น เมื่อผู้ใช้ผ่านด่านในเกม) เมื่อแอปถึงจุดใดจุดหนึ่งเหล่านี้ ให้ใช้อินสแตนซ์ ReviewManager เพื่อสร้างงานคำขอ หากดำเนินการสำเร็จ API จะส่งกลับออบเจ็กต์ ReviewInfo ที่ต้องใช้เพื่อเริ่มขั้นตอนการตรวจสอบในแอป

Kotlin

val request = manager.requestReviewFlow()
request.addOnCompleteListener { task ->
    if (task.isSuccessful) {
        // We got the ReviewInfo object
        val reviewInfo = task.result
    } else {
        // There was some problem, log or handle the error code.
        @ReviewErrorCode val reviewErrorCode = (task.getException() as ReviewException).errorCode
    }
}

Java

ReviewManager manager = ReviewManagerFactory.create(this);
Task<ReviewInfo> request = manager.requestReviewFlow();
request.addOnCompleteListener(task -> {
    if (task.isSuccessful()) {
        // We can get the ReviewInfo object
        ReviewInfo reviewInfo = task.getResult();
    } else {
        // There was some problem, log or handle the error code.
        @ReviewErrorCode int reviewErrorCode = ((ReviewException) task.getException()).getErrorCode();
    }
});

เปิดใช้งานขั้นตอนการรีวิวในแอป

ใช้อินสแตนซ์ ReviewInfo เพื่อเปิดขั้นตอนการรีวิวในแอป รอจนกว่าผู้ใช้จะดำเนินการตามขั้นตอนการตรวจสอบในแอปจนเสร็จสิ้นแล้ว แอปของคุณจึงจะดำเนินการตามขั้นตอนปกติของผู้ใช้ต่อ (เช่น เลื่อนไปยังด่านถัดไป)

Kotlin

val flow = manager.launchReviewFlow(activity, reviewInfo)
flow.addOnCompleteListener { _ ->
    // The flow has finished. The API does not indicate whether the user
    // reviewed or not, or even whether the review dialog was shown. Thus, no
    // matter the result, we continue our app flow.
}

Java

Task<Void> flow = manager.launchReviewFlow(activity, reviewInfo);
flow.addOnCompleteListener(task -> {
    // The flow has finished. The API does not indicate whether the user
    // reviewed or not, or even whether the review dialog was shown. Thus, no
    // matter the result, we continue our app flow.
});

ขั้นตอนถัดไป

ทดสอบขั้นตอนการรีวิวในแอปของแอปเพื่อยืนยันว่าการผสานรวมทำงานได้อย่างถูกต้อง