forked from arab-ware/AndroidIDE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·63 lines (49 loc) · 1.55 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
55
56
57
58
59
60
61
62
63
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
namespace "com.itsaky.androidide.common"
compileSdkVersion rootProject.ext.compileSdk
buildToolsVersion rootProject.ext.buildTools
defaultConfig {
minSdkVersion rootProject.ext.minSdk
targetSdkVersion rootProject.ext.targetSdk
}
buildFeatures.viewBinding true
compileOptions {
sourceCompatibility rootProject.ext.javaSourceVersion
targetCompatibility rootProject.ext.javaTargetVersion
}
kotlinOptions {
jvmTarget = "11"
}
buildTypes {
release {
minifyEnabled true
}
}
testOptions {
unitTests {
includeAndroidResources = true
}
}
}
dependencies {
implementation fileTree (dir: 'libs', include: ['*.jar'])
implementation common.utilcode
implementation common.lang3
implementation google.guava
implementation google.material
implementation androidx.appcompat
implementation androidx.preference
implementation androidx.vectors
implementation androidx.animated_vectors
implementation androidx.ktx
implementation common.kotlin
implementation project (path: ':eventbus-events')
api androidx.multidex
api project (path: ':shared')
api project (path: ':logger')
testImplementation tests.junit
testImplementation tests.google_truth
testImplementation tests.robolectric
}