Skip to content

Commit 058e3d4

Browse files
committed
chore: Format build.gradle.kts for Android
- Apply code formatting changes to the `app/android/build.gradle.kts` file. - Adjust indentation for the `proguardFiles` block. - Add spacing around the `testOptions` and `UploadMappingFileTask` type blocks.
1 parent fca907a commit 058e3d4

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

app/android/build.gradle.kts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ android {
4040
getByName("release") {
4141
isMinifyEnabled = true
4242
isShrinkResources = true
43-
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
43+
proguardFiles(
44+
getDefaultProguardFile("proguard-android-optimize.txt"),
45+
"proguard-rules.pro"
46+
)
4447
configure<CrashlyticsExtension> { mappingFileUploadEnabled = true }
4548
signingConfig = signingConfigs.getByName("config")
4649
}
@@ -58,7 +61,7 @@ android {
5861
compose = true
5962
}
6063
packagingOptions.resources.excludes.add("/META-INF/{AL2.0,LGPL2.1}")
61-
testOptions{
64+
testOptions {
6265
execution = "ANDROIDX_TEST_ORCHESTRATOR"
6366
emulatorControl.enable = true
6467
}
@@ -112,6 +115,6 @@ dependencies {
112115
androidTestImplementation(libs.leakCanary.android.instrumentation)
113116
lintChecks(libs.android.security.lint)
114117
}
115-
tasks.withType<UploadMappingFileTask>{
118+
tasks.withType<UploadMappingFileTask> {
116119
dependsOn("processDebugGoogleServices")
117120
}

0 commit comments

Comments
 (0)