39 lines
1012 B
Groovy
39 lines
1012 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'ru.cleverpumpkin.proguard-dictionaries-generator'
|
|
}
|
|
|
|
android {
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "com.github.catvod.demo"
|
|
minSdk 21
|
|
targetSdk 33
|
|
}
|
|
|
|
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_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
|
|
implementation 'com.google.code.gson:gson:2.9.1'
|
|
implementation 'cn.wanghaomiao:JsoupXpath:2.5.1'
|
|
implementation 'org.jsoup:jsoup:1.15.3'
|
|
} |