Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2016-06-03 16:52:41 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-06-23 19:23:29 +0300
commite8179248f34c16205af996e8aaab282abe9e4bc2 (patch)
treeccb7f221b21cc3b82710f3cf6894ff0f7077085b /android/AndroidManifest.xml
parent6b3296c6f795a2acab808867c8fea7a13379169f (diff)
Added PushWoosh
Diffstat (limited to 'android/AndroidManifest.xml')
-rw-r--r--android/AndroidManifest.xml50
1 files changed, 50 insertions, 0 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index 845c6499ea..e4f5359f39 100644
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -69,6 +69,18 @@
android:name="io.fabric.ApiKey"
android:value="${FABRIC_API_KEY}"/>
+ <meta-data
+ android:name="PW_APPID"
+ android:value="${PW_APPID}" />
+
+ <meta-data
+ android:name="PW_PROJECT_ID"
+ android:value="${PW_PROJECT_ID}" />
+
+ <!--meta-data
+ android:name="PW_LOG_LEVEL"
+ android:value="ERROR" /-->
+
<activity
android:name="com.mapswithme.maps.DownloadResourcesActivity"
android:configChanges="orientation|screenLayout|screenSize"
@@ -333,6 +345,44 @@
</intent-filter>
</receiver>
+ <!-- PushWoosh -->
+ <activity android:name="com.pushwoosh.richpages.RichPageActivity" />
+ <activity android:name="com.pushwoosh.MessageActivity" />
+ <activity android:name="com.pushwoosh.PushHandlerActivity" />
+
+ <receiver
+ android:name="com.google.android.gms.gcm.GcmReceiver"
+ android:exported="true"
+ android:permission="com.google.android.c2dm.permission.SEND" >
+ <intent-filter>
+ <action android:name="com.google.android.c2dm.intent.RECEIVE" />
+ <category android:name="${applicationId}" />
+ </intent-filter>
+ </receiver>
+
+ <service
+ android:name="com.pushwoosh.GCMListenerService"
+ android:exported="false">
+ <intent-filter>
+ <action android:name="com.google.android.c2dm.intent.RECEIVE"/>
+ </intent-filter>
+ </service>
+
+ <service
+ android:name="com.pushwoosh.GCMInstanceIDListenerService"
+ android:exported="false">
+ <intent-filter>
+ <action android:name="com.google.android.gms.iid.InstanceID"/>
+ </intent-filter>
+ </service>
+
+ <service
+ android:name="com.pushwoosh.GCMRegistrationService"
+ android:exported="false" />
+
+ <service
+ android:name="com.pushwoosh.location.GeoLocationService" />
+
<!-- Catches app upgraded intent -->
<receiver android:name=".background.UpgradeReceiver">
<intent-filter>