我已经安装了我目前在华硕平板电脑上运行的 Android 应用程序,运行 4.0.3
但是,我一定是不小心删除了 Manifest.xml 中的某些内容,因为 app 图标下方没有任何文字。换句话说,应用程序名称没有出现在我设备上的应用程序图标下方,因此,它在“所有应用程序”屏幕中的错误位置进行了排序。
这是我的清单的相关部分:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="tra.games.mytaboo"
android:versionCode="1"
android:versionName="1.2.1" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="Taboo"
android:theme="@style/AppTheme" >
.....
我错过了什么?