apply plugin: 'com.android.library'
|
|
android {
|
namespace "com.blakequ.bluetooth_manager_lib"
|
compileSdkVersion 28
|
defaultConfig {
|
minSdk 21
|
targetSdk 28
|
versionCode 1
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
}
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
|
lintOptions {
|
abortOnError false
|
}
|
}
|
|
tasks.withType(JavaCompile) {
|
options.encoding = "UTF-8"
|
}
|
|
|
dependencies {
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
testImplementation 'junit:junit:4.12'
|
implementation 'androidx.appcompat:appcompat:1.3.0'
|
api 'com.blankj:utilcodex:1.31.0'
|
}
|