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" }