apply plugin: 'com.android.application' apply plugin: 'com.google.firebase.firebase-perf' apply plugin: 'io.fabric' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' apply plugin: 'com.google.gms.google-services' android { def appVersionCode = 132 def appVersionName = '1.12.3' signingConfigs { release { keyAlias 'wms key' keyPassword 'inpmiy' storeFile file('Integry.jks') storePassword 'inpmiy' } } applicationVariants.all { variant -> variant.outputs.all { output -> output.outputFileName = "android-release_v2.apk" } } compileSdkVersion 29 buildToolsVersion '28.0.3' defaultConfig { applicationId "it.integry.integrywmsnative" minSdkVersion 21 targetSdkVersion 29 versionCode appVersionCode versionName appVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" signingConfig signingConfigs.release } buildTypes { debug { ext.enableCrashlytics = false } release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' signingConfig signingConfigs.release } } dataBinding { enabled = true } compileOptions { targetCompatibility 1.8 sourceCompatibility 1.8 } productFlavors { } build { doLast { delete "$projectDir/build/outputs/apk/release/version_v2.txt" file("$projectDir/build/outputs/apk/release/version_v2.txt").text = appVersionCode + '\n' + appVersionName } } gradle.projectsEvaluated { tasks.withType(JavaCompile.class) { options.compilerArgs << "-Xmaxerrs" << "10000" } } lintOptions { abortOnError false } dynamicFeatures = [":dynamic__base", ":dynamic_vgalimenti", ":dynamic_ime", ":dynamic_frudis", ":dynamic_saporiveri_pv", ":dynamic_saporiveri"] } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') androidTestImplementation('androidx.test.espresso:espresso-core:3.2.0', { exclude group: 'com.android.support', module: 'support-annotations' }) implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'com.orhanobut:logger:2.2.0' implementation 'com.google.firebase:firebase-core:17.2.2' implementation 'com.google.firebase:firebase-crash:16.2.1' implementation 'com.google.firebase:firebase-perf:19.0.5' implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1' implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'com.google.android.material:material:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta4' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.1.0' implementation 'androidx.preference:preference:1.1.0' implementation 'com.squareup.okhttp3:okhttp:4.4.0' implementation 'com.squareup.retrofit2:retrofit:2.7.2' implementation 'com.squareup.retrofit2:converter-gson:2.7.2' implementation 'com.annimon:stream:1.2.1' implementation 'androidx.lifecycle:lifecycle-runtime:2.2.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation 'androidx.lifecycle:lifecycle-common-java8:2.2.0' implementation 'org.apache.commons:commons-text:1.8' //MVVM def dagger2_version = "2.26" implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation "androidx.lifecycle:lifecycle-common-java8:2.2.0" api "com.google.dagger:dagger:$dagger2_version" annotationProcessor "com.google.dagger:dagger-compiler:$dagger2_version" api "com.google.dagger:dagger-android:$dagger2_version" api "com.google.dagger:dagger-android-support:$dagger2_version" // if you use the support libraries annotationProcessor "com.google.dagger:dagger-android-processor:$dagger2_version" //FAB implementation 'com.github.clans:fab:1.6.4' //CUSTOM VIEWS implementation 'com.github.NaimishTrivedi:FBToast:1.0' implementation 'net.cachapa.expandablelayout:expandablelayout:2.9.2' implementation 'com.github.frankiesardo:linearlistview:1.0.1@aar' implementation 'com.github.andrefrsousa:SuperBottomSheet:1.2.1@aar' implementation 'com.fede987:status-bar-alert:1.0.1' implementation 'com.fxn769:stash:1.2' testImplementation 'junit:junit:4.13' implementation 'com.github.zhukic:sectioned-recyclerview:1.2.3' //SQLite ROOM def room_version = "2.2.4" implementation "androidx.room:room-runtime:$room_version" annotationProcessor "androidx.room:room-compiler:$room_version" //AppUpdate implementation 'com.github.javiersantos:AppUpdater:2.7' //Barcode implementation project(':pointmobilescannerlibrary') implementation project(':zebrascannerlibrary') implementation project(':barcode_base_android_library') implementation project(':honeywellscannerlibrary') implementation project(':keyobardemulatorscannerlibrary') androidTestImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0' androidTestImplementation 'org.testng:testng:7.1.0' } repositories { mavenCentral() maven { url 'https://maven.fabric.io/public' } }