mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.github.catvod.crawler'
|
|
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
minSdk 21
|
|
targetSdk 28
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api 'androidx.annotation:annotation:' + annotationVersion
|
|
api 'androidx.preference:preference:1.2.1'
|
|
api 'com.google.code.gson:gson:' + gsonVersion
|
|
api 'com.googlecode.juniversalchardet:juniversalchardet:1.0.3'
|
|
api 'com.orhanobut:logger:2.2.0'
|
|
api 'com.squareup.okhttp3:okhttp:' + okhttpVersion
|
|
api 'com.squareup.okhttp3:okhttp-dnsoverhttps:' + okhttpVersion
|
|
api('com.google.guava:guava:33.2.1-android') {
|
|
exclude group: 'com.google.code.findbugs', module: 'jsr305'
|
|
exclude group: 'org.checkerframework', module: 'checker-compat-qual'
|
|
exclude group: 'org.checkerframework', module: 'checker-qual'
|
|
exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
|
|
exclude group: 'com.google.j2objc', module: 'j2objc-annotations'
|
|
exclude group: 'org.codehaus.mojo', module: 'animal-sniffer-annotations'
|
|
}
|
|
} |