forked from guardianproject/proofmode-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (48 loc) · 1.46 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
51
52
53
54
buildscript {
repositories {
mavenCentral()
jcenter()
google()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.0'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10'
classpath "org.jetbrains.kotlin:kotlin-serialization:1.6.21"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.0"
}
}
ext {
supportLibVersion = '28.0.0'
buildToolsVersion = "32.0.0"
androidxAnnotationVersion = "1.5.0"
guavaVersion = "31.1-android"
coreVersion = "1.5.0"
extJUnitVersion = "1.1.4"
runnerVersion = "1.5.0"
rulesVersion = "1.5.0"
espressoVersion = "3.5.0"
truthVersion = "1.1.3"
}
allprojects {
repositories {
mavenCentral()
jcenter()
google()
maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
maven { url 'https://jitpack.io' }
maven { url 'https://gitlab.com/api/v4/projects/51891540/packages/maven' }
maven { url "https://dl.cloudsmith.io/public/libp2p/jvm-libp2p/maven/" }
maven { url "https://artifacts.consensys.net/public/maven/maven/" }
}
project.ext {
// these are common variables used in */build.gradle
buildToolsVersion="34.0.0"
compileSdkVersion=34
minSdkVersion=24
targetSdkVersion=34
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}