Skip to content

Commit

Permalink
chip padding
Browse files Browse the repository at this point in the history
  • Loading branch information
zachvlat committed Sep 16, 2024
1 parent d0f2de9 commit b02d055
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId = "com.zachvlat.gamelibrary"
minSdk = 27
targetSdk = 34
versionCode = 6
versionName = "1.7.0"
versionCode = 8
versionName = "1.7.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Binary file added app/release/app-release.apk
Binary file not shown.
Binary file added app/release/baselineProfiles/0/app-release.dm
Binary file not shown.
Binary file added app/release/baselineProfiles/1/app-release.dm
Binary file not shown.
37 changes: 37 additions & 0 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"version": 3,
"artifactType": {
"type": "APK",
"kind": "Directory"
},
"applicationId": "com.zachvlat.gamelibrary",
"variantName": "release",
"elements": [
{
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 8,
"versionName": "1.7.1",
"outputFile": "app-release.apk"
}
],
"elementType": "File",
"baselineProfiles": [
{
"minApi": 28,
"maxApi": 30,
"baselineProfiles": [
"baselineProfiles/1/app-release.dm"
]
},
{
"minApi": 31,
"maxApi": 2147483647,
"baselineProfiles": [
"baselineProfiles/0/app-release.dm"
]
}
],
"minSdkVersionForDexing": 27
}
4 changes: 2 additions & 2 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
android:id="@+id/chipGroup"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:layout_margin="1dp"
app:singleSelection="false"
app:chipSpacing="4dp"
app:chipSpacing="1dp"
app:layout_constraintTop_toBottomOf="@id/searchView"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
Expand Down
10 changes: 5 additions & 5 deletions app/src/main/res/layout/item_game.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
android:text="@string/sources" />

<!-- Game Critic Score -->
<TextView
android:id="@+id/tvCriticScore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/critic_score" />
<!-- <TextView-->
<!-- android:id="@+id/tvCriticScore"-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:text="@string/critic_score" />-->

<View
android:layout_width="match_parent"
Expand Down

0 comments on commit b02d055

Please sign in to comment.