-
Notifications
You must be signed in to change notification settings - Fork 415
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 719 Bytes
/
Copy pathbuild.gradle
File metadata and controls
32 lines (27 loc) · 719 Bytes
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
apply plugin: 'com.android.library'
android {
compileSdkVersion 29
buildToolsVersion "27.0.3"
defaultConfig {
minSdkVersion 14
targetSdkVersion 29
versionCode 28
versionName "2.7"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
disable 'MissingTranslation'
}
}
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
api 'androidx.appcompat:appcompat:1.1.0'
api 'com.google.android.material:material:1.1.0'
api 'com.squareup.okhttp3:okhttp:3.12.1'
api 'org.jsoup:jsoup:1.11.3'
}