试图为一个类构建一个Android应用程序.我一直在标题中得到错误.这是我的表现:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="Grille.play.webapp_1"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="Grille.play.webapp_1.War"
android:configChanges="orientation"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="Grille.play.webapp_1.Jabbawocky"
android:configChanges="orientation"
android:label="@string/title_activity_jabbawocky"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="Grille.play.webapp_1.NASA"
android:configChanges="orientation"
android:label="@string/title_activity_nas"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="Grille.play.webapp_1.Roundball"
android:configChanges="orientation"
android:label="@string/title_activity_roundball"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Run Code Online (Sandbox Code Playgroud)
我不知道问题出在哪里.如果我不能解决这个问题,我即将重新开始,但我想了解所以我将来不会搞砸.
| 归档时间: |
|
| 查看次数: |
4091 次 |
| 最近记录: |