android – 如何检查安装是否来自三星应用商店

前端之家收集整理的这篇文章主要介绍了android – 如何检查安装是否来自三星应用商店前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我知道怎么检查:

 packageManager.getInstallerPackageName(pContext.getPackageName())

我从其他StackOverflow答案和我在野外的应用程序中了解到:

Google Play返回:com.android.vending

亚马逊回归:com.amazon.venezia

如果我使用adb安装,我会从getInstallerPackageName()返回null值.任何人都知道如何测试安装是否来自三星App Store?

最佳答案
根据Samsung forum thread getInstallerPackageName将返回null:

Actually,the value
is not being set (the method returns null) when you download an
application from SamsungApps. This method is an unreliable source of
information in this case.

Regards,Artur
Stepniewski Samsung Developers

这也是我使用小型测试应用程序的原因.

原文链接:https://www.f2er.com/android/430948.html

猜你在找的Android相关文章