ghevge commented on issue #1732: URL: https://github.com/apache/cordova-android/issues/1732#issuecomment-2286350463
@breautek ``` cordova platform ls Installed platforms: android 12.0.0 Available platforms: browser electron ``` and my config file: ``` <?xml version='1.0' encoding='utf-8'?> <widget id="com.myapp" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:android="http://schemas.android.com/apk/res/android"> <name>myapp</name> <description>myapp</description> <author email="ad...@myapp.com" href="https://www.myapp.com"> myapp </author> <content src="index.html" /> <access origin="*" /> <allow-intent href="*" /> <allow-navigation href="*" /> <preference name="scheme" value="https" /> <preference name="hostname" value="www.myapp.com"/> <preference name="Debug" value="false" /> <preference name="EnableMultiProcess" value="true" /> <preference name="InspectableWebview" value="false" /> <icon src="./www/p/img/logoCirclet.png" /> <platform name="android"> <preference name="Debug" value="false" /> <preference name="EnableMultiProcess" value="true" /> <preference name="android-minSdkVersion" value="21" /> <preference name="android-targetSdkVersion" value="33" /> <preference name="android-compileSdkVersion" value="33" /> <preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/drawable/logoCirclet.png" /> <config-file target="AndroidManifest.xml" parent="/manifest"> <uses-permission android:name="android.permission.CAMERA"/> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.INTERNET"/> </config-file> <edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application"> <application android:usesCleartextTraffic="true" /> </edit-config> </platform> <!--<icon src="./www/p/img/oaklogb.png" platform="ios" width="57" height="57" density="mdpi" />--> <!-- <platform name="android"> <icon src="./www/p/img/oaklogldpi.png" density="ldpi" /> <icon src="./www/p/img/oaklogmdpi.png" density="mdpi" /> <icon src="./www/p/img/oakloghdpi.png" density="hdpi" /> <icon src="./www/p/img/oaklogxhdpi.png" density="xhdpi" /> <icon src="./www/p/img/oaklogxxhdpi.png" density="xxhdpi" /> <icon src="./www/p/img/oaklogxxxhdpi.png" density="xxxhdpi" /> </platform>--> </widget> ``` -- 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: issues-unsubscr...@cordova.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org