2

我试图用我的语言创建应用程序名称,但我从 android 清单标签属性包中收到错误字符“�”。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.chơi"
    android:versionCode="1"
    android:versionName="1.0" >

有没有人可以帮助我解决这个错误,我尝试了谷歌,但没有显示任何积极的结果。

4

3 回答 3

2

Don'tspecial character在你的包名中使用任何。中仅使用简单的英文字符manifest

于 2013-05-13T10:55:46.307 回答
1

像这样更改清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.choi"
android:versionCode="1"
android:versionName="1.0" >

更改包名中的特殊字符,并给出 o

运行后..它将成功编译

于 2013-05-13T11:15:29.600 回答
0

在你的包名中,你有这个词:“chơi”,可能带有印度字母字符!

您可以将“ơ”更改为“o”。

或尝试将其替换为 unicode 字符:\u01A1

于 2013-05-13T10:58:15.600 回答