mid commit

This commit is contained in:
2023-02-13 18:40:18 +00:00
parent beaabecd66
commit 5685da9c92
152 changed files with 1876 additions and 2853 deletions

View File

@@ -14,11 +14,11 @@ repositories {
}
android {
compileSdkVersion 28
compileSdkVersion 30
defaultConfig {
applicationId "h_mal.appttude.com.driver"
applicationId "h_mal.appttude.com"
minSdkVersion 24
targetSdkVersion 28
targetSdkVersion 30
versionCode 6
versionName "1.6"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
@@ -37,6 +37,31 @@ android {
jvmTarget = "1.8"
}
flavorDimensions "Default"
productFlavors {
driver {
applicationIdSuffix ".driver"
versionCode 6
versionName "1.0.5"
}
admin {
applicationIdSuffix ".driver_admin"
versionCode 4
versionName "0.0.5"
}
}
sourceSets {
driver {
manifest {
srcFile 'src/driver/AndroidManifest.xml'
}
}
admin {
manifest {
srcFile 'src/driver_admin/AndroidManifest.xml'
}
}
}
}
dependencies {
@@ -60,6 +85,7 @@ dependencies {
androidTestImplementation "androidx.test.ext:junit:1.1.1"
androidTestImplementation "androidx.test.espresso:espresso-core:3.1.0"
androidTestImplementation "androidx.test:rules:1.1.1"
implementation 'androidx.test.espresso:espresso-idling-resource:3.1.1'
implementation "androidx.legacy:legacy-support-v4:1.0.0"
// Google play services
@@ -89,4 +115,8 @@ dependencies {
/* Image Carousal */
implementation 'com.synnapps:carouselview:0.1.5'
/ * Glide */
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
}