I was developing an Android App with the Android SDK and all works fine until I updated my phone to Android 11. From then the App doesn't recognize Garmin Connect application and always display the download page.
Any suggestion on how to fix this ?
I was developing an Android App with the Android SDK and all works fine until I updated my phone to Android 11. From then the App doesn't recognize Garmin Connect application and always display the download page.
Any suggestion on how to fix this ?
I have same issue on my devices. On Samsung S9 running android 10 it works fine. On Samsung S10e running android 11 it is showing dialog to navigate to play store. Probably because of https://developer…
Adding the following to AndroidManifest.xml is sufficient:
<queries>
<package android:name="com.garmin.android.apps.connectmobile"/>
</queries>
The policy of Google Play is…
I have same issue on my devices. On Samsung S9 running android 10 it works fine. On Samsung S10e running android 11 it is showing dialog to navigate to play store. Probably because of https://developer.android.com/about/versions/11/privacy
Adding permission to query all apps helps. For now i don't have better solution.
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
With above line it works on android 11
Adding the following to AndroidManifest.xml is sufficient:
<queries>
<package android:name="com.garmin.android.apps.connectmobile"/>
</queries>
The policy of Google Play is that the use of android.permission.QUERY_ALL_PACKAGES is "... only permitted when your app's core user-facing functionality or purpose requires broad visibility into installed apps on the user’s device. "