123456789101112131415161718192021222324252627282930313233343536 |
- apply plugin: 'com.android.library'
- //apply from: 'bintray.gradle'
- android {
- compileSdkVersion 29
- buildToolsVersion "30.0.3"
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 29
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- namespace 'com.king.view.arcseekbar'
- lint {
- abortOnError false
- warning 'InvalidPackage'
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- testImplementation "androidx.test.ext:junit:1.1.1"
- androidTestImplementation "androidx.test:runner:1.2.0"
- androidTestImplementation "androidx.test.espresso:espresso-core:3.2.0"
- }
|