-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
build.gradle
50 lines (44 loc) · 1.55 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
buildscript {
ext {
agp_version = '8.7.3'
kotlin_version = '2.0.21'
kotlin_coroutines_version = '1.7.2'
navigation_version = "2.8.3"
hilt_version = '2.51.1'
room_version = '2.6.1'
core_version = '1.15.0'
desugaring_version = '2.1.3'
min_sdk = 24
target_sdk = 35
ndk_version = "27.2.12479018"
}
dependencies {
// Hilt isn't compatible with the new plugin syntax yet.
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:2.0.0"
}
}
plugins {
// Android studio doesn't understand this syntax
//noinspection GradlePluginVersion
id "com.android.application" version "$agp_version" apply false
id "androidx.navigation.safeargs.kotlin" version "$navigation_version" apply false
//noinspection GradlePluginVersion
id 'com.android.library' version "$agp_version" apply false
id "org.jetbrains.kotlin.android" version "$kotlin_version" apply false
id "com.google.devtools.ksp" version '2.0.21-1.0.25' apply false
// We use spotless in the root build.gradle to apply to all modules.
id "com.diffplug.spotless" version "6.25.0" apply true
}
spotless {
kotlin {
target "*/src/**/*.kt"
ktfmt().dropboxStyle()
licenseHeaderFile("NOTICE")
}
cpp {
target("*/src/**/cpp/*.cpp", "*/src/**/cpp/*.h", "*/src/**/cpp/*.hpp")
eclipseCdt().configFile("eclipse-cdt.xml")
licenseHeaderFile("NOTICE")
}
}