Skip to content

Commit 6d7ad3e

Browse files
committed
1.0.9
1 parent 680e7b7 commit 6d7ad3e

5 files changed

Lines changed: 13 additions & 10 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## Gradle
88

99
```
10-
implementation 'com.vmos:sample-kit:1.0.8'
10+
implementation 'com.vmos:sample-kit:1.0.9'
1111
```
1212

1313

app/src/main/res/values/themes.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,4 @@
1414
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item>
1515
<!-- Customize your theme here. -->
1616
</style>
17-
18-
<style name="RoundedAppLogo">
19-
<item name="cornerFamily">rounded</item>
20-
<item name="cornerSize">12dp</item>
21-
</style>
2217
</resources>

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ ext {
1414
targetSdkVersion = 33
1515
compileSdkVersion = 33
1616

17-
versionCode = 8
18-
versionName = "1.0.8"
17+
versionCode = 9
18+
versionName = "1.0.9"
1919
groupId = 'com.vmos'
2020
description = 'android sample kit'
2121
gitUrl = 'https://github.com/vmos-dev/sample-kit'

sample-kit/src/main/res/layout/sample_item_installed.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222

2323

2424
<com.google.android.material.imageview.ShapeableImageView
25-
app:shapeAppearance="@style/RoundedAppLogo"
25+
app:shapeAppearance="@style/SampleRoundedAppLogo"
2626
android:id="@+id/iv_logo"
2727
android:background="@android:color/white"
2828
android:layout_width="44dp"
2929
android:layout_height="44dp"
3030
app:layout_constraintEnd_toEndOf="parent"
3131
app:layout_constraintStart_toStartOf="parent"
3232
app:layout_constraintTop_toTopOf="parent"
33-
tools:src="@mipmap/ic_launcher" />
33+
tools:src="@android:color/holo_green_light" />
3434

3535
<TextView
3636
android:id="@+id/tv_create_time"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<resources>
2+
3+
<style name="SampleRoundedAppLogo">
4+
<item name="cornerFamily">rounded</item>
5+
<item name="cornerSize">20%</item>
6+
</style>
7+
8+
</resources>

0 commit comments

Comments
 (0)