File tree Expand file tree Collapse file tree 3 files changed +18
-13
lines changed Expand file tree Collapse file tree 3 files changed +18
-13
lines changed Original file line number Diff line number Diff line change @@ -31,20 +31,24 @@ android {
31
31
32
32
33
33
dependencies {
34
+ compile " com.android.support:design:${ project.ext.support_library_version} "
35
+ compile " com.google.firebase:firebase-auth:${ project.ext.firebase_version} "
36
+ compile " com.google.android.gms:play-services-auth:${ project.ext.firebase_version} "
37
+
38
+ compile ' com.facebook.android:facebook-android-sdk:4.17.0'
39
+ compile(" com.twitter.sdk.android:twitter:2.1.1@aar" ) { transitive = true }
40
+
41
+ // The following libraries are needed to prevent incompatibilities with the facebook
42
+ // library when updating com.android.support libraries:
43
+ compile " com.android.support:customtabs:${ project.ext.support_library_version} "
44
+ compile " com.android.support:cardview-v7:${ project.ext.support_library_version} "
45
+
46
+
34
47
testCompile ' junit:junit:4.12'
35
- testCompile ' org.mockito:mockito-core:2.2.0 '
48
+ testCompile ' org.mockito:mockito-core:2.2.2 '
36
49
testCompile ' org.robolectric:robolectric:3.1.2'
37
50
// See https://github.com/robolectric/robolectric/issues/1932#issuecomment-219796474
38
51
testCompile ' org.khronos:opengl-api:gl1.1-android-2.1_r1'
39
-
40
- compile ' com.facebook.android:facebook-android-sdk:4.14.1'
41
- compile(" com.twitter.sdk.android:twitter:2.0.0@aar" ) {
42
- transitive = true ;
43
- }
44
- compile " com.android.support:design:${ project.ext.support_library_version} "
45
-
46
- compile " com.google.firebase:firebase-auth:${ project.ext.firebase_version} "
47
- compile " com.google.android.gms:play-services-auth:${ project.ext.firebase_version} "
48
52
}
49
53
50
54
checkstyle {
Original file line number Diff line number Diff line change 9
9
<meta-data
10
10
android : name =" com.google.android.gms.version"
11
11
android : value =" @integer/google_play_services_version" />
12
+ <meta-data
13
+ android : name =" io.fabric.ApiKey"
14
+ android : value =" @string/twitter_consumer_secret" />
12
15
13
16
<activity
14
17
android : name =" com.firebase.ui.auth.ui.email.ConfirmRecoverPasswordActivity"
Original file line number Diff line number Diff line change 1
1
project. ext. firebase_version = ' 9.8.0'
2
- // use caution when updating support library version, v25.0.0 caused issues
3
- // with the Facebook SDK. (NoSuchMethodError startActivity)
4
- project. ext. support_library_version = ' 24.2.1'
2
+ project. ext. support_library_version = ' 25.0.1'
5
3
6
4
project. ext. submodules = [' database' , ' auth' , ' storage' ]
7
5
project. ext. group = ' com.firebaseui'
You can’t perform that action at this time.
0 commit comments