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.
43 lines
1.2 KiB
43 lines
1.2 KiB
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.3"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 30
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles "consumer-rules.pro"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
android {
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.jsoup:jsoup:1.14.1'
|
|
implementation 'org.antlr:antlr4-runtime:4.7.2'
|
|
implementation 'org.apache.commons:commons-lang3:3.11'
|
|
implementation 'org.slf4j:slf4j-api:1.7.30'
|
|
testImplementation('ch.qos.logback:logback-core:1.2.3')
|
|
testImplementation('org.powermock:powermock-module-junit4:1.6.3')
|
|
testImplementation('org.powermock:powermock-api-mockito:1.6.3')
|
|
testImplementation('com.tngtech.java:junit-dataprovider:1.10.2')
|
|
testImplementation('commons-io:commons-io:2.6')
|
|
} |