summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/android/AndroidManifest.xml
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-09-26 00:21:27 +0200
committerJules Laplace <julescarbon@gmail.com>2017-09-26 00:21:27 +0200
commit73cbc66bb96b348ec791e6854d6c24e6d85b2fa8 (patch)
treed06eddeec93e692fde63cde5b21a20ff623f1386 /StoneIsland/platforms/android/AndroidManifest.xml
parent3be2b3aea204f145d6e7c98d835891947105ed0e (diff)
cordova-plugin-firebase
Diffstat (limited to 'StoneIsland/platforms/android/AndroidManifest.xml')
-rwxr-xr-xStoneIsland/platforms/android/AndroidManifest.xml18
1 files changed, 9 insertions, 9 deletions
diff --git a/StoneIsland/platforms/android/AndroidManifest.xml b/StoneIsland/platforms/android/AndroidManifest.xml
index 25ce62dd..dbd8afc1 100755
--- a/StoneIsland/platforms/android/AndroidManifest.xml
+++ b/StoneIsland/platforms/android/AndroidManifest.xml
@@ -1,7 +1,6 @@
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="6000" android:versionName="0.8.4" package="us.okfoc.stoneisland" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
- <uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:supportsRtl="true">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:screenOrientation="portrait" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustResize">
@@ -41,18 +40,18 @@
</intent-filter>
</service>
<service android:exported="false" android:name="com.adobe.phonegap.push.RegistrationIntentService" />
- <receiver android:enabled="true" android:name="com.google.android.gms.analytics.AnalyticsReceiver">
+ <service android:enabled="true" android:exported="false" android:name="com.google.android.gms.measurement.AppMeasurementService" />
+ <service android:name="org.apache.cordova.firebase.FirebasePluginMessagingService">
<intent-filter>
- <action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH" />
+ <action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
- </receiver>
- <service android:enabled="true" android:exported="false" android:name="com.google.android.gms.analytics.AnalyticsService" />
- <receiver android:enabled="true" android:exported="true" android:name="com.google.android.gms.analytics.CampaignTrackingReceiver">
+ </service>
+ <service android:name="org.apache.cordova.firebase.FirebasePluginInstanceIDService">
<intent-filter>
- <action android:name="com.android.vending.INSTALL_REFERRER" />
+ <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
- </receiver>
- <service android:enabled="true" android:exported="false" android:name="com.google.android.gms.analytics.CampaignTrackingService" />
+ </service>
+ <receiver android:name="org.apache.cordova.firebase.OnNotificationOpenReceiver" />
</application>
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="22" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
@@ -67,4 +66,5 @@
<uses-permission android:name="${applicationId}.permission.PushHandlerActivity" />
<permission android:name="${applicationId}.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<permission android:name="${applicationId}.permission.PushHandlerActivity" android:protectionLevel="signature" />
+ <uses-permission android:name="android.permission.INTERNET" />
</manifest>