File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
7380In ` 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
You can’t perform that action at this time.
0 commit comments