-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 4.0.1
- Loading branch information
Showing
45 changed files
with
796 additions
and
768 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// NOTE: this project uses Gradle Kotlin DSL. More common build.gradle instructions can be found in | ||
// the main README. | ||
|
||
android { | ||
defaultConfig { | ||
multiDexEnabled = true | ||
} | ||
|
||
buildTypes { | ||
getByName("release") { | ||
// For the purposes of the sample, allow testing of a proguarded release build | ||
// using the debug key | ||
signingConfig = signingConfigs["debug"] | ||
|
||
postprocessing { | ||
isRemoveUnusedCode = true | ||
isRemoveUnusedResources = true | ||
isObfuscate = true | ||
isOptimizeCode = true | ||
} | ||
} | ||
} | ||
|
||
lintOptions { | ||
disable("ResourceName", "MissingTranslation") | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(Config.Libs.Firebase.core) | ||
implementation(Config.Libs.Support.design) | ||
implementation(Config.Libs.Support.multidex) | ||
|
||
implementation(project(":auth")) | ||
implementation(project(":firestore")) | ||
implementation(project(":database")) | ||
implementation(project(":storage")) | ||
|
||
implementation(Config.Libs.Provider.facebook) | ||
// Needed to override Facebook | ||
implementation(Config.Libs.Support.cardView) | ||
implementation(Config.Libs.Support.customTabs) | ||
implementation(Config.Libs.Provider.twitter) { isTransitive = true } | ||
|
||
implementation(Config.Libs.Misc.glide) | ||
annotationProcessor(Config.Libs.Misc.glideCompiler) | ||
|
||
// Used for FirestorePagingActivity | ||
implementation(Config.Libs.Arch.paging) | ||
|
||
// 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(Config.Libs.Misc.permissions) | ||
implementation(Config.Libs.Misc.butterKnife) | ||
annotationProcessor(Config.Libs.Misc.butterKnifeCompiler) | ||
debugImplementation(Config.Libs.Misc.leakCanary) | ||
releaseImplementation(Config.Libs.Misc.leakCanaryNoop) | ||
testImplementation(Config.Libs.Misc.leakCanaryNoop) | ||
} | ||
|
||
apply(plugin = "com.google.gms.google-services") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import com.android.build.gradle.internal.dsl.TestOptions | ||
|
||
android { | ||
buildTypes { | ||
getByName("release") { | ||
postprocessing { | ||
consumerProguardFiles("auth-proguard.pro") | ||
} | ||
} | ||
} | ||
|
||
lintOptions { | ||
disable("UnusedQuantity") | ||
} | ||
|
||
testOptions { | ||
unitTests(closureOf<TestOptions.UnitTestOptions> { | ||
isIncludeAndroidResources = true | ||
}) | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(Config.Libs.Support.design) | ||
implementation(Config.Libs.Support.customTabs) | ||
implementation(Config.Libs.Support.constraint) | ||
implementation(Config.Libs.Misc.materialProgress) | ||
|
||
implementation(Config.Libs.Arch.extensions) | ||
annotationProcessor(Config.Libs.Arch.compiler) | ||
|
||
api(Config.Libs.Firebase.auth) | ||
api(Config.Libs.PlayServices.auth) | ||
|
||
compileOnly(Config.Libs.Provider.facebook) | ||
// Needed to override Facebook | ||
implementation(Config.Libs.Support.cardView) | ||
implementation(Config.Libs.Support.customTabs) | ||
compileOnly(Config.Libs.Provider.twitter) { isTransitive = true } | ||
|
||
testImplementation(Config.Libs.Test.junit) | ||
testImplementation(Config.Libs.Test.mockito) | ||
testImplementation(Config.Libs.Test.robolectric) | ||
testImplementation(Config.Libs.Provider.facebook) | ||
testImplementation(Config.Libs.Provider.twitter) { isTransitive = true } | ||
|
||
debugImplementation(project(":internal:lintchecks")) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.