lam bui
11/02/2023, 10:25 AMlam bui
11/02/2023, 10:26 AMmarlonlom
11/02/2023, 8:00 PMlam bui
11/03/2023, 2:00 AMandroid {
namespace "com.everfit"
compileSdk 34
publishNonDefault true
defaultConfig {
applicationId "com.everfit"
minSdk 30
targetSdk 34
versionCode 1
versionName "1.0"
vectorDrawables {
useSupportLibrary true
}
flavorDimensions "debug"
}
productFlavors {
MainApp {
applicationId "com.everfit"
}
}
buildTypes {
debug {
applicationIdSuffix ".debug"
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), '<http://proguard-rules.pro|proguard-rules.pro>'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.3.2'
}
packagingOptions {
resources {
excludes += '/META-INF/{AL2.0,LGPL2.1}'
}
}
}
configurations {
mainAppDebug
mainAppRelease
}
dependencies {
implementation fileTree(dir: 'libs', include: '*.aar')
mainAppDebug project(path: ':everfit-wear', configuration: 'MainAppDebug')
mainAppRelease project(path: ':everfit-wear', configuration: 'MainAppRelease')
}
lam bui
11/03/2023, 2:01 AMlam bui
11/03/2023, 2:04 AMandroid {
productFlavors {
MainApp {
applicationId = "com.everfit"
versionName "3.20.1"
versionCode 3046
buildConfigField "boolean", "IS_WHITE_LABEL", "false"
}
defaultConfig {
minSdkVersion 23
targetSdkVersion android_target_sdk_version
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
renderscriptTargetApi 23
renderscriptSupportModeEnabled true
flavorDimensions "debug"
}
buildTypes {
debug {
applicationIdSuffix '.debug'
multiDexKeepFile file('multidex-config.txt')
resValue "string", "app_name", "@string/app_name_debug"
mappingFileUploadEnabled false
}
}
}
release {
}
lam bui
11/13/2023, 8:58 AM