apply plugin: 'com.android.library' android { compileSdk 35 defaultConfig { minSdkVersion 21 targetSdk 35 // 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' } configurations { all*.exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk7' all*.exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8' } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.6.1' testImplementation 'junit:junit:4.13.2' implementation project(path: ':barcode_base_android_library') }