File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,13 @@ buildscript {
68
68
}
69
69
}
70
70
71
+ allprojects {
72
+ repositories {
73
+ ...
74
+ maven { url 'https://dl.bintray.com/microsoftazuremobile/SDK' }
75
+ }
76
+ }
77
+
71
78
```
72
79
73
80
In ` android/app/build.gradle `
@@ -92,6 +99,8 @@ In `android/app/src/main/AndroidManifest.xml`
92
99
...
93
100
94
101
<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" />
95
104
96
105
<application ...>
97
106
...
@@ -110,14 +119,6 @@ In `android/app/src/main/AndroidManifest.xml`
110
119
<action android : name =" com.google.firebase.MESSAGING_EVENT" />
111
120
</intent-filter >
112
121
</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 >
121
122
...
122
123
```
123
124
You can’t perform that action at this time.
0 commit comments