Reputation: 1935
I would like to detect the app installation source.
We can use two approaches on Android to detect the installation source: PackageManager#getInstallerPackageName(String)
or PackageManager#getInstallSourceInfo(String)
. Both of those calls will return a package name of the installer application. For example:
com.amazon.venezia
com.android.vending
My question is, what does this method returns for applications installed from Huawei AppGallery?
Upvotes: 6
Views: 1250