- Notifications
You must be signed in to change notification settings - Fork 268
/
Copy pathbuild.gradle
34 lines (32 loc) · 859 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
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion '29.0.0'
defaultConfig {
applicationId "apijson.demo"
minSdkVersion 26
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
}
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
api 'com.squareup.okhttp:okhttp:2.1.0'
api 'com.alibaba:fastjson:1.2.61'
api 'com.github.APIJSON:apijson-orm:3.9.0'
api 'com.github.yhaolpz:FloatWindow:1.0.9'
api 'com.github.TommyLemon:UnitAuto:1.0.3'
}