-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (35 loc) · 1.09 KB
/
build.gradle
File metadata and controls
39 lines (35 loc) · 1.09 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
buildscript {
ext.kotlinVer = '2.0.0'
ext.buildToolsVer = '34.0.0'
ext.minSdkVer = 28
ext.targetSdkVer = 34
ext.compileSdkVer = 34
ext.jUnit5Ver = '1.9.3.0'
ext.navigationComponentVer = '2.8.2'
ext.jvmTargetVer = '21'
repositories {
google()
jcenter()
maven { url 'https://storage.googleapis.com/r8-releases/raw' }
maven { url "https://jitpack.io" }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVer"
classpath "de.mannodermaus.gradle.plugins:android-junit5:$jUnit5Ver"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationComponentVer"
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:$kotlinVer"
}
}
apply from: 'dependencies.gradle'
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}