51 lines
1.7 KiB
Groovy
51 lines
1.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion '27.0.3'
|
|
defaultConfig {
|
|
applicationId "it.integry.integrywmsnative"
|
|
minSdkVersion 21
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
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 'com.android.support:appcompat-v7:26.1.0'
|
|
implementation 'com.android.support:support-v4:26.1.0'
|
|
implementation 'com.android.support:design:26.1.0'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
implementation 'com.android.support:cardview-v7:26.1.0'
|
|
implementation 'com.android.support:recyclerview-v7:26.1.0'
|
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.0.0'
|
|
|
|
implementation 'com.jakewharton:butterknife:8.8.1'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
|
|
|
|
//implementation 'com.getbase:floatingactionbutton:1.10.1'
|
|
implementation 'com.github.clans:fab:1.6.4'
|
|
|
|
implementation 'de.hdodenhof:circleimageview:2.2.0'
|
|
|
|
implementation 'com.mahc.custombottomsheetbehavior:googlemaps-like:0.9.1'
|
|
implementation 'com.sothree.slidinguppanel:library:3.4.0'
|
|
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
}
|