-
Notifications
You must be signed in to change notification settings - Fork 46
/
build.gradle
47 lines (42 loc) · 1.2 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
plugins {
id 'com.android.library'
id 'kotlin-android'
}
android {
compileSdk libs.versions.compileSdk.get().toInteger()
defaultConfig {
minSdk libs.versions.minSdk.get().toInteger()
targetSdk libs.versions.targetSdk.get().toInteger()
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
flavorDimensions 'testing'
productFlavors {
stable {
dimension 'testing'
}
experimental {
dimension 'testing'
}
dev {
dimension 'testing'
}
dw {
dimension 'testing'
}
}
namespace 'org.openobservatory.engine'
}
dependencies {
implementation libs.google.gson
// For the stable and dev app flavours we're using the library
// build published at Maven Central.
stableImplementation libs.ooni.oonimkall
devImplementation libs.ooni.oonimkall
dwImplementation libs.ooni.oonimkall
// For the experimental flavour, you need to compile your own
// oonimkall.aar and put it into the ../engine-experimental dir
experimentalImplementation project(":engine-experimental")
}