我有一个用Unity隐藏的游戏(apk)
我想通过Android应用程序打开游戏
问题是当我检查出这个安装程序时说它没有安装......
String packageName = "com.altaretore.falcon";
if (UserSetting.isPackageInstalled(ActDownload.this, packageName))
startActivity(getPackageManager().getLaunchIntentForPackage(packageName));
else Toast.makeText(ActDownload.this, "App not installed", Toast.LENGTH_SHORT).show();