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.
52 lines
1.4 KiB
52 lines
1.4 KiB
plugins {
|
|
id 'com.android.application'
|
|
id 'ru.cleverpumpkin.proguard-dictionaries-generator'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.github.catvod'
|
|
|
|
compileSdk {
|
|
version = release(36)
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "com.github.catvod.demo"
|
|
minSdk 21
|
|
targetSdk 28
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles 'proguard-rules.pro'
|
|
proguardDictionaries {
|
|
dictionaryNames = ["build/class-dictionary", "build/package-dictionary", "build/obfuscation-dictionary"]
|
|
minLineLength 1
|
|
maxLineLength 3
|
|
linesCountInDictionary 100000
|
|
}
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
|
|
configurations.configureEach {
|
|
resolutionStrategy {
|
|
force 'com.squareup.okhttp3:okhttp:' + okhttpVersion
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.squareup.okhttp3:okhttp:' + okhttpVersion
|
|
implementation 'com.github.thegrizzlylabs:sardine-android:0.9'
|
|
implementation 'wang.harlon.quickjs:wrapper-android:3.2.3'
|
|
implementation 'com.google.code.gson:gson:2.13.2'
|
|
implementation 'com.hierynomus:smbj:0.14.0'
|
|
implementation 'com.orhanobut:logger:2.2.0'
|
|
implementation 'org.jsoup:jsoup:1.21.2'
|
|
} |