有相当于华为服务的In-App Review
There is an equivalent of In-App Review for Huawei services
我刚刚为我的应用程序实施了应用内审查 SDK。但据我所知,这将适用于具有 Google 服务的设备。
对于没有 Google 服务的华为设备,是否有相当于应用内评论的等效项,或者在这种情况下,我应该邀请用户通过 link 到 App Gallery 对应用进行评分吗?
非常感谢您的帮助。
还没有有用的SDK
。
如果你没有像华为P40那样的Google服务,我建议使用App Gallery。
为什么?:
Because the next popular rate widget is in App Gallery.
People don't
like change, so they will maximum use the next big thing.
Here 是一篇很好的决策文章。我认为问题已得到解答:)
针对华为应用程序库的应用内评论,华为有自己的解决方案,发布的应用可以通过这种方式触发:
val intent = Intent("com.huawei.appmarket.intent.action.guidecomment")
intent.setPackage("com.huawei.appmarket")
activityContext.startActivityForResult(intent, inAppReviewResultCode)
你找到官方文档here。
我刚刚为我的应用程序实施了应用内审查 SDK。但据我所知,这将适用于具有 Google 服务的设备。
对于没有 Google 服务的华为设备,是否有相当于应用内评论的等效项,或者在这种情况下,我应该邀请用户通过 link 到 App Gallery 对应用进行评分吗?
非常感谢您的帮助。
还没有有用的SDK
。
如果你没有像华为P40那样的Google服务,我建议使用App Gallery。 为什么?:
Because the next popular rate widget is in App Gallery.
People don't like change, so they will maximum use the next big thing.
Here 是一篇很好的决策文章。我认为问题已得到解答:)
针对华为应用程序库的应用内评论,华为有自己的解决方案,发布的应用可以通过这种方式触发:
val intent = Intent("com.huawei.appmarket.intent.action.guidecomment")
intent.setPackage("com.huawei.appmarket")
activityContext.startActivityForResult(intent, inAppReviewResultCode)
你找到官方文档here。