Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 43e036e

Browse files
committed
v2.4.0
- time, date, number pickers - theme dynamic drawables (oui3/4) - icons++ - improvements & bug/crash fixes
1 parent 8fe9e2b commit 43e036e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android {
1010
applicationId "de.dlyt.yanndroid.oneuiexample"
1111
minSdkVersion 21
1212
targetSdkVersion 30
13-
versionCode = VERSION_CODE
13+
versionCode = VERSION_CODE.toInteger()
1414
versionName = VERSION_NAME
1515

1616
vectorDrawables.useSupportLibrary = true

app/release/app-release.apk

-2.03 MB
Binary file not shown.

app/release/output-metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"type": "SINGLE",
1212
"filters": [],
1313
"attributes": [],
14-
"versionCode": 57,
15-
"versionName": "2.3.0",
14+
"versionCode": 10,
15+
"versionName": "2.4.0",
1616
"outputFile": "app-release.apk"
1717
}
1818
],

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
22
android.useAndroidX=true
33
android.enableJetifier=true
44
# version
5-
VERSION_NAME=2.3.0
6-
VERSION_CODE=9
5+
VERSION_NAME=2.4.0
6+
VERSION_CODE=10
77
# mavenCentral
88
GROUP_ID=io.github.yanndroid
99
ARTIFACT_ID=oneui

yanndroid/oneui/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ android {
6969
defaultConfig {
7070
minSdkVersion 21
7171
targetSdkVersion 30
72-
versionCode = VERSION_CODE
72+
versionCode = VERSION_CODE.toInteger()
7373
versionName = VERSION_NAME
7474

7575
vectorDrawables.useSupportLibrary = true

0 commit comments

Comments
 (0)