Skip to content

Commit 79ebf3a

Browse files
committed
update launcher icon, version, screenshots
1 parent 8d56f69 commit 79ebf3a

23 files changed

Lines changed: 14 additions & 8 deletions

app/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
tasks.dokkaGfm.configure {
9-
outputDirectory.set(buildDir.resolve("../../documentation/reference"))
9+
outputDirectory.set(file(layout.buildDirectory.dir("../../documentation/reference")))
1010
dokkaSourceSets {
1111
named("main") {
1212
skipDeprecated.set(true)
@@ -19,7 +19,7 @@ tasks.dokkaGfm.configure {
1919
}
2020

2121
tasks.register("genDocs") {
22-
val ref = buildDir.resolve("../../documentation/reference")
22+
val ref = layout.buildDirectory.dir("../../documentation/reference")
2323
delete(ref)
2424
dependsOn("dokkaGfm")
2525
doLast {
@@ -39,8 +39,8 @@ android {
3939
applicationId = "com.fredhappyface.ewesticker"
4040
minSdk = 26
4141
targetSdk = 33
42-
versionCode = 20230824
43-
versionName = "20230824"
42+
versionCode = 20230825
43+
versionName = "20230825"
4444
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
4545
setProperty("archivesBaseName", "$applicationId-$versionName")
4646
}
27.9 KB
Loading

app/src/main/res/layout/activity_main.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
android:background="@color/accent"
1919
app:collapsedTitleTextAppearance="@style/ToolbarTitleTextAppearance"
2020
app:expandedTitleTextAppearance="@style/ToolbarTitleTextAppearance"
21+
app:collapsedTitleTextColor="@color/onAccent"
22+
app:expandedTitleTextColor="@color/onAccent"
2123
app:title=" EweSticker">
2224

2325
<View
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3-
<background android:drawable="@color/ic_launcher_background" />
4-
<foreground android:drawable="@mipmap/ic_launcher_foreground" />
3+
<background android:drawable="@color/ic_launcher_background"/>
4+
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
55
</adaptive-icon>
1.03 KB
Loading
480 Bytes
Loading
1.69 KB
Loading
1.98 KB
Loading
5.46 KB
Loading
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3-
<color name="ic_launcher_background">#0FA9A8</color>
3+
<color name="ic_launcher_background">#0FA9A8</color>
44
</resources>

0 commit comments

Comments
 (0)