-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
22 lines (20 loc) · 847 Bytes
/
build.gradle.kts
File metadata and controls
22 lines (20 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
buildscript {
extra.apply {
set("appCompileSdk", 36) // Ensure any extra configChanges are added into Activities' manifests.
set("appTargetSdk", 35)
set("appMinSdk", 27)
set("legacyMinSdk", 27) // Duplicated from `Core/Legacy/build.gradle` : `legacyMinSdk = 27`
set("javaVersion", JavaVersion.VERSION_17)
}
}
plugins {
alias(core.plugins.compose.compiler) apply false
alias(core.plugins.kapt) apply false
alias(core.plugins.kotlin.android) apply false
alias(core.plugins.android.application) apply false
alias(core.plugins.android.library) apply false
alias(core.plugins.dagger.hilt) apply false
alias(core.plugins.navigation.safeargs) apply false
kotlin("plugin.serialization") version core.versions.kotlin apply false
id("com.infomaniak.core.compose.lint")
}