41 lines
995 B
Groovy
41 lines
995 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdk 36
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdk 36
|
|
|
|
// testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
lint {
|
|
abortOnError false
|
|
}
|
|
namespace 'it.integry.pointmobilescannerlibrary'
|
|
|
|
}
|
|
|
|
configurations {
|
|
all*.exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk7'
|
|
all*.exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8'
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'androidx.appcompat:appcompat:1.7.1'
|
|
implementation project(':barcode_base_android_library')
|
|
}
|