88 lines
3.4 KiB
Groovy
88 lines
3.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion '28.0.3'
|
|
defaultConfig {
|
|
applicationId "it.integry.integrywmsnative"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 4
|
|
versionName "1.0.1"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
|
|
compileOptions {
|
|
targetCompatibility 1.8
|
|
sourceCompatibility 1.8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
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.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.android.support:support-v4:28.0.0'
|
|
implementation 'com.android.support:design:28.0.0'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
implementation 'com.android.support:cardview-v7:28.0.0'
|
|
implementation 'com.android.support:recyclerview-v7:28.0.0'
|
|
implementation 'com.android.support:preference-v7:28.0.0'
|
|
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.0.0'
|
|
implementation 'org.parceler:parceler-api:1.1.10'
|
|
annotationProcessor 'org.parceler:parceler:1.1.10'
|
|
implementation 'com.annimon:stream:1.2.1'
|
|
//MVVM
|
|
implementation 'android.arch.lifecycle:extensions:1.1.1'
|
|
annotationProcessor "android.arch.lifecycle:compiler:1.1.1"
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding:2.1.1'
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding-support-v4:2.1.1'
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.1.1'
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding-design:2.1.1'
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding-recyclerview-v7:2.1.1'
|
|
implementation 'com.jakewharton:butterknife:8.8.1'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
|
|
implementation 'br.com.zbra:android-linq:1.1.0'
|
|
//FAB
|
|
//implementation 'com.getbase:floatingactionbutton:1.10.1'
|
|
implementation 'com.github.clans:fab:1.6.4'
|
|
//CUSTOM VIEWS
|
|
implementation 'de.hdodenhof:circleimageview:2.2.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.12'
|
|
implementation project(':waterfall_toolbar')
|
|
implementation 'com.mikhaellopez:lazydatepicker:1.0.0'
|
|
implementation 'com.github.demoNo:AutoScrollViewPager:v1.0.2'
|
|
|
|
//AppUpdate
|
|
implementation 'com.github.javiersantos:AppUpdater:2.7'
|
|
|
|
|
|
//Barcode
|
|
implementation project(':pointmobilescannerlibrary')
|
|
implementation project(path: ':barcode_base_library')
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|