diff --git a/app/build.gradle b/app/build.gradle index 43bb6f5..057d9df 100755 --- a/app/build.gradle +++ b/app/build.gradle @@ -20,13 +20,19 @@ android { } } - // TODO This for anyone following along with the repo. Since you will have a different - // root URL, this code loads up a value from your gradle.properties file. + /* This for anyone following along with the repo. Since you will have a different + * root URL, this code loads up a value from your gradle.properties file. + */ + buildTypes.each { it.buildConfigField 'String', 'UNIQUE_FIREBASE_ROOT_URL', UniqueFirebaseRootUrl } - // TODO Step 1: Add the packaging options here + packagingOptions { + exclude 'META-INF/LICENSE' + exclude 'META-INF/LICENSE-FIREBASE.txt' + exclude 'META-INF/NOTICE' + } } @@ -37,7 +43,7 @@ dependencies { compile 'com.android.support:support-v4:23.0.1' compile 'com.android.support:cardview-v7:23.0.1' - // TODO Step 1: Add the Firebase library here + compile 'com.firebase:firebase-client-android:2.4.0' /* For Google Play Services */ compile 'com.google.android.gms:play-services-safetynet:8.3.0' diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index baa536d..45bb91e 100755 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -2,7 +2,7 @@ - +