buildscript { repositories { maven { url 'https://maven.fabric.io/public' } } dependencies { classpath 'io.fabric.tools:gradle:1.27.0' } } 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 = 92 def appVersionName = '1.8.5' 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 28 buildToolsVersion '28.0.3' defaultConfig { applicationId "it.integry.integrywmsnative" minSdkVersion 21 targetSdkVersion 28 versionCode appVersionCode versionName appVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" signingConfig signingConfigs.release } buildTypes { 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"] } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') androidTestImplementation('androidx.test.espresso:espresso-core:3.1.1', { 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.1' implementation 'com.google.firebase:firebase-crash:16.2.1' implementation 'com.google.firebase:firebase-perf:19.0.1' 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-beta01' implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta3' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.1.0-rc01' implementation 'androidx.preference:preference:1.1.0' implementation 'com.squareup.okhttp3:okhttp:4.2.2' implementation 'com.squareup.retrofit2:retrofit:2.6.2' implementation 'com.squareup.retrofit2:converter-gson:2.6.2' implementation 'com.annimon:stream:1.2.1' implementation 'androidx.lifecycle:lifecycle-runtime:2.1.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0' implementation 'androidx.lifecycle:lifecycle-common-java8:2.1.0' //kapt "androidx.lifecycle:lifecycle-compiler:2.0.0" implementation 'com.danielpuiu:ghostfish:2.0.0' annotationProcessor "com.danielpuiu:ghostfish-compiler:2.0.0" //MVVM implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0' implementation "androidx.lifecycle:lifecycle-common-java8:2.1.0" implementation 'com.jakewharton.rxbinding2:rxbinding:2.2.0' implementation 'com.jakewharton.rxbinding2:rxbinding-support-v4:2.2.0' implementation 'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.2.0' implementation 'com.jakewharton.rxbinding2:rxbinding-design:2.2.0' implementation 'com.jakewharton.rxbinding2:rxbinding-recyclerview-v7:2.2.0' implementation 'br.com.zbra:android-linq:1.1.0' //FAB implementation 'com.github.clans:fab:1.6.4' //CUSTOM VIEWS implementation 'com.github.NaimishTrivedi:FBToast:1.0' implementation 'de.hdodenhof:circleimageview:3.0.1' 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.12' implementation 'com.mikhaellopez:lazydatepicker:1.0.0' implementation 'com.github.demoNo:AutoScrollViewPager:v1.0.2' implementation 'com.github.zhukic:sectioned-recyclerview:1.2.3' implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1' //SQLite ROOM def room_version = "2.2.1" 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(path: ':barcode_base_android_library') implementation project(path: ':honeywellscannerlibrary') implementation project(':keyobardemulatorscannerlibrary') } repositories { mavenCentral() maven { url 'https://maven.fabric.io/public' } }