Skip to content

Commit

Permalink
First attempt to fix APK Builder issue 14
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Laské committed Sep 8, 2024
1 parent 58551c1 commit 264ded1
Showing 1 changed file with 26 additions and 29 deletions.
55 changes: 26 additions & 29 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,34 +23,28 @@
<preference name="DisallowOverscroll" value="true"/>

<content src="index.html" />
<plugin name="cordova-plugin-whitelist" version="1" />
<access origin="*" />
<allow-navigation href="*" />

<preference name="android-minSdkVersion" value="22" />
<preference name="android-targetSdkVersion" value="33" />
<preference name="android-compileSdkVersion" value="33" />

<engine name="android" spec="9.0.0" />
<plugin name="cordova-plugin-inappbrowser" spec="5.0.0" />
<plugin name="cordova-plugin-camera" spec="5.0.1" />
<plugin name="cordova-plugin-file" spec="6.0.2" />
<plugin name="cordova-plugin-device" spec="2.0.3" />
<plugin name="cordova-plugin-device-motion" spec="2.0.1" />
<engine name="android" spec="10.0.0" />
<plugin name="cordova-plugin-inappbrowser" spec="6.0.0" />
<plugin name="cordova-plugin-camera" spec="7.0.0" />
<plugin name="cordova-plugin-file" spec="8.1.0" />
<plugin name="cordova-plugin-device" spec="3.0.0" />
<plugin name="cordova-plugin-dialogs" spec="2.0.2" />
<plugin name="cordova-plugin-file-transfer" spec="1.7.1" />
<plugin name="cordova-plugin-file-transfer" spec="2.0.0" />
<plugin name="cordova-plugin-fullscreen" spec="1.3.0" />
<plugin name="cordova-plugin-ios-longpress-fix" spec="1.1.0" />
<plugin name="cordova-plugin-media" spec="5.0.3" />
<plugin name="cordova-plugin-media-capture" spec="3.0.3" />
<plugin name="cordova-plugin-network-information" spec="2.0.2" />
<plugin name="cordova-plugin-qrscanner" spec="3.0.1" />
<plugin name="cordova-plugin-splashscreen" spec="6.0.0" />
<plugin name="cordova-plugin-media" spec="7.0.0" />
<plugin name="cordova-plugin-media-capture" spec="5.0.0" />
<plugin name="cordova-plugin-network-information" spec="3.0.0" />
<plugin name="cordova-plugin-qrscanner" spec="https://github.com/richmoh/cordova-plugin-qrscanner-13.git" />
<plugin name="cordova-plugin-add-swift-support" spec="2.0.2" />
<plugin name="cordova-plugin-vibration" spec="3.1.1" />
<plugin name="cordova-plugin-whitelist" spec="1.3.4" />
<plugin name="com.develcode.plugins.volumeControl" spec="https://github.com/manusimpson/Phonegap-Android-VolumeControl.git" />
<plugin name="cordova-plugin-audioinput" spec="1.0.2" />
<plugin name="cordova-plugin-audioinput" spec="1.0.3" />

<!-- &SugarizerOS
<plugin name="cordova-plugin-sugarizeros" spec="../cordova-plugin-sugarizeros" />
Expand All @@ -60,25 +54,28 @@
<edit-config file="app/src/main/AndroidManifest.xml" target="/manifest/application/activity" mode="merge">
<activity android:exported="true"/>
</edit-config>
<preference name="AndroidInsecureFileModeEnabled" value="true" />
<icon density="ldpi" src="res/icon/android/icon-36-ldpi.png" />
<icon density="mdpi" src="res/icon/android/icon-48-mdpi.png" />
<icon density="hdpi" src="res/icon/android/icon-72-hdpi.png" />
<icon density="xhdpi" src="res/icon/android/icon-96-xhdpi.png" />
<icon density="xxhdpi" src="res/icon/android/icon-144-xxhdpi.png" />
<icon density="xxxhdpi" src="res/icon/android/icon-192-xxxhdpi.png" />
<plugin name="cordova-plugin-ionic-keyboard" spec="2.2.0" />
<splash src="res/splash/android/drawable-land-hdpi.png" density="land-hdpi" />
<splash src="res/splash/android/drawable-land-ldpi.png" density="land-ldpi" />
<splash src="res/splash/android/drawable-land-mdpi.png" density="land-mdpi" />
<splash src="res/splash/android/drawable-land-xhdpi.png" density="land-xhdpi" />
<splash src="res/splash/android/drawable-land-xxhdpi.png" density="land-xxhdpi" />
<splash src="res/splash/android/drawable-land-xxxhdpi.png" density="land-xxxhdpi" />
<splash src="res/splash/android/drawable-port-hdpi.png" density="port-hdpi" />
<splash src="res/splash/android/drawable-port-ldpi.png" density="port-ldpi" />
<splash src="res/splash/android/drawable-port-mdpi.png" density="port-mdpi" />
<splash src="res/splash/android/drawable-port-xhdpi.png" density="port-xhdpi" />
<splash src="res/splash/android/drawable-port-xxhdpi.png" density="port-xxhdpi" />
<splash src="res/splash/android/drawable-port-xxxhdpi.png" density="port-xxxhdpi" />
<preference name="AndroidPersistentFileLocation" value="Compatibility" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-land-hdpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-land-ldpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-land-mdpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-land-xhdpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-land-xxhdpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-land-xxxhdpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-port-hdpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-port-ldpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-port-mdpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-port-xhdpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-port-xxhdpi.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/splash/android/drawable-port-xxxhdpi.png" />
<preference name="AndroidWindowSplashScreenBackgroundColor" value="#000000" />
</platform>
<platform name="ios">
<plugin name="cordova-plugin-wkwebview-file-xhr" spec="https://github.com/llaske/cordova-plugin-wkwebview-file-xhr.git" />
Expand Down

0 comments on commit 264ded1

Please sign in to comment.