aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/main/AndroidManifest.xml')
-rw-r--r--ui/src/main/AndroidManifest.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/ui/src/main/AndroidManifest.xml b/ui/src/main/AndroidManifest.xml
index 11c1102b..74bc7a20 100644
--- a/ui/src/main/AndroidManifest.xml
+++ b/ui/src/main/AndroidManifest.xml
@@ -31,6 +31,7 @@
android:banner="@mipmap/banner">
<activity android:name=".activity.TunnelToggleActivity" android:theme="@style/NoBackgroundTheme"/>
+
<activity android:name=".activity.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -58,6 +59,19 @@
android:screenOrientation="fullSensor"
tools:replace="screenOrientation" />
+ <activity android:name=".activity.LogViewerActivity"
+ android:label="@string/log_viewer_title">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN"/>
+ </intent-filter>
+ </activity>
+
+ <provider
+ android:name=".activity.LogViewerActivity$ExportedLogContentProvider"
+ android:authorities="${applicationId}.exported-log"
+ android:exported="false"
+ android:grantUriPermissions="true" />
+
<receiver android:name=".BootShutdownReceiver">
<intent-filter>
<action android:name="android.intent.action.ACTION_SHUTDOWN" />