I have a game(apk) that hides with Unity
I want to open the game through an Android application
The problem is that when I check out this installer says it is not installed...
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();