Hello everyone, I solved a problem running the MSSQL library on B4A 13. I updated B4A precisely because my App was no longer being installed on Android 14. I updated B4A to version 13, I changed the manifest to:
=====================================================
AddManifestText(
"uses-sdk android:minSdkVersion="23" android:targetSdkVersion="34"/"
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.
AddPermission("android.permission.INTERNET")
(((Note: I also tried with android:targetSdkVersion="33" in the manifest)))
=====================================================
Even so, the Apk that I generate does not install on Android 14, it says in the attached image that it is (VSoftP Mobile 2.23, As the app is not compatible with your smartphone, it was not installed)
What can I do to resolve this issue so that my app can be installed and run on Android 14?
=====================================================
AddManifestText(
"uses-sdk android:minSdkVersion="23" android:targetSdkVersion="34"/"
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.
AddPermission("android.permission.INTERNET")
(((Note: I also tried with android:targetSdkVersion="33" in the manifest)))
=====================================================
Even so, the Apk that I generate does not install on Android 14, it says in the attached image that it is (VSoftP Mobile 2.23, As the app is not compatible with your smartphone, it was not installed)
What can I do to resolve this issue so that my app can be installed and run on Android 14?