amethyst/app/src/main/AndroidManifest.xml

76 wiersze
3.2 KiB
XML
Czysty Zwykły widok Historia

2023-01-11 18:31:20 +00:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-feature android:name="android.hardware.camera" android:required="false" />
2023-01-11 18:31:20 +00:00
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.CAMERA" />
2023-05-02 21:59:12 +00:00
<uses-permission android:name="android.permission.NFC" />
<!-- Used for SDK < 29 -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:ignore="ScopedStorage" />
2023-01-11 18:31:20 +00:00
<application
android:allowBackup="false"
android:name=".Amethyst"
2023-01-11 18:31:20 +00:00
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
2023-01-11 18:31:20 +00:00
android:label="@string/app_name"
android:enableOnBackInvokedCallback="true"
android:supportsRtl="true"
android:theme="@style/Theme.Amethyst"
android:largeHeap="true"
2023-02-02 19:30:58 +00:00
android:usesCleartextTraffic="true"
2023-03-10 14:06:15 +00:00
android:hardwareAccelerated="true"
2023-02-04 20:10:16 +00:00
tools:targetApi="33">
2023-01-11 18:31:20 +00:00
<activity
android:name=".ui.MainActivity"
android:exported="true"
2023-01-30 03:23:22 +00:00
android:windowSoftInputMode="adjustResize"
2023-01-11 18:31:20 +00:00
android:theme="@style/Theme.Amethyst">
<intent-filter android:label="Amethyst">
2023-01-11 18:31:20 +00:00
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter android:label="Amethyst">
2023-01-25 00:53:22 +00:00
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="nostr" />
</intent-filter>
2023-05-02 21:59:12 +00:00
<intent-filter android:label="Amethyst">
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="nostr" />
</intent-filter>
<intent-filter android:label="Amethyst">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="nostrwalletconnect" />
<data android:scheme="nostr+walletconnect" />
</intent-filter>
2023-01-11 18:31:20 +00:00
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
2023-03-10 14:06:15 +00:00
<activity
android:name="com.journeyapps.barcodescanner.CaptureActivity"
android:screenOrientation="fullSensor"
tools:replace="screenOrientation" />
2023-01-11 18:31:20 +00:00
</application>
</manifest>