aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorpacien2017-08-18 10:27:25 +0200
committerpacien2017-08-18 10:27:25 +0200
commitac289a9e48e08c8cea7e301eb5f70b6aa025a1d6 (patch)
tree7383c704023ed70c3a6de2383edb69a06043397a /app/src/main/AndroidManifest.xml
parent451869d60f1158a6fe54af7b59f72554908915ea (diff)
downloadtincapp-ac289a9e48e08c8cea7e301eb5f70b6aa025a1d6.tar.gz
Expose CONNECT and DISCONNECT intents
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 89e618c..5611e4c 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -39,6 +39,15 @@
39 <activity 39 <activity
40 android:name=".activities.PromptActivity" 40 android:name=".activities.PromptActivity"
41 android:theme="@android:style/Theme.Translucent.NoTitleBar"> 41 android:theme="@android:style/Theme.Translucent.NoTitleBar">
42 <intent-filter>
43 <action android:name="org.pacien.tincapp.intent.action.CONNECT"/>
44 <data android:scheme="tinc"/>
45 <category android:name="android.intent.category.DEFAULT"/>
46 </intent-filter>
47 <intent-filter>
48 <action android:name="org.pacien.tincapp.intent.action.DISCONNECT"/>
49 <category android:name="android.intent.category.DEFAULT"/>
50 </intent-filter>
42 </activity> 51 </activity>
43 52
44 <service 53 <service