Current section
Files
Jump to
Current section
Files
priv/templates/crosswake/shell/android/app/src/main/AndroidManifest.xml.eex
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<!-- For adding capabilities, see: https://docs.crosswake.dev/capabilities -->
<application
android:allowBackup="false"
android:label="Crosswake Shell"
android:theme="@style/Theme.CrosswakeShell"
android:usesCleartextTraffic="false">
<activity
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:host="example.crosswake.invalid"
android:pathPrefix="/"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>