File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ plugins {
10
10
// alias(libs.plugins.kotlin.parcelize) apply false
11
11
12
12
// Android
13
- // alias(libs.plugins.android.application) apply false
14
- // alias(libs.plugins.android.library) apply false
13
+ alias(libs.plugins.android.application) apply false
14
+ alias(libs.plugins.android.library) apply false
15
15
16
16
// Other
17
17
alias(libs.plugins.compose.compiler) apply false
@@ -24,10 +24,12 @@ allprojects {
24
24
group = " dev.zt64.hyperion"
25
25
version = " 1.0.0"
26
26
27
- apply (plugin = " org.jlleitschuh.gradle.ktlint" )
27
+ if (project.name != " resources" ) {
28
+ apply (plugin = " org.jlleitschuh.gradle.ktlint" )
28
29
29
- configure<KtlintExtension > {
30
- version = rootProject.libs.versions.ktlint
30
+ configure<KtlintExtension > {
31
+ version = rootProject.libs.versions.ktlint
32
+ }
31
33
}
32
34
}
33
35
You can’t perform that action at this time.
0 commit comments