aaarichter commented on issue #1603:
URL:
https://github.com/apache/cordova-android/issues/1603#issuecomment-1516776699
@breautek
```xml
<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="${ANDROID_VERSION_CODE}" id="de.raps.myrazept"
ios-CFBundleVersion="${IOS_BUNDLE_VERSION}" version="1.0.2"
xmlns="http://www.w3.org/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>myRAzept</name>
<author email="[email protected]" href="https://www.raps.de/">
RAPS GmbH & Co. KG
</author>
<content src="index.html" />
<access origin="*" />
<allow-navigation href="https://*.k8s.incloud.de/*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<preference name="DisallowOverscroll" value="true" />
<preference name="BackgroundColor" value="0xffffffff" />
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarBackgroundColor" value="#ffffff" />
<preference name="StatusBarDefaultScrollToTop" value="true" />
<preference name="HeaderColor" value="#ffffff" />
<preference name="ShowSplashScreenSpinner" value="false" />
<icon src="res/icon/ios/Icon-1024.png" />
<platform name="android">
<icon density="mdpi"
src="res/icon/android/mipmap-mdpi/ic_launcher.png" />
<icon density="hdpi"
src="res/icon/android/mipmap-hdpi/ic_launcher.png" />
<icon density="xhdpi"
src="res/icon/android/mipmap-xhdpi/ic_launcher.png" />
<icon density="xxhdpi"
src="res/icon/android/mipmap-xxhdpi/ic_launcher.png" />
<icon density="xxxhdpi"
src="res/icon/android/mipmap-xxxhdpi/ic_launcher.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon"
value="res/screen/android/splash.png" />
<preference name="SplashMaintainAspectRatio" value="true" />
<preference name="StatusBarStyle" value="default" />
<preference name="android-targetSdkVersion" value="28" />
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<icon height="20" src="res/icon/ios/Icon-20.png" width="20" />
<icon height="29" src="res/icon/ios/Icon-29.png" width="29" />
<icon height="40" src="res/icon/ios/Icon-40.png" width="40" />
<icon height="58" src="res/icon/ios/Icon-58.png" width="58" />
<icon height="60" src="res/icon/ios/Icon-60.png" width="60" />
<icon height="76" src="res/icon/ios/Icon-76.png" width="76" />
<icon height="80" src="res/icon/ios/Icon-80.png" width="80" />
<icon height="87" src="res/icon/ios/Icon-87.png" width="87" />
<icon height="120" src="res/icon/ios/Icon-120.png" width="120" />
<icon height="152" src="res/icon/ios/Icon-152.png" width="152" />
<icon height="167" src="res/icon/ios/Icon-167.png" width="167" />
<icon height="180" src="res/icon/ios/Icon-180.png" width="180" />
<icon height="1024" src="res/icon/ios/Icon-1024.png" width="1024" />
<splash src="res/screen/ios/Default@2x~universal~anyany.png" />
<config-file parent="ITSAppUsesNonExemptEncryption"
target="*-Info.plist">
<false />
</config-file>
<config-file mode="replace" parent="CFBundleDevelopmentRegion"
target="*-Info.plist">
<array>
<string>de-DE</string>
</array>
</config-file>
<config-file mode="replace" parent="CFBundleLocalizations"
target="*-Info.plist">
<array>
<string>de</string>
</array>
</config-file>
<preference name="StatusBarStyle" value="default" />
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>
```
I removed the `<plugin>` and `<engine>` settings for testing purpose. With
or without those tags, which were reflecting the versions from the
package.json, the issue occurred.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]