facebook twitter hatena line email

「Unity/多言語化/Androidのアプリ名」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==Androidのアプリタイトルの多言語化== Assets/Plugins/Android/res/values-ja/strings.xml <pre> <?xml version="1.0" encoding="utf-8"?> <resources> <string n...」)
 
(Androidのアプリタイトルの多言語化)
行1: 行1:
==Androidのアプリタイトルの多言語化==
+
==Androidのアプリタイトルの多言語化対応方法==
 
Assets/Plugins/Android/res/values-ja/strings.xml
 
Assets/Plugins/Android/res/values-ja/strings.xml
 
<pre>
 
<pre>
行7: 行7:
 
</resources>
 
</resources>
 
</pre>
 
</pre>
 +
 +
===Assets/Plugins/Android/res was removedエラーが出る問題===
 +
エラー詳細
 +
Providing Android resources in Assets/Plugins/Android/res was removed, 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.
 +
 +
#res内のmetaを削除して、
 +
#resをzip化して、res.arrへリネーム

2022年8月17日 (水) 02:36時点における版

Androidのアプリタイトルの多言語化対応方法

Assets/Plugins/Android/res/values-ja/strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">タイトル1</string>
</resources>

Assets/Plugins/Android/res was removedエラーが出る問題

エラー詳細

Providing Android resources in Assets/Plugins/Android/res was removed, 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.
  1. res内のmetaを削除して、
  2. resをzip化して、res.arrへリネーム