2017-08-03 18:23:43 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-11-06 23:45:48 +00:00
|
|
|
package="chat.rocket.reactnative"
|
2017-08-03 18:23:43 +00:00
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
2017-08-11 20:54:35 +00:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2018-03-07 00:17:20 +00:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2018-04-27 04:09:16 +00:00
|
|
|
<!-- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> -->
|
2017-11-18 20:17:24 +00:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2018-01-23 12:23:45 +00:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
2017-12-08 19:36:03 +00:00
|
|
|
|
2017-11-18 20:17:24 +00:00
|
|
|
<permission
|
|
|
|
android:name="${applicationId}.permission.C2D_MESSAGE"
|
|
|
|
android:protectionLevel="signature" />
|
|
|
|
<uses-permission android:name="${applicationId}.permission.C2D_MESSAGE" />
|
|
|
|
|
2017-08-03 18:23:43 +00:00
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="16"
|
|
|
|
android:targetSdkVersion="22" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".MainApplication"
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
2018-04-24 19:34:03 +00:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:resizeableActivity="true"
|
|
|
|
android:largeHeap="true">
|
2017-08-03 18:23:43 +00:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
2018-05-07 20:43:26 +00:00
|
|
|
android:launchMode="singleTop"
|
2017-08-03 18:23:43 +00:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2018-05-07 20:43:26 +00:00
|
|
|
<intent-filter android:label="RocketChatRN">
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="https" android:host="go.rocket.chat" />
|
2018-05-18 17:55:08 +00:00
|
|
|
<data android:scheme="rocketchat" android:host="room" />
|
|
|
|
<data android:scheme="rocketchat" android:host="auth" />
|
2018-05-07 20:43:26 +00:00
|
|
|
</intent-filter>
|
2017-08-03 18:23:43 +00:00
|
|
|
</activity>
|
|
|
|
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
|
2017-11-18 20:17:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<receiver android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationPublisher" />
|
|
|
|
<service android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationRegistrationService"/>
|
|
|
|
<service
|
|
|
|
android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationListenerService"
|
|
|
|
android:exported="false" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2017-08-03 18:23:43 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|