gpt4 book ai didi

ios - Xamarin.Forms 如何在 Android 和 iOS 上添加应用评​​分?

转载 作者:行者123 更新时间:2023-12-01 15:39:14 24 4
gpt4 key购买 nike

哪个是在 Xamarin.Forms 应用程序上添加应用评​​级的最佳/最简单选项,默认星形表单直接连接到 Play Store 或 App Store?

最佳答案

编辑 : 我为此创建了一个 nuget 包,您可以从 Here 下载或查看GitHub repo .
在 Android 上,您必须打开 PlayStore 才能对应用进行评分,在 iOS 上,您可以在应用内进行,但只能从 iOS 10 开始。
您必须实现 native 方法并通过依赖服务使用它。
接口(interface)

public interface IAppRating
{
void RateApp();
}
安卓
public class AppRatiing : IAppRating
{
public void RateApp()
{
var activity = Android.App.Application.Context;
var url = $"market://details?id={(activity as Context)?.PackageName}";

try
{
activity.PackageManager.GetPackageInfo("com.android.vending", PackageInfoFlags.Activities);
Intent intent = new Intent(Intent.ActionView, Uri.Parse(url));

activity.StartActivity(intent);
}
catch (PackageManager.NameNotFoundException ex)
{
// this won't happen. But catching just in case the user has downloaded the app without having Google Play installed.

Console.WriteLine(ex.Message);
}
catch (ActivityNotFoundException)
{
// if Google Play fails to load, open the App link on the browser

var playStoreUrl = "https://play.google.com/store/apps/details?id=com.yourapplicationpackagename"; //Add here the url of your application on the store

var browserIntent = new Intent(Intent.ActionView, Uri.Parse(playStoreUrl));
browserIntent.AddFlags(ActivityFlags.NewTask | ActivityFlags.ResetTaskIfNeeded);

activity.StartActivity(browserIntent);
}
}
}
iOS
public class AppRating : IAppRating
{
public void RateApp()
{
if (UIDevice.CurrentDevice.CheckSystemVersion(10, 3))
SKStoreReviewController.RequestReview();
else
{
var storeUrl = "itms-apps://itunes.apple.com/app/YourAppId";
var url = storeUrl + "?action=write-review";

try
{
UIApplication.SharedApplication.OpenUrl(new NSUrl(url));
}
catch(Exception ex)
{
// Here you could show an alert to the user telling that App Store was unable to launch

Console.WriteLine(ex.Message);
}
}
}
}

关于ios - Xamarin.Forms 如何在 Android 和 iOS 上添加应用评​​分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55919274/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com