-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathbuild.gradle
More file actions
70 lines (56 loc) · 2.46 KB
/
build.gradle
File metadata and controls
70 lines (56 loc) · 2.46 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
70
apply plugin: 'com.android.application'
apply from: '../library/quality/quality.gradle'
android {
compileSdkVersion compileSdk
buildToolsVersion buildTools
defaultConfig {
applicationId "com.firebase.uidemo"
minSdkVersion 16
targetSdkVersion targetSdk
versionCode 1
versionName "1.0"
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
// For the purposes of the sample, allow testing of a proguarded release build
// using the debug key
signingConfig signingConfigs.debug
}
}
lintOptions {
disable 'MissingTranslation'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:multidex:1.0.1'
compile "com.android.support:design:$supportLibraryVersion"
compile project(path: ':auth')
compile project(path: ':database')
compile project(path: ':firestore')
compile project(path: ':storage')
compile "com.google.android.gms:play-services-auth:$firebaseVersion"
compile "com.google.firebase:firebase-auth:$firebaseVersion"
compile "com.google.firebase:firebase-database:$firebaseVersion"
compile "com.google.firebase:firebase-storage:$firebaseVersion"
compile('com.facebook.android:facebook-login:4.27.0')
compile("com.twitter.sdk.android:twitter-core:3.0.0@aar") { transitive = true }
compile "android.arch.lifecycle:runtime:$architectureVersion"
compile "android.arch.lifecycle:extensions:$architectureVersion"
compile 'com.github.bumptech.glide:glide:4.1.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.1.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.
compile 'pub.devrel:easypermissions:1.0.1'
compile 'com.jakewharton:butterknife:8.7.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0'
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.4'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
}
apply plugin: 'com.google.gms.google-services'