gpt4 book ai didi

android - 启动 Crashlytics/Fabric Beta 应用程序的 Intent 是什么?

转载 作者:太空狗 更新时间:2023-10-29 14:40:03 26 4
gpt4 key购买 nike

有什么方法可以从应用程序启动 Crashlytics/Fabric Beta 应用程序?非常希望打开它来安装特定的应用程序和特定的版本。

最佳答案

What Intent to start the Crashlytics/Fabric Beta app?

你可以使用这个:

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

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

编辑:

Is there any way to start the Crashlytics/Fabric Beta app from the application? It is very desirable to open it to install a specific application, and a specific version.

我已经弄清楚如何打开特定的应用程序。万岁!

只需使用键“pkgnme”向您的 Intent 添加一个额外的字符串

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

关于:

and a specific version.

我还没想好

关于android - 启动 Crashlytics/Fabric Beta 应用程序的 Intent 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49707675/

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