Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a9ee62c3f9 | |||
| 3d1e240e6c | |||
| 73e8b7a08b | |||
| cf29dc3af0 |
@@ -11,8 +11,8 @@ android {
|
|||||||
applicationId "com.recordatorios.app"
|
applicationId "com.recordatorios.app"
|
||||||
minSdk 26
|
minSdk 26
|
||||||
targetSdk 34
|
targetSdk 34
|
||||||
versionCode 1
|
versionCode 4
|
||||||
versionName "1.0"
|
versionName "1.0.3"
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
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 {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
|||||||
@@ -25,8 +25,7 @@
|
|||||||
|
|
||||||
<com.google.android.material.tabs.TabLayout
|
<com.google.android.material.tabs.TabLayout
|
||||||
android:id="@+id/tabLayout"
|
android:id="@+id/tabLayout"
|
||||||
android:layout_width="match_parent"
|
android:layout_height="52dp"
|
||||||
android:layout_height="40dp"
|
|
||||||
android:background="?attr/colorPrimaryContainer"
|
android:background="?attr/colorPrimaryContainer"
|
||||||
app:tabTextColor="?attr/colorOnPrimaryContainer"
|
app:tabTextColor="?attr/colorOnPrimaryContainer"
|
||||||
app:tabSelectedTextColor="?attr/colorOnPrimaryContainer"
|
app:tabSelectedTextColor="?attr/colorOnPrimaryContainer"
|
||||||
|
|||||||
Reference in New Issue
Block a user