style(android): ktlint multiline-expression-wrapping on build.gradle.kts
Two assignments had a multi-line RHS sitting on the same line as the `=`. ktlint's multiline-expression-wrapping rule requires the multi-line expression to start on a new line. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -50,11 +50,12 @@ android {
|
|||||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
"proguard-rules.pro",
|
"proguard-rules.pro",
|
||||||
)
|
)
|
||||||
signingConfig = if (System.getenv("ANDROID_KEYSTORE_PATH").isNullOrEmpty()) {
|
signingConfig =
|
||||||
signingConfigs.getByName("debug")
|
if (System.getenv("ANDROID_KEYSTORE_PATH").isNullOrEmpty()) {
|
||||||
} else {
|
signingConfigs.getByName("debug")
|
||||||
signingConfigs.getByName("release")
|
} else {
|
||||||
}
|
signingConfigs.getByName("release")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -69,11 +70,12 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
packaging {
|
packaging {
|
||||||
resources.excludes += setOf(
|
resources.excludes +=
|
||||||
"/META-INF/{AL2.0,LGPL2.1}",
|
setOf(
|
||||||
"META-INF/LICENSE.md",
|
"/META-INF/{AL2.0,LGPL2.1}",
|
||||||
"META-INF/LICENSE-notice.md",
|
"META-INF/LICENSE.md",
|
||||||
)
|
"META-INF/LICENSE-notice.md",
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user