Skip to content

Commit e318e36

Browse files
committed
Updated docs.
1 parent db59563 commit e318e36

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

docs/android-installation.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,13 @@ buildscript {
6868
}
6969
}
7070
71+
allprojects {
72+
repositories {
73+
...
74+
maven { url 'https://dl.bintray.com/microsoftazuremobile/SDK' }
75+
}
76+
}
77+
7178
```
7279

7380
In `android/app/build.gradle`
@@ -92,6 +99,8 @@ In `android/app/src/main/AndroidManifest.xml`
9299
...
93100

94101
<uses-permission android:name="android.permission.INTERNET"/>
102+
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
103+
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
95104

96105
<application ...>
97106
...
@@ -110,14 +119,6 @@ In `android/app/src/main/AndroidManifest.xml`
110119
<action android:name="com.google.firebase.MESSAGING_EVENT" />
111120
</intent-filter>
112121
</service>
113-
114-
<receiver
115-
android:name="com.microsoft.windowsazure.notifications.NotificationsBroadcastReceiver"
116-
android:permission="com.google.android.c2dm.permission.SEND">
117-
<intent-filter>
118-
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
119-
</intent-filter>
120-
</receiver>
121122
...
122123
```
123124

0 commit comments

Comments
 (0)