Android 애플리케이션에서 Google Play In App Review API 통합
이 긴 프로세스로 인해 사용자는 앱에 대한 리뷰를 작성하는 데 관심이 없을 수 있습니다.
이 게시물은 Android에서 GooglePlay 인앱 리뷰 API를 통합하는 방법을 알려줍니다.
시작하자
1단계: Android 스튜디오에서 Android 애플리케이션 만들기
2단계: build.gradle 파일에 Inapp Review 종속성 추가
implementation 'com.google.android.play:core-ktx:1.8.1'
3단계: API로 작업하려면 ReviewManager 클래스의 인스턴스를 생성해야 합니다.
RequestInfo 객체 생성
val request = manager.requestReviewFlow()
request.addOnCompleteListener { request ->
if (request.isSuccessful) {
// We got the ReviewInfo object
val reviewInfo = request.result
} else {
// There was some problem, continue regardless of the result.
}
}
인앱 검토 창 시작
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.
}
4단계: 매니페스트 파일에 인터넷 권한 추가
<uses-permission android:name="android.permission.INTERNET"/>
5단계: InApp Review API를 테스트하려면 앱을 GooglePlay에 게시해야 합니다.
내가 이것을 위해 한 것은
최소 요구 사항들
디자인 지침 및 할당량 제한
[더 많은 Android 예제 읽기[ https://rrtutors.com/language/Android ]
Reference
이 문제에 관하여(Android 애플리케이션에서 Google Play In App Review API 통합), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rrtutors/googleplay-inapp-review-api-integration-in-android-application-35am텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)