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.
25 lines
717 B
25 lines
717 B
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
android {
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
minSdk 21
|
|
targetSdk 28
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api 'androidx.media3:media3-common:1.1.0'
|
|
api 'androidx.annotation:annotation:' + annotationVersion
|
|
api 'androidx.preference:preference:1.2.1'
|
|
api 'com.google.code.gson:gson:' + gsonVersion
|
|
api('com.github.thegrizzlylabs:sardine-android:0.8') { exclude group: 'com.squareup.okhttp3', module: 'okhttp' }
|
|
api 'com.hierynomus:smbj:0.11.5'
|
|
api 'com.orhanobut:logger:2.2.0'
|
|
api 'com.squareup.okhttp3:okhttp:' + okhttpVersion
|
|
api 'com.squareup.okhttp3:okhttp-dnsoverhttps:' + okhttpVersion
|
|
api 'org.jsoup:jsoup:' + jsoupVersion
|
|
} |