LiteralliJeff 发表于 2021-7-16 12:42

unity android快速设置app icon

一:需求
unity和 android 的设置app icon 的方法太麻烦 需要简化操作 最好拖入即可
二:实现
1.我们在在Plugins/Android 下面 创建res文件夹
2.我们模仿 unity 打包是自动产生的 icon 文件夹 复制到res目录下


icon 文件夹

3.创建好了后 我们把对应的icon 放入即可
ic_launcher 是方图标ic_launcher_round 是圆图标


icon


方icon

4我们在android 的设置界面选中Publishing Settings

android设置界面


导出的Manifset

5我们打开Plugins/Android 下的LauncherManifest.xml文件
添加
android:icon="@mipmap/ic_launcher" 方图标
android:roundIcon="@mipmap/ic_launcher_round"圆图标
<?xml version="1.0" encoding="utf-8"?><!-- GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN--><manifest    xmlns:android="http://schemas.android.com/apk/res/android"    package="com.unity3d.player"    xmlns:tools="http://schemas.android.com/tools"    android:installLocation="preferExternal">    <supports-screens      android:smallScreens="true"      android:normalScreens="true"      android:largeScreens="true"      android:xlargeScreens="true"      android:anyDensity="true"/>    <application android:extractNativeLibs="true"               android:label="@string/app_name"               android:icon="@mipmap/ic_launcher"               android:roundIcon="@mipmap/ic_launcher_round"/></manifest>
6.然后用unity 进行打包就会发现app icon 变了
页: [1]
查看完整版本: unity android快速设置app icon