warum meckert der Playstore denn jetzt noch meine App an und nimmt diese nicht???
In meiner Manifestdatei sehe ich Nichts doppeltes:
Hochladen fehlgeschlagen
Doppelte Deklarationen der Berechtigung android.permission.WRITE_EXTERNAL_STORAGE mit unterschiedlichen maxSdkVersion-Parametern vorhanden
In meiner Manifestdatei sehe ich Nichts doppeltes:
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
AddManifestText(
<uses-sdk android:minSdkVersion="14"
android:targetSdkVersion="28"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="false"
android:anyDensity="true"/>
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="19" />)
SetApplicationAttribute(android:theme, "@android:style/Theme.Black")
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
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)