找回密码
 立即注册
查看: 474|回复: 0

unity android快速设置app icon

[复制链接]
发表于 2021-7-16 12:42 | 显示全部楼层 |阅读模式
一:需求
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 变了

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Unity开发者联盟 ( 粤ICP备20003399号 )

GMT+8, 2024-11-15 11:18 , Processed in 0.090146 second(s), 26 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表