提问人:Trần Triều 提问时间:6/8/2021 更新时间:6/9/2021 访问量:142
Android 通过评级(1-5 星)通过 DeepLink 进入 Play 商店
android pass rating (1-5 stars) to play store via deeplink
问:
我正在尝试通过评分(1-5 星)通过深度链接玩商店,可能吗?
val uriBuilder = Uri.parse("https://play.google.com/store/apps/details")
.buildUpon()
.appendQueryParameter("id", PACKAGE_NAME)
val intent = Intent(Intent.ACTION_VIEW).apply {
data = uriBuilder.build()
setPackage("com.android.vending")
}
startActivity(context,intent, bundleOf())
答:
1赞
snachmsm
6/8/2021
#1
不,这种注入是不可能的,但您可以使用官方的 Google Play 应用内审核 API
0赞
user14678216
6/9/2021
#2
您始终可以使用 Google Play 审核 API,通过显示对话框来允许用户审核您的应用。您可以在此处找到更多信息:https://developer.android.com/guide/playcore/in-app-review
评论