2017-08-03 18:23:43 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-05-22 20:15:35 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-08-01 19:35:06 +00:00
|
|
|
package="chat.rocket.reactnative">
|
2018-07-10 13:40:32 +00:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2019-09-03 19:27:57 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2018-07-10 13:40:32 +00:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2019-07-29 20:44:39 +00:00
|
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
|
2018-07-10 13:40:32 +00:00
|
|
|
<uses-permission-sdk-23 android:name="android.permission.VIBRATE"/>
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".MainApplication"
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:theme="@style/AppTheme"
|
2019-05-22 20:15:35 +00:00
|
|
|
>
|
2018-07-10 13:40:32 +00:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
2018-11-22 11:04:14 +00:00
|
|
|
android:launchMode="singleTask"
|
2018-07-10 13:40:32 +00:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2019-07-29 20:44:39 +00:00
|
|
|
<action android:name="android.intent.action.DOWNLOAD_COMPLETE"/>
|
2018-07-10 13:40:32 +00:00
|
|
|
</intent-filter>
|
2018-10-16 20:30:34 +00:00
|
|
|
<intent-filter android:label="@string/app_name">
|
2018-07-10 13:40:32 +00:00
|
|
|
<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" />
|
|
|
|
<data android:scheme="rocketchat" android:host="room" />
|
|
|
|
<data android:scheme="rocketchat" android:host="auth" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
|
2019-07-29 20:44:39 +00:00
|
|
|
<activity
|
|
|
|
android:noHistory="true"
|
|
|
|
android:name=".share.ShareActivity"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/share_extension_name"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:theme="@style/AppTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-09-03 19:27:57 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="com.bugsnag.android.API_KEY"
|
|
|
|
android:value="${BugsnagAPIKey}" />
|
2018-07-10 13:40:32 +00:00
|
|
|
</application>
|
2017-08-03 18:23:43 +00:00
|
|
|
|
|
|
|
</manifest>
|