Implementato servizio di spostamento arts tra UL in PickingLibero. Implementata generazione documenti in CloseUDS in PickingLibero.
39 lines
872 B
Groovy
39 lines
872 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdk 34
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
lint {
|
|
abortOnError false
|
|
}
|
|
namespace 'it.integry.zebrascannerlibrary'
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
implementation project(path: ':barcode_base_android_library')
|
|
}
|