3 Commits

Author SHA1 Message Date
3d1e240e6c Add versioned APK naming for Obtanium detection 2026-07-27 11:49:05 -06:00
73e8b7a08b Bump version to 1.0.2, increase tab icons size 2026-07-27 11:43:23 -06:00
cf29dc3af0 Increase tab icons size 2026-07-27 11:39:02 -06:00
2 changed files with 14 additions and 4 deletions

View File

@@ -11,8 +11,8 @@ android {
applicationId "com.recordatorios.app"
minSdk 26
targetSdk 34
versionCode 1
versionName "1.0"
versionCode 3
versionName "1.0.2"
}
buildTypes {
@@ -20,6 +20,17 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
applicationIdSuffix ".debug"
}
}
applicationVariants.all { variant ->
variant.outputs.all { output ->
def version = variant.versionName
def name = variant.buildType.name
outputFileName = "Reminder-app-v${version}-${name}.apk"
}
}
compileOptions {

View File

@@ -25,8 +25,7 @@
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_height="52dp"
android:background="?attr/colorPrimaryContainer"
app:tabTextColor="?attr/colorOnPrimaryContainer"
app:tabSelectedTextColor="?attr/colorOnPrimaryContainer"