forked from OxygenCobalt/Auxio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (44 loc) · 1.54 KB
/
build.gradle
File metadata and controls
50 lines (44 loc) · 1.54 KB
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.11.1'
kotlin_version = '2.2.0'
kotlin_coroutines_version = '1.10.2'
navigation_version = "2.9.2"
hilt_version = '2.57'
room_version = '2.7.2'
core_version = '1.16.0'
desugaring_version = '2.1.3'
min_sdk = 24
target_sdk = 36
ndk_version = "28.2.13676358"
}
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.2.0-2.0.2' 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")
}
}