Hi guys,
I have android app (build with B4A 12.20) that runs fine on all other phones except on Samsung A55 (Android 14).
On this phone, app couldn't be installed, the error message is something like Incompatible App.
On others Android 14 phones, app runs fine.
Problem is, don't have that phone, phone is in user.
Here are the manifest file
Conditional symbols (on build configuration) = KVS_ENCRYPTION
Could you give me a hints where might be the problems?
I have android app (build with B4A 12.20) that runs fine on all other phones except on Samsung A55 (Android 14).
On this phone, app couldn't be installed, the error message is something like Incompatible App.
On others Android 14 phones, app runs fine.
Problem is, don't have that phone, phone is in user.
Here are the manifest file
B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="26"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
AddManifestText(<uses-feature android:name="android.hardware.telephony" android:required="false" />)
AddManifestText(<uses-feature android:name="android.hardware.camera" android:required="false" />)
AddManifestText(<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />)
AddManifestText(<uses-feature android:name="android.hardware.camera.flash" android:required="false" />)
AddPermission("android.permission.CAMERA")
AddPermission("android.permission.FLASHLIGHT")
AddPermission(android.permission.USE_FINGERPRINT)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@style/br")
SetApplicationAttribute(android:usesCleartextTraffic, "true")
AddApplicationText(
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="$PACKAGE$.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
)
CreateResource(xml, provider_paths,
<files-path name="name" path="shared" />
)
AddPermission(android.permission.REQUEST_INSTALL_PACKAGES)
AddPermission(android.permission.WRITE_EXTERNAL_STORAGE)
Conditional symbols (on build configuration) = KVS_ENCRYPTION
Could you give me a hints where might be the problems?
Last edited: