Fix crash: add missing layout_width to TabLayout, bump to 1.0.4

This commit is contained in:
2026-07-27 11:56:15 -06:00
parent a9ee62c3f9
commit 918139aa4e
2 changed files with 3 additions and 2 deletions

View File

@@ -11,8 +11,8 @@ android {
applicationId "com.recordatorios.app"
minSdk 26
targetSdk 34
versionCode 4
versionName "1.0.3"
versionCode 5
versionName "1.0.4"
}
buildTypes {

View File

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