forked from p7s1digital/oasis-jsbridge-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·46 lines (39 loc) · 866 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
46
/*
* Copyright (c) ProsiebenSat1. Digital GmbH 2019.
*/
buildscript {
ext.versions = [
min_sdk: 21,
compile_sdk: 32,
target_sdk: 32,
timber: '5.0.1',
okhttp: '4.9.3',
gson: '2.8.9',
kotlin: [
coroutines: '1.6.4',
kotlin: '1.7.22',
],
androidx: [
annotation: '1.5.0',
test: '1.5.0'
],
spotbugs: '4.7.1',
junit: '4.13.2',
mockk: '1.12.0'
]
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin.kotlin"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}