78 lines
2.3 KiB
Groovy
78 lines
2.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
useLibrary 'org.apache.http.legacy'
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "com.verdnatura.verdnaturaventas"
|
|
minSdkVersion 19
|
|
targetSdkVersion 27
|
|
versionCode 82
|
|
versionName "1.8.6"
|
|
multiDexEnabled true
|
|
|
|
}
|
|
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
res.srcDirs =
|
|
[
|
|
'src/main/res',
|
|
'src/main/res/layouts/activities',
|
|
'src/main/res/layouts/fragments',
|
|
'src/main/res/layouts/dialogs',
|
|
'src/main/res/layouts/items',
|
|
'src/main/res/layouts/navigations',
|
|
'src/main/res/layouts/other',
|
|
'src/main/res/layouts/toolbar',
|
|
'src/main/res/layouts'
|
|
]
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
api fileTree(include: ['*.jar'], dir: 'libs')
|
|
//noinspection GradleCompatible
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'com.getbase:floatingactionbutton:1.6.0'
|
|
implementation 'me.dm7.barcodescanner:zbar:+'
|
|
implementation 'com.github.ksoichiro:android-observablescrollview:1.5.0'
|
|
implementation 'com.nineoldandroids:library:2.4.0'
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
implementation 'com.github.chrisbanes:PhotoView:+'
|
|
implementation project(':baselibrary')
|
|
implementation files('libs/activation.jar')
|
|
implementation files('libs/acra-4.5.0.jar')
|
|
implementation files('libs/additionnal.jar')
|
|
implementation files('libs/mail.jar')
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
implementation 'com.google.code.gson:gson:2.2.4'
|
|
implementation 'com.google.firebase:firebase-core:16.0.1'
|
|
implementation 'com.google.firebase:firebase-messaging:17.3.1'
|
|
implementation 'com.google.firebase:firebase-firestore:15.0.0'
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|