Android Question App not compatible on Samsung A55 Android 14

Cassie

Member
Licensed User
Longtime User
Hi any idea when installing compile apk on Android 14 Samsung A55 it says app is not compatible.
 

DonManfred

Expert
Licensed User
Longtime User
My Car does not work. WHY?

As noone can answer such question without me giving more details about the problem noone can answer your question without you giving us more details on the problem too.
 
Upvote 0

Cassie

Member
Licensed User
Longtime User
My Car does not work. WHY?

As noone can answer such question without me giving more details about the problem noone can answer your question without you giving us more details on the problem too.
Hi don, this app is working in all models and we are using it but in new samsung A55 is not compatible.
 
Upvote 0

virpalacios

Active Member
Licensed User
Longtime User
Hi, Please Post a Manifest, there are some issues for android 14. I already bought an A55 for testing. In order for runnning in Android 14, you need to implement several issues like storage permission, runtime permission and API Level. Please share manifest so i can check with mine.

Best Regard,

Virgilio
 
Upvote 0

Cassie

Member
Licensed User
Longtime User
Hi, Please Post a Manifest, there are some issues for android 14. I already bought an A55 for testing. In order for runnning in Android 14, you need to implement several issues like storage permission, runtime permission and API Level. Please share manifest so i can check with mine.

Best Regard,

Virgilio
thanks, i post it here.
 
Upvote 0

Cassie

Member
Licensed User
Longtime User
Here is the manifest.

Manifest:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="33"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo.Light")
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" />)
' Android 31 Up
AddManifestText(<uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE"/> )
AddManifestText(<uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/> )
AddManifestText(<uses-permission android:name="android.permission.BLUETOOTH_SCAN"/> )
'End of default text.
AddPermission(android.permission.READ_PHONE_STATE)
AddPermission(android.permission.CAMERA)
AddPermission(android.permission.SEND_SMS)
AddPermission(android.permission.INTERNET)
AddPermission(android.permission.USE_BIOMETRIC)
AddPermission(android.permission.USE_FINGERPRINT)                             
AddPermission(android.permission.ACCESS_NETWORK_STATE)                      ' Allows applications to access information about networks.

AddPermission(android.permission.RECEIVE_SMS)
AddReceiverText(Starter,
<intent-filter>
    <action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>)
'SetActivityAttribute(main,android:theme, @android:style/Theme.Holo.Light)
'******************************************

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="AIzaSyCDRdAsvOXNA-0VGODcNceSm88z2E766nA"/>
)


SetApplicationAttribute(android:theme, "@style/MyAppTheme")
CreateResource(values, theme.xml,
<resources>
    <style name="MyAppTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
        <item name="colorPrimary">#FF2196F3</item>
        <item name="colorPrimaryDark">#007CF5</item>
        <item name="colorAccent">#FFFF3D00</item>
        <item name="windowNoTitle">true</item>
        <item name="windowActionBar">false</item>
        <item name="windowActionModeOverlay">true</item>
    </style>
</resources>
)

AddManifestText(<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
)

' Allow non-HTTP call
CreateResourceFromFile(Macro, Core.NetworkClearText)

' BARCODE?QR READER
AddApplicationText(<meta-data
    android:name="com.google.android.gms.vision.DEPENDENCIES"
    android:value="barcode,,face" />
)
CreateResourceFromFile(Macro, FirebaseAnalytics.GooglePlayBase)
 
Upvote 0
Top