-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
45 lines (39 loc) · 1 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
buildscript {
ext {
appcompat_version = '1.7.0'
espresso_version = '3.6.1'
agp_version = '8.6.0'
junit_version = '4.13.2'
kotlin_version = '1.8.21'
ktx_version = '1.13.1'
roboelectric_version = '4.10.3'
testrunner_version = '1.6.2'
truth_version = '1.4.4'
// for maven central upload and publishing
gradle_maven_publish_plugin_version = '0.14.2'
dokka_gradle_plugin_version = '1.4.30'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$agp_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
project.ext {
minSdkVersion = 21
compileSdkVersion = 34
targetSdkVersion = 34
ndkVersion = "22.1.7171670"
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}