I have an app installed on an Android 9 device. The APK was sideloaded\installed from a Unity Build Automation link.
Under these conditions, I would have expected Application.installMode to return Adhoc or at the very least DeveloperBuild (although it’s not an actual debug\development build)
But it’s actually returning Store which seems wrong to me…
So couldn’t\shouldn’t installMode be AdHoc (when installerName == “com.google.android.packageinstaller”) and Store (when installerName == “com.android.vending”)
I can always use that approach in code, but it seems better having installMode return a more representative value.