
A net::ERR_CLEARTEXT_NOT_PERMITTED occured when using the app on android phone, we have to force the android to allow the communication to fix the problem. More info : https://stackoverflow.com/a/54752717/10736081 Also fixed a problem with the images path when running the app on mobile.
28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<widget id="net.dariogenga.fecharts" 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>FE_Charts</name>
|
|
<description>
|
|
Fire Emblem Charts is a mobile application that allows you to view the statistics of the characters in the game Fire Emblem Three Houses in the form of graphics.
|
|
</description>
|
|
<author email="dev@cordova.apache.org" href="http://cordova.io">
|
|
Apache Cordova Team
|
|
</author>
|
|
<content src="index.html" />
|
|
<plugin name="cordova-plugin-whitelist" spec="1" />
|
|
<access origin="*" />
|
|
<allow-intent href="http://*/*" />
|
|
<allow-intent href="https://*/*" />
|
|
<allow-intent href="tel:*" />
|
|
<allow-intent href="sms:*" />
|
|
<allow-intent href="mailto:*" />
|
|
<allow-intent href="geo:*" />
|
|
<platform name="android">
|
|
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
|
|
<application android:usesCleartextTraffic="true" />
|
|
</edit-config>
|
|
</platform>
|
|
<platform name="ios">
|
|
<allow-intent href="itms:*" />
|
|
<allow-intent href="itms-apps:*" />
|
|
</platform>
|
|
</widget> |