91 lines
2.9 KiB
Groovy
91 lines
2.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '28.0.3'
|
|
defaultConfig {
|
|
applicationId "it.integry.integrywmsnative"
|
|
minSdkVersion 21
|
|
targetSdkVersion 27
|
|
versionCode 1
|
|
versionName "1.0"
|
|
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(dir: 'libs', include: ['*.jar'])
|
|
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:27.1.1'
|
|
implementation 'com.android.support:support-v4:27.1.1'
|
|
implementation 'com.android.support:design:27.1.1'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
implementation 'com.android.support:cardview-v7:27.1.1'
|
|
implementation 'com.android.support:recyclerview-v7:27.1.1'
|
|
implementation 'com.android.support:preference-v7:27.1.1'
|
|
|
|
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'
|
|
|
|
//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'
|
|
|
|
implementation 'de.hdodenhof:circleimageview:2.2.0'
|
|
|
|
implementation 'com.fxn769:stash:1.2'
|
|
|
|
implementation 'net.cachapa.expandablelayout:expandablelayout:2.9.2'
|
|
implementation 'com.github.frankiesardo:linearlistview:1.0.1@aar'
|
|
|
|
|
|
implementation 'com.fede987:status-bar-alert:1.0.1'
|
|
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|