mirror of
https://gitea.winboll.cc/ZhanGSKen/MyWinBoLL.git
synced 2026-08-24 01:35:53 +08:00
设置应用图标配置规则,区分beta图标stage图标。
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
#Created by .winboll/winboll_app_build.gradle
|
||||
#Mon Jul 20 19:20:48 HKT 2026
|
||||
#Sat Aug 22 23:17:22 GMT 2026
|
||||
stageCount=19
|
||||
libraryProject=
|
||||
baseVersion=15.0
|
||||
publishVersion=15.0.18
|
||||
buildCount=0
|
||||
buildCount=3
|
||||
baseBetaVersion=15.0.19
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools" >
|
||||
|
||||
<application>
|
||||
<application tools:replace="android:icon"
|
||||
android:icon="@drawable/ic_my_gallery_beta">
|
||||
|
||||
<!-- Put flavor specific code here -->
|
||||
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:icon="@drawable/ic_my_gallery"
|
||||
android:roundIcon="@drawable/ic_my_gallery"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/GalleryTheme"
|
||||
android:resizeableActivity="true"
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:clickable="true">
|
||||
<item
|
||||
android:left="0dp"
|
||||
android:top="0dp"
|
||||
android:right="0dp"
|
||||
android:bottom="0dp"
|
||||
android:drawable="@drawable/my_gallery_blankbackground"/>
|
||||
</layer-list>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:clickable="true">
|
||||
<item android:drawable="@drawable/ic_launcher_background"/>
|
||||
<item
|
||||
android:left="0dp"
|
||||
android:top="0dp"
|
||||
android:right="0dp"
|
||||
android:bottom="0dp"
|
||||
android:drawable="@drawable/my_gallery_blankbackground"/>
|
||||
</layer-list>
|
||||
Reference in New Issue
Block a user