我们可以利用前面说博客说的,直接在Unity这边写代码去实现一些简单的Android功能,那么跳转到各大平台的商店,也是类似的做法。
直接看代码:
//跳转到指定应用商店,这里以华为为例
public void OnRateToHuawei(){
RateToOther("com.google.android.apps.maps", "com.huawei.appmarket");
}
public static void RateToOther(string appPkg, string marketPkg){
if (!Application.isEditor)
{
AndroidJavaClass intentClass = new AndroidJavaClass("android.content.Intent");
AndroidJavaObject intentObject = new AndroidJavaObject("android.content.Intent");
intentObject.Call<AndroidJavaObject>("setAction", intentClass.GetStatic<string>("ACTION_VIEW"));
AndroidJavaClass uriClass = new AndroidJavaClass("android.net.Uri");
AndroidJavaObject uriObject = uriClass.CallStatic<AndroidJavaObject>("parse", "market://details?id=" + appPkg);
intentObject.Call<AndroidJavaObject>("setData", uriObject);
intentObject.Call<AndroidJavaObject>("setPackage", marketPkg);
AndroidJavaClass unity = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
AndroidJavaObject currentActivity = unity.GetStatic<AndroidJavaObject>("currentActivity");
currentActivity.Call("startActivity", intentObject);
}
}
下面列出一些常用的平台ID:
//天朝各应用商店的PackageName
//包名 商店
//com.android.vending Google Play
//com.tencent.android.qqdownloader 应用宝
//com.qihoo.appstore 360手机助手
//com.baidu.appsearch 百度手机助
//com.xiaomi.market 小米应用商店
//com.wandoujia.phoenix2 豌豆荚
//com.huawei.appmarket 华为应用市场
//com.taobao.appcenter 淘宝手机助手
//com.hiapk.marketpho 安卓市场
//cn.goapk.market 安智市场