forked from jackass0528/FirebaseUI-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
69 lines (57 loc) · 2.47 KB
/
build.gradle
File metadata and controls
69 lines (57 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
apply plugin: 'com.android.application'
apply from: '../library/quality/quality.gradle'
android {
compileSdkVersion compileSdk
defaultConfig {
applicationId "com.firebase.uidemo"
minSdkVersion 16
targetSdkVersion targetSdk
versionCode 1
versionName version
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
// For the purposes of the sample, allow testing of a proguarded release build
// using the debug key
signingConfig signingConfigs.debug
postprocessing {
removeUnusedCode true
removeUnusedResources true
obfuscate true
optimizeCode true
}
}
}
lintOptions {
disable 'MissingTranslation'
}
}
dependencies {
implementation "com.google.firebase:firebase-core:$firebaseVersion"
implementation "com.android.support:design:$supportLibraryVersion"
implementation 'com.android.support:multidex:1.0.3'
implementation project(path: ':auth')
implementation project(path: ':firestore')
implementation project(path: ':database')
implementation project(path: ':storage')
implementation 'com.facebook.android:facebook-login:4.31.0'
// Needed to override Facebook
implementation "com.android.support:cardview-v7:$supportLibraryVersion"
implementation "com.android.support:customtabs:$supportLibraryVersion"
implementation("com.twitter.sdk.android:twitter-core:3.1.1@aar") { transitive = true }
implementation 'com.github.bumptech.glide:glide:4.6.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
// The following dependencies are not required to use the Firebase UI library.
// They are used to make some aspects of the demo app implementation simpler for
// demonstrative purposes, and you may find them useful in your own apps; YMMV.
implementation "android.arch.lifecycle:runtime:$architectureVersion"
implementation 'pub.devrel:easypermissions:1.2.0'
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.5.4'
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
testImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
}
apply plugin: 'com.google.gms.google-services'