|
|
|
@ -1,33 +1,26 @@
|
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<application android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/Theme.deep_link_example" android:usesCleartextTraffic="${usesCleartextTraffic}">
|
|
|
|
|
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" android:launchMode="singleTask" android:label="@string/main_activity_title" android:name=".MainActivity" android:exported="true">
|
|
|
|
|
<application
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:theme="@style/Theme.deep_link_example"
|
|
|
|
|
android:usesCleartextTraffic="${usesCleartextTraffic}">
|
|
|
|
|
<activity
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:label="@string/main_activity_title"
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:exported="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<!-- <intent-filter android:autoVerify="true">
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
|
<data android:scheme="https" />
|
|
|
|
|
|
|
|
|
|
<!- - Each host needs a new intent-filter - ->
|
|
|
|
|
<data android:host="fabianlars.de" />
|
|
|
|
|
|
|
|
|
|
<!- - This should also be configurable otherwise the app will trigger on all paths - ->
|
|
|
|
|
<data android:pathPrefix="/intent" />
|
|
|
|
|
</intent-filter> -->
|
|
|
|
|
<!-- DEEP LINK PLUGIN. AUTO-GENERATED. DO NOT REMOVE. -->
|
|
|
|
|
<intent-filter android:autoVerify="true">
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
|
<data android:scheme="https" />
|
|
|
|
|
<data android:host="fabianlars.de" />
|
|
|
|
|
<data android:pathPrefix="/intent" />
|
|
|
|
|
</intent-filter>
|
|
|
|
@ -35,15 +28,20 @@
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
|
<data android:scheme="https" />
|
|
|
|
|
<data android:host="tauri.app" />
|
|
|
|
|
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<!-- DEEP LINK PLUGIN. AUTO-GENERATED. DO NOT REMOVE. -->
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<provider android:name="androidx.core.content.FileProvider" android:authorities="${applicationId}.fileprovider" android:exported="false" android:grantUriPermissions="true">
|
|
|
|
|
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
|
|
|
|
|
<provider
|
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/file_paths" />
|
|
|
|
|
</provider>
|
|
|
|
|
</application>
|
|
|
|
|
</manifest>
|
|
|
|
|