有没有办法从应用程序启动Crashlytics/Fabric Beta应用程序?打开它来安装特定的应用程序和特定的版本是非常理想的。

最佳答案

启动Crashlytics/Fabric测试版应用程序的目的是什么?
您可以使用:

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.crash.air");

if (launchIntent != null)
   startActivity(launchIntent);
else
   // beta app not found do nothing or something else

编辑:
有没有办法从
申请?打开它安装一个
应用程序和特定版本。
我已经知道如何打开特定的应用程序。万岁!
只要用“pkgnme”键添加一个额外的字符串
launchIntent.putExtra("pkgnme", "com.awesomeapp.com")
完整代码:
Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.crash.air");
launchIntent.putExtra("pkgnme", "com.awesomeapp.com")

if (launchIntent != null)
   startActivity(launchIntent);
else
   // beta app not found do nothing or something else

关于:
以及一个特定的版本。
我还没搞清楚。

10-06 11:27