Skip to content

Commit

Permalink
Fix Config
Browse files Browse the repository at this point in the history
  • Loading branch information
floki1250 committed Oct 7, 2024
1 parent 9cb3f66 commit d4a474c
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions mobile/config.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.magic.magicping" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="com.magic.magicping"
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>MagicPing</name>
<description>Files Shares</description>
<author email="adam.dardour@outlook.com" href="https://adamdar.vercel.app">
ADAM DARDOUR
</author>
<content src="index.html" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />

<!-- Permissions and Features for Android -->
<platform name="android">
<uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-feature android:name="android.hardware.nfc" android:required="true" />
</platform>
<uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-feature android:name="android.hardware.nfc" android:required="true" />
</platform>
</widget>

0 comments on commit d4a474c

Please sign in to comment.