Unity - 记录打包成android,处理应用名多语言

Unity版本:2019.4.5f1,本文实现的多语言为简体中文,繁体中文

前言:

如下图所示,在PlayerSettings里面只能设置基础的应用名;


下面记录我在Unity打包成android时,实现应用名的本地化的过程:

方式一(未成功):在Assets/Plugins/Android/目录下添加res

首先要了解,我们配置的默认应用名在导成android时会在src→main→res→values目录下生成strings.xml文件



strings.xml文件内容如下:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">My Game</string>
</resources>

因此,我们只需要依照android多语言的方式,在src→main→res目录下添加:values-zh-rCN,values-zh-rTW(我这里只添加繁体和简体中文,更多语言请自行查找android的对应语言代码),并分别创建strings.xml文件,内容如下:

  • values-zh-rCN
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">我的游戏</string>
</resources>
  • values-zh-rTW
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">我的遊戲</string>
</resources>

在unity工程中,我们只需要Plugins→Android目录下创建res目录,其里面内容如下:



如此之后打包确并没有成功,并有如下警告信息:

OBSOLETE - Providing Android resources in Assets/Plugins/Android/res is deprecated, please move your resources to an AAR or an Android Library. 
See "AAR plug-ins and Android Libraries" section of the Manual for more details.
UnityEditor.BuildPlayerWindow:BuildPlayerAndRun() (at /Users/builduser/buildslave/unity/build/Editor/Mono/BuildPlayerWindow.cs:136)

由该警告可知,直接添加 Assets/Plugins/Android/res的方式已经被放弃了,需要打包成aar,由此引出方式二。
参考链接:Unity Android应用名称的国际化

方式二:打包res到aar

这一步需要了解较多android知识,这里简要描述下:
1.创建android工程,添加module
2.在module的创建values-zh-rCN,values-zh-rTW目录和语言文件
3.将module打包成aar
4.将aar拷贝到Assets/Plugins/Android/目录下

我在项目中使用了I2 Localization实现多语言,当时没有了解I2 Localization机制,和其产生了冲突,导致部分语言未生效

方式三:在Assets/Plugins/Android/目录下添加res,同时在 build.gradle使用task

1.添加res目录(过程同方法一)
2.在Bulid Settings → Player Settings → Android → Publishing Settings 中勾选Custom Launcher Gradle Templ:


image.png

3.在生成的launcherTemplate.gradle文件末尾添加如下代码(使用task在编译时将前面添加的res目录复制到正确的地址):

task localizeAppName(type: Copy) {
    from("${project.rootDir}/unityLibrary/unity-android-resources/res/") {
        include "**"
    }
    into "${project.projectDir}/src/main/res/"
}

preBuild.dependsOn(localizeAppName)

同样由于使用了I2 Localization,导致部分语言未生效,这里可以通过类似如下的代码删除I2 Localization生成的strings.xml文件:
注意: 1.我这里只针对自己项目移除了简体中文和繁体中文
         2.如果strings.xml未能成功移除,在需要将工程导出成Android项目,找到正确的文件路径进行移除

/* 删除自动生成的多余values-zh-rCN */
task appNameDeleteCN(type: Delete) {
    delete "${project.projectDir}/src/main/res/values-zh-rCN/strings.xml"
    delete "${project.projectDir}/src/main/res/values-zh-rTW/strings.xml"
}

preBuild.dependsOn(appNameDeleteCN)

参考链接:Unity2018 设置 Android 程序名称的多语言

方式四:参考I2 Localization,在unity中动态生成strings.xml

这里不多赘述了,直接贴出其PostProcessBuild_Android类

#if UNITY_ANDROID
using UnityEditor.Callbacks;
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEngine;

namespace I2.Loc
{
   public class PostProcessBuild_Android
   {
        // Post Process Scene is a hack, because using PostProcessBuild will be called after the APK is generated, and so, I didn't find a way to copy the new files
        [PostProcessScene]
        public static void OnPostProcessScene()
        {
            #if UNITY_4_6 || UNITY_4_7 || UNITY_4_8 || UNITY_4_9 || UNITY_5_0 || UNITY_5_1 || UNITY_5_2
                bool isFirstScene = (EditorBuildSettings.scenes.Length>0 && EditorBuildSettings.scenes[0].path == EditorApplication.currentScene);
            #else
                bool isFirstScene = UnityEngine.SceneManagement.SceneManager.GetActiveScene().buildIndex <= 0;
            #endif

            if (!EditorApplication.isPlayingOrWillChangePlaymode &&
                (EditorUserBuildSettings.activeBuildTarget == BuildTarget.Android) &&
                isFirstScene)
            {
                string projPath = System.IO.Path.GetFullPath(Application.streamingAssetsPath + "/../../Temp/StagingArea");
                //string projPath = System.IO.Path.GetFullPath(Application.dataPath+ "/Plugins/Android");
                PostProcessAndroid(BuildTarget.Android, projPath);
            }
        }

        //[PostProcessBuild(10000)]
        public static void PostProcessAndroid(BuildTarget buildTarget, string pathToBuiltProject)
      {
         if (buildTarget!=BuildTarget.Android)
            return;

            if (LocalizationManager.Sources.Count <= 0)
            LocalizationManager.UpdateSources();

            // Get language with variants, but also add it without the variant to allow fallbacks (e.g. en-CA also adds en)
         var langCodes = LocalizationManager.GetAllLanguagesCode(false).Concat( LocalizationManager.GetAllLanguagesCode(true) ).Distinct().ToList();

         if (langCodes.Count <= 0)
            return;
         string stringXML =  "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"+
                        "<resources>\n"+
                        "    <string name=\"app_name\">{0}</string>\n"+
                        "</resources>";

            SetStringsFile( pathToBuiltProject+"/res/values", "strings.xml", stringXML, LocalizationManager.GetAppName(langCodes[0]) );


         var list = new List<string>();
         list.Add( pathToBuiltProject + "/res/values" );
         foreach (var code in langCodes)
         {
                // Android doesn't use zh-CN or zh-TW, instead it uses: zh-rCN, zh-rTW, zh
                string fixedCode = code;
                if (fixedCode.StartsWith("zh", System.StringComparison.OrdinalIgnoreCase))
                {
                    string googleCode = GoogleLanguages.GetGoogleLanguageCode(fixedCode);
                    if (googleCode==null) googleCode = fixedCode;
                    fixedCode = (googleCode == "zh-CN") ? "zh-CN" : googleCode;
                }
            fixedCode = fixedCode.Replace("-", "-r");

                string dir = pathToBuiltProject + "/res/values-" + fixedCode;

                SetStringsFile( dir, "strings.xml", stringXML, LocalizationManager.GetAppName(code) );
         }
      }

      static void CreateFileIfNeeded ( string folder, string fileName, string text )
      {
         try
         {
            if (!System.IO.Directory.Exists( folder ))
               System.IO.Directory.CreateDirectory( folder );

            if (!System.IO.File.Exists( folder + "/"+fileName ))
               System.IO.File.WriteAllText( folder + "/"+fileName, text );
         }
         catch (System.Exception e)
         {
            Debug.Log( e );
         }
      }

        static void SetStringsFile(string folder, string fileName, string stringXML, string appName)
        {
            try
            {
                appName = appName.Replace("&", "&amp;").Replace("<", "&lt;").Replace(">", "&gt;").Replace("\"", "\\\"").Replace("'", "\\'");
                appName = appName.Replace("\r\n", string.Empty).Replace("\n", string.Empty).Replace("\r", string.Empty);

                if (!System.IO.Directory.Exists(folder))
                    System.IO.Directory.CreateDirectory(folder);

                if (!System.IO.File.Exists(folder + "/" + fileName))
                {
                    // create the string file if it doesn't exist
                    stringXML = string.Format(stringXML, appName);
                }
                else
                {
                    stringXML = System.IO.File.ReadAllText(folder + "/" + fileName);
                    // find app_name
                    var pattern = "\"app_name\">(.*)<\\/string>";
                    var regexPattern = new System.Text.RegularExpressions.Regex(pattern);
                    if (regexPattern.IsMatch(stringXML))
                    {
                        // Override the AppName if it was found
                        stringXML = regexPattern.Replace(stringXML, string.Format("\"app_name\">{0}</string>", appName));
                    }
                    else
                    {
                        // insert the appName if it wasn't there
                        int idx = stringXML.IndexOf("<resources>");
                        if (idx > 0)
                            stringXML = stringXML.Insert(idx + "</resources>".Length, string.Format("\n    <string name=\"app_name\">{0}</string>\n", appName));
                    }
                }
                System.IO.File.WriteAllText(folder + "/" + fileName, stringXML);
            }
            catch (System.Exception e)
            {
                Debug.Log(e);
            }
        }
    }
}
#endif
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容

  • 应用程序根据系统设置语言实现多语言适配 应用程序默认只要配置不同语言的文件,在启动应用时都会根据系统语言而加载对应...
    dingyx阅读 25,597评论 5 26
  • 1、字符串本地化如何工作 默认情况下,Android将英语作为主要语言并加载string资源从res⇒values...
    Kotyo阅读 2,072评论 3 8
  • 添加多语言资源文件 第一步: 第二步: 第三步: 第四步: 第五步: 以上步骤仅仅是添加values-zh-rCN...
    CQ_TYL阅读 3,560评论 0 6
  • 夜莺2517阅读 127,718评论 1 9
  • 版本:ios 1.2.1 亮点: 1.app角标可以实时更新天气温度或选择空气质量,建议处女座就不要选了,不然老想...
    我就是沉沉阅读 6,887评论 1 6