From e1d18265d1046d18ba590f1d2846716513669411 Mon Sep 17 00:00:00 2001 From: Joe Tretter Date: Fri, 24 Apr 2026 20:36:30 -0500 Subject: [PATCH] Auto-commit after successful build: improve build setup Changed files:\napp/build.gradle.kts app/src/main/AndroidManifest.xml app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml app/src/main/res/mipmap/ic_launcher.xml app/src/main/res/mipmap/ic_launcher_round.xml app/src/main/res/values/colors.xml --- app/build.gradle.kts | 4 ++-- app/src/main/AndroidManifest.xml | 4 ++-- app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml | 5 +++++ app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml | 5 +++++ app/src/main/res/mipmap/ic_launcher.xml | 4 ++++ app/src/main/res/mipmap/ic_launcher_round.xml | 4 ++++ app/src/main/res/values/colors.xml | 4 ++++ 7 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 app/src/main/res/mipmap/ic_launcher.xml create mode 100644 app/src/main/res/mipmap/ic_launcher_round.xml create mode 100644 app/src/main/res/values/colors.xml diff --git a/app/build.gradle.kts b/app/build.gradle.kts index c3e20f9..f1a0f88 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -19,8 +19,8 @@ android { applicationId = "solutions.tretter.githugandroid" minSdk = 26 targetSdk = 34 - versionCode = 92 - versionName = "0.1.91" + versionCode = 93 + versionName = "0.1.92" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index e3043eb..e221f3e 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -5,9 +5,9 @@ android:allowBackup="true" android:extractNativeLibs="true" android:fullBackupContent="@xml/backup_rules" - android:icon="@android:drawable/sym_def_app_icon" + android:icon="@mipmap/ic_launcher" android:label="@string/app_name" - android:roundIcon="@android:drawable/sym_def_app_icon" + android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.GithugAndroid"> + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..37ffe47 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap/ic_launcher.xml b/app/src/main/res/mipmap/ic_launcher.xml new file mode 100644 index 0000000..84ae5ad --- /dev/null +++ b/app/src/main/res/mipmap/ic_launcher.xml @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/app/src/main/res/mipmap/ic_launcher_round.xml b/app/src/main/res/mipmap/ic_launcher_round.xml new file mode 100644 index 0000000..84ae5ad --- /dev/null +++ b/app/src/main/res/mipmap/ic_launcher_round.xml @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..89d6d6b --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,4 @@ + + + #111111 + \ No newline at end of file