You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -166,6 +166,33 @@ After we link `react-native-oauth` to our application, we're ready to go. Androi
166
166
167
167
One note, *all* of the callback urls follow the scheme: `http://localhost/[provider_name]`. Make sure this is set as a configuration for each provider below (documented in the provider setup sections).
168
168
169
+
Make sure you add the following to your `android/build.gradle` file:
170
+
171
+
```
172
+
maven { url "https://jitpack.io" }
173
+
```
174
+
175
+
For instance, an example `android/build.gradle` file would look like this:
176
+
177
+
```
178
+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
179
+
180
+
buildscript {
181
+
// ...
182
+
}
183
+
184
+
allprojects {
185
+
repositories {
186
+
mavenLocal()
187
+
jcenter()
188
+
maven { url "https://jitpack.io" } // <~ ADD THIS LINE
0 commit comments