Hi all,
I'm testing a small app with multiple devices and I get the following warning when launching the app on a Galaxy S10 with Android 10: "This app was built for an older version of android and may not work correctly. Try to check the availability of updates or contact the developer". (note: this translation is mine from the native OS language).
The app works as expected, but I would like to remove this warning before posting it to the PlayStore.
My application is rather simple, just sending a receiving messages via UDP. using android.permission.INTERNET due to UDPSocket.
Compiled with B4A 10.2 / Android SDK 30 / Java 8_172 64 bit
Libraries: Core 9.90 + Network 1.52
Here's the manifest I'm using:
Anything odd I'm missing or ignoring?
Thanks
Andrea
I'm testing a small app with multiple devices and I get the following warning when launching the app on a Galaxy S10 with Android 10: "This app was built for an older version of android and may not work correctly. Try to check the availability of updates or contact the developer". (note: this translation is mine from the native OS language).
The app works as expected, but I would like to remove this warning before posting it to the PlayStore.
My application is rather simple, just sending a receiving messages via UDP. using android.permission.INTERNET due to UDPSocket.
Compiled with B4A 10.2 / Android SDK 30 / Java 8_172 64 bit
Libraries: Core 9.90 + Network 1.52
Here's the manifest I'm using:
Manifest:
AddManifestText(
<uses-sdk android:minSdkVersion="14" />
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"
android:targetSdkVersion="29"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
Anything odd I'm missing or ignoring?
Thanks
Andrea