如何要求应用程序被评为flutter?



也许有人使用这个插件:https://pub.dev/packages/rate_my_app要求用户对应用程序进行评级。我想知道使用该插件标记的评级是否可以传递到各自的商店(应用程序商店和游戏商店),以及如何测试此功能或只能在应用程序发布后才能完成?

或者我可以使用其他插件来要求用户对我的应用进行评分。

是的,可以在应用发布后完成。如果你的应用处于测试阶段。你可以添加不同的包名,比如Google chrome for android和safari for ios。你也可以用这个作为例子。static const playStoreId = 'com.packageName.packageName'; static const appstoreId = 'com.packageName.packageName';

示例:https://github.com/Skyost/RateMyApp/tree/master/example/lib

执行速率我的应用程序这是一个例子,你只需要添加https://github.com/Skyost/RateMyApp/blob/master/example/lib/main.dart。

rateMyApp: RateMyApp(
googlePlayIdentifier: playStoreId,
appStoreIdentifier: appstoreId,
minDays: 0,
minLaunches: 2,
// remindDays: 1,
// remindLaunches: 1,
)```


相关内容

最新更新