@@ -6,18 +6,18 @@ plugins {
6
6
id(" org.jetbrains.kotlin.plugin.compose" )
7
7
id(" org.jetbrains.compose" )
8
8
id(" com.google.gms.google-services" )
9
- id(" kotlin-kapt" ) // ← kapt drives annotation processors
9
+ id(" kotlin-kapt" )
10
10
}
11
11
12
12
android {
13
- namespace = " com.firebase.uidemo"
13
+ namespace = " com.firebase.uidemo"
14
14
compileSdk = Config .SdkVersions .compile
15
15
16
16
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
21
21
multiDexEnabled = true
22
22
resourcePrefix(" fui_" )
23
23
vectorDrawables.useSupportLibrary = true
@@ -29,10 +29,10 @@ android {
29
29
// using the debug key
30
30
signingConfig = signingConfigs[" debug" ]
31
31
postprocessing {
32
- isRemoveUnusedCode = true
32
+ isRemoveUnusedCode = true
33
33
isRemoveUnusedResources = true
34
- isObfuscate = true
35
- isOptimizeCode = true
34
+ isObfuscate = true
35
+ isOptimizeCode = true
36
36
}
37
37
}
38
38
}
@@ -44,10 +44,10 @@ android {
44
44
45
45
buildFeatures {
46
46
viewBinding = true
47
- compose = true
47
+ compose = true
48
48
}
49
49
50
- lint {
50
+ lint {
51
51
// Common lint options across all modules
52
52
53
53
disable + = mutableSetOf (
@@ -67,7 +67,7 @@ android {
67
67
abortOnError = true
68
68
69
69
baseline = file(" $rootDir /library/quality/lint-baseline.xml" )
70
- }
70
+ }
71
71
}
72
72
73
73
dependencies {
@@ -80,11 +80,11 @@ dependencies {
80
80
implementation(project(" :storage" ))
81
81
82
82
implementation(Config .Libs .Misc .glide)
83
- kapt(Config .Libs .Misc .glideCompiler)
83
+ kapt(Config .Libs .Misc .glideCompiler)
84
84
85
85
implementation(Config .Libs .Provider .facebook)
86
86
// Needed to override Facebook
87
- implementation(Config .Libs .Androidx .cardView)
87
+ implementation(Config .Libs .Androidx .cardView)
88
88
implementation(Config .Libs .Androidx .customTabs)
89
89
// Used for FirestorePagingActivity
90
90
implementation(Config .Libs .Androidx .paging)
@@ -108,4 +108,4 @@ dependencies {
108
108
releaseImplementation(" androidx.compose.ui:ui-tooling-preview" )
109
109
}
110
110
111
- kapt { correctErrorTypes = true } // optional but avoids some kapt warnings
111
+ kapt { correctErrorTypes = true } // optional but avoids some kapt warnings
0 commit comments