German android:targetSdkVersion="30"

peternmb

Well-Known Member
Licensed User
Longtime User
Hallo,

wenn ich in einem kleinen Projekt die targetSdkVersion von 29 auf 30 ändere (wie es im PlayStore ab November Pflicht ist), dann wird die App auf meinen Geräten nicht mehr installiert.
Woran könnte das liegen?

B4X:
'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
'SdkVersion="14" = Android 4.0
'SdkVersion="28" = Android 9.0
'SdkVersion="30" = Android 11.0
AddManifestText(
<uses-sdk android:minSdkVersion="14" />
<uses-sdk android:targetSdkVersion="29" />
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
'End of default text.
SetActivityAttribute(Main, android:hardwareAccelerated, "true")
SetApplicationAttribute(android:theme, "@android:style/Theme.Black")
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
AddPermission(android.permission.WRITE_EXTERNAL_STORAGE)
 
Top