2 Commits

Author SHA1 Message Date
a9ee62c3f9 Remove applicationIdSuffix, bump version to 1.0.3 2026-07-27 11:52:20 -06:00
3d1e240e6c Add versioned APK naming for Obtanium detection 2026-07-27 11:49:05 -06:00

View File

@@ -11,8 +11,8 @@ android {
applicationId "com.recordatorios.app"
minSdk 26
targetSdk 34
versionCode 2
versionName "1.0.1"
versionCode 4
versionName "1.0.3"
}
buildTypes {
@@ -22,6 +22,14 @@ android {
}
}
applicationVariants.all { variant ->
variant.outputs.all { output ->
def version = variant.versionName
def name = variant.buildType.name
outputFileName = "Reminder-app-v${version}-${name}.apk"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8