Android Question App compiled on B4A 13 does not install on Android 14

Andre Pagliuso

Member
Licensed User
Longtime User
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?
 

Attachments

  • WhatsApp Image 2024-09-11 at 21.30.44.jpeg
    WhatsApp Image 2024-09-11 at 21.30.44.jpeg
    45.1 KB · Views: 43

JohnC

Expert
Licensed User
Longtime User
If a previous version of the app is already installed on your device, try uninstalling it, then try to re-install the new B4A v13 version.
 
Upvote 0

Andre Pagliuso

Member
Licensed User
Longtime User
Probably related to the MSSQL library. Create a new empty project with the same package name and run it. Are you able to install it?
It worked out! The one-button project installed and opened on Android 14. The problem really is the MSSQL library. In this case, which library do you recommend? My App makes a direct connection via Wi-Fi to SQL Server 2008 r2 installed on a local computer.
 
Upvote 0
Top