Skip to content

Commit dcebaed

Browse files
authored
Add instructions for adding the Fabric repository (#391)
1 parent 40434fc commit dcebaed

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

auth/README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ As a pre-requisite, ensure your application is configured for use with
3939
Firebase: see the
4040
[Firebase documentation](https://firebase.google.com/docs/android/setup).
4141
Then, add the FirebaseUI auth library dependency. If your project uses
42-
Gradle, add:
42+
Gradle, add the dependency:
4343

4444
```groovy
4545
dependencies {
@@ -48,14 +48,13 @@ dependencies {
4848
}
4949
```
5050

51-
If instead your project uses Maven, add:
51+
and add the Fabric repository
5252

53-
```xml
54-
<dependency>
55-
<groupId>com.firebaseui</groupId>
56-
<artifactId>firebase-ui-auth</artifactId>
57-
<version>1.0.0</version>
58-
</dependency>
53+
```groovy
54+
repositories {
55+
// ...
56+
maven { url 'https://maven.fabric.io/public' }
57+
}
5958
```
6059

6160
### Identity provider configuration

0 commit comments

Comments
 (0)