@@ -6,18 +6,18 @@ plugins {
66 id(" org.jetbrains.kotlin.plugin.compose" )
77 id(" org.jetbrains.compose" )
88 id(" com.google.gms.google-services" )
9- id(" kotlin-kapt" ) // ← kapt drives annotation processors
9+ id(" kotlin-kapt" )
1010}
1111
1212android {
13- namespace = " com.firebase.uidemo"
13+ namespace = " com.firebase.uidemo"
1414 compileSdk = Config .SdkVersions .compile
1515
1616 defaultConfig {
17- minSdk = Config .SdkVersions .min
18- targetSdk = Config .SdkVersions .target
19- versionName = Config .version
20- versionCode = 1
17+ minSdk = Config .SdkVersions .min
18+ targetSdk = Config .SdkVersions .target
19+ versionName = Config .version
20+ versionCode = 1
2121 multiDexEnabled = true
2222 resourcePrefix(" fui_" )
2323 vectorDrawables.useSupportLibrary = true
@@ -29,10 +29,10 @@ android {
2929 // using the debug key
3030 signingConfig = signingConfigs[" debug" ]
3131 postprocessing {
32- isRemoveUnusedCode = true
32+ isRemoveUnusedCode = true
3333 isRemoveUnusedResources = true
34- isObfuscate = true
35- isOptimizeCode = true
34+ isObfuscate = true
35+ isOptimizeCode = true
3636 }
3737 }
3838 }
@@ -44,10 +44,10 @@ android {
4444
4545 buildFeatures {
4646 viewBinding = true
47- compose = true
47+ compose = true
4848 }
4949
50- lint {
50+ lint {
5151 // Common lint options across all modules
5252
5353 disable + = mutableSetOf (
@@ -67,7 +67,7 @@ android {
6767 abortOnError = true
6868
6969 baseline = file(" $rootDir /library/quality/lint-baseline.xml" )
70- }
70+ }
7171}
7272
7373dependencies {
@@ -80,11 +80,11 @@ dependencies {
8080 implementation(project(" :storage" ))
8181
8282 implementation(Config .Libs .Misc .glide)
83- kapt(Config .Libs .Misc .glideCompiler)
83+ kapt(Config .Libs .Misc .glideCompiler)
8484
8585 implementation(Config .Libs .Provider .facebook)
8686 // Needed to override Facebook
87- implementation(Config .Libs .Androidx .cardView)
87+ implementation(Config .Libs .Androidx .cardView)
8888 implementation(Config .Libs .Androidx .customTabs)
8989 // Used for FirestorePagingActivity
9090 implementation(Config .Libs .Androidx .paging)
@@ -108,4 +108,4 @@ dependencies {
108108 releaseImplementation(" androidx.compose.ui:ui-tooling-preview" )
109109}
110110
111- kapt { correctErrorTypes = true } // optional but avoids some kapt warnings
111+ kapt { correctErrorTypes = true } // optional but avoids some kapt warnings
0 commit comments