Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AloqaIM-Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
AloqaIM-Android
Commits
3c2da86a
Commit
3c2da86a
authored
Dec 08, 2017
by
Leonardo Aramaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor refactoring
parent
ee6f6bd1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
26 deletions
+31
-26
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+31
-26
No files found.
app/src/main/AndroidManifest.xml
View file @
3c2da86a
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"chat.rocket.android"
>
package=
"chat.rocket.android"
>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<uses-permission
android:name=
"android.permission.ACCESS_NETWORK_STATE"
/>
<uses-permission
android:name=
"android.permission.ACCESS_NETWORK_STATE"
/>
<uses-permission
android:name=
"android.permission.READ_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.READ_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.WAKE_LOCK"
/>
<uses-permission
android:name=
"android.permission.RECEIVE_BOOT_COMPLETED"
/>
<uses-permission
android:name=
"android.permission.VIBRATE"
/>
<uses-permission
android:name=
"android.permission.WAKE_LOCK"
/>
<uses-permission
android:name=
"android.permission.VIBRATE"
/>
<permission
<permission
android:name=
"chat.rocket.android.permission.C2D_MESSAGE"
android:name=
"chat.rocket.android.permission.C2D_MESSAGE"
android:protectionLevel=
"signature"
/>
android:protectionLevel=
"signature"
/>
<uses-permission
android:name=
"chat.rocket.android.permission.C2D_MESSAGE"
/>
<uses-permission
android:name=
"chat.rocket.android.permission.C2D_MESSAGE"
/>
<application
<application
android:name=
".RocketChatApplication"
android:name=
".RocketChatApplication"
...
@@ -26,39 +27,40 @@
...
@@ -26,39 +27,40 @@
android:configChanges=
"orientation|screenSize"
android:configChanges=
"orientation|screenSize"
android:windowSoftInputMode=
"adjustResize"
>
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<action
android:name=
"android.intent.action.MAIN"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</intent-filter>
</activity>
</activity>
<activity
<activity
android:name=
".activity.room.RoomActivity"
android:name=
".activity.room.RoomActivity"
android:configChanges=
"orientation|screenSize"
android:configChanges=
"orientation|screenSize"
android:windowSoftInputMode=
"adjustResize"
/>
android:windowSoftInputMode=
"adjustResize"
/>
<activity
<activity
android:name=
".activity.AddServerActivity"
android:name=
".activity.AddServerActivity"
android:configChanges=
"orientation|screenSize"
android:configChanges=
"orientation|screenSize"
android:
windowSoftInputMode=
"adjustResize
"
android:
launchMode=
"singleTop
"
android:
launchMode=
"singleTop"
/>
android:
windowSoftInputMode=
"adjustResize"
/>
<activity
<activity
android:name=
".activity.LoginActivity"
android:name=
".activity.LoginActivity"
android:configChanges=
"orientation|screenSize"
android:configChanges=
"orientation|screenSize"
android:windowSoftInputMode=
"adjustResize"
/>
android:windowSoftInputMode=
"adjustResize"
/>
<service
android:name=
".service.RocketChatService"
/>
<service
android:name=
".service.RocketChatService"
/>
<receiver
<receiver
android:name=
"com.google.android.gms.gcm.GcmReceiver"
android:name=
"com.google.android.gms.gcm.GcmReceiver"
android:exported=
"true"
android:exported=
"true"
android:permission=
"com.google.android.c2dm.permission.SEND"
>
android:permission=
"com.google.android.c2dm.permission.SEND"
>
<intent-filter>
<intent-filter>
<action
android:name=
"com.google.android.c2dm.intent.RECEIVE"
/>
<action
android:name=
"com.google.android.c2dm.intent.RECEIVE"
/>
<action
android:name=
"com.google.android.c2dm.intent.REGISTRATION"
/>
<action
android:name=
"com.google.android.c2dm.intent.REGISTRATION"
/>
<category
android:name=
"chat.rocket.android"
/>
<category
android:name=
"chat.rocket.android"
/>
</intent-filter>
</intent-filter>
</receiver>
</receiver>
...
@@ -67,8 +69,8 @@
...
@@ -67,8 +69,8 @@
android:exported=
"true"
android:exported=
"true"
android:permission=
"com.google.android.c2dm.permission.SEND"
>
android:permission=
"com.google.android.c2dm.permission.SEND"
>
<intent-filter>
<intent-filter>
<action
android:name=
"com.google.android.c2dm.intent.RECEIVE"
/>
<action
android:name=
"com.google.android.c2dm.intent.RECEIVE"
/>
<category
android:name=
"chat.rocket.android"
/>
<category
android:name=
"chat.rocket.android"
/>
</intent-filter>
</intent-filter>
</receiver>
</receiver>
...
@@ -76,7 +78,8 @@
...
@@ -76,7 +78,8 @@
android:name=
"com.google.firebase.iid.FirebaseInstanceIdInternalReceiver"
android:name=
"com.google.firebase.iid.FirebaseInstanceIdInternalReceiver"
android:exported=
"false"
/>
android:exported=
"false"
/>
<service
android:name=
"com.google.firebase.iid.FirebaseInstanceIdService"
<service
android:name=
"com.google.firebase.iid.FirebaseInstanceIdService"
android:exported=
"true"
>
android:exported=
"true"
>
<intent-filter
android:priority=
"-500"
>
<intent-filter
android:priority=
"-500"
>
<action
android:name=
"com.google.firebase.INSTANCE_ID_EVENT"
/>
<action
android:name=
"com.google.firebase.INSTANCE_ID_EVENT"
/>
...
@@ -87,7 +90,7 @@
...
@@ -87,7 +90,7 @@
android:name=
".push.gcm.GCMIntentService"
android:name=
".push.gcm.GCMIntentService"
android:exported=
"false"
>
android:exported=
"false"
>
<intent-filter>
<intent-filter>
<action
android:name=
"com.google.android.c2dm.intent.RECEIVE"
/>
<action
android:name=
"com.google.android.c2dm.intent.RECEIVE"
/>
</intent-filter>
</intent-filter>
</service>
</service>
...
@@ -95,14 +98,16 @@
...
@@ -95,14 +98,16 @@
android:name=
".push.gcm.GcmInstanceIDListenerService"
android:name=
".push.gcm.GcmInstanceIDListenerService"
android:exported=
"false"
>
android:exported=
"false"
>
<intent-filter>
<intent-filter>
<action
android:name=
"com.google.android.gms.iid.InstanceID"
/>
<action
android:name=
"com.google.android.gms.iid.InstanceID"
/>
</intent-filter>
</intent-filter>
</service>
</service>
<receiver
android:name=
".push.PushManager$DeleteReceiver"
<receiver
android:name=
".push.PushManager$DeleteReceiver"
android:exported=
"false"
/>
android:exported=
"false"
/>
<receiver
android:name=
".push.PushManager$ReplyReceiver"
<receiver
android:name=
".push.PushManager$ReplyReceiver"
android:exported=
"false"
/>
android:exported=
"false"
/>
<meta-data
<meta-data
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment