forked from benjamarle/typhonlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (53 loc) · 1.54 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
buildscript {
repositories {
mavenLocal()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath 'com.github.axet:gradle-android-dx:0.0.4'
}
}
allprojects {
repositories {
mavenLocal()
google()
jcenter()
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
minSdkVersion 15
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
def room_version = "2.2.5"
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'com.github.woxthebox:draglistview:1.2.1'
implementation group: 'commons-io', name: 'commons-io', version: '2.5'
implementation 'commons-lang:commons-lang:2.4'
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation "androidx.room:room-runtime:$room_version"
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.ichi2.anki:api:1.1.0alpha6'
testImplementation 'junit:junit:4.12'
}