I am using B4A ver 11.80
Smartphone with Android 11
B4A-Bridge 2.65
When I try to transfer, after compilation, the code on the phone, the installation request is presented, which I confirm
After a few seconds an "App not Installed" appears.
I state that:
- several apps have already been installed on this phone
- there are no problems of lack of memory on which to install the app
- on a Samsung always with Android 11 the same app is installed and started correctly running
- no information useful to understand the problem appears on the log window of the B4A ide
The question is: how to understand why the app is not installed?
Smartphone with Android 11
B4A-Bridge 2.65
When I try to transfer, after compilation, the code on the phone, the installation request is presented, which I confirm
After a few seconds an "App not Installed" appears.
I state that:
- several apps have already been installed on this phone
- there are no problems of lack of memory on which to install the app
- on a Samsung always with Android 11 the same app is installed and started correctly running
- no information useful to understand the problem appears on the log window of the B4A ide
The question is: how to understand why the app is not installed?
File Manifest:
AddManifestText(
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="30"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
CreateResourceFromFile(Macro, Themes.LightTheme)
'End of default text.
CreateResourceFromFile(Macro, FirebaseAnalytics.GooglePlayBase)
AddApplicationText(
<uses-library
android:name="org.apache.http.legacy"
android:required="false" />
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="api_google_key"/>
)
AddPermission("android.permission.FOREGROUND_SERVICE")
AddPermission("android.permission.ACCESS_FINE_LOCATION")
AddPermission("android.permission.ACCESS_COARSE_LOCATION")
SetServiceAttribute(Tracker, android:foregroundServiceType, "location")