aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2016-07-30 09:11:51 +0200
committerChristian Schneppe <christian@pix-art.de>2016-07-30 09:11:51 +0200
commit0ca8a6b52672c4ab98324a6ca299b54843aa07d4 (patch)
treef80e75298b3fcc094e3b6b7cd0caeaedaf38fb34 /src/main/AndroidManifest.xml
parentb5fe6050795da03e2e3020d7480c42e54cef46ab (diff)
changed last wrong package ids
Diffstat (limited to 'src/main/AndroidManifest.xml')
-rw-r--r--src/main/AndroidManifest.xml14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
index e70b8cfae..44742fa38 100644
--- a/src/main/AndroidManifest.xml
+++ b/src/main/AndroidManifest.xml
@@ -205,11 +205,21 @@
<activity
android:name="de.pixart.messenger.ui.ShareLocationActivity"
- android:label="@string/share_location" />
+ android:label="@string/share_location" >
+ <intent-filter>
+ <action android:name="de.pixart.messenger.location.request" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
<activity
android:name="de.pixart.messenger.ui.ShowLocationActivity"
- android:label="@string/show_location" />
+ android:label="@string/show_location" >
+ <intent-filter>
+ <action android:name="de.pixart.messenger.location.show" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
<activity
android:name="de.pixart.messenger.ui.ShowFullscreenMessageActivity"