forked from opentimestamps/java-opentimestamps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (35 loc) · 888 Bytes
/
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 {
repositories {
mavenCentral()
jcenter()
google()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10'
classpath "org.jetbrains.kotlin:kotlin-serialization:1.6.21"
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.19'
}
}
ext {
supportLibVersion = '33.0.0'
}
allprojects {
repositories {
mavenCentral()
jcenter()
google()
maven { url 'https://jitpack.io' }
}
project.ext {
// these are common variables used in */build.gradle
buildToolsVersion="33.0.0"
compileSdkVersion=33
minSdkVersion=16
targetSdkVersion=33
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}