Android 运行时异常无法在emulator中运行应用程序

Android 运行时异常无法在emulator中运行应用程序,android,eclipse,Android,Eclipse,我无法在emulator中运行我的应用程序 我的androidManifest.xml文件是 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ch.adiuvaris.enigma"android:versionCode="1" android:versionName="1.0" > &l

我无法在emulator中运行我的应用程序

我的androidManifest.xml文件是

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ch.adiuvaris.enigma"android:versionCode="1" android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/appName" >
    <activity   android:label="@string/appName" android:name=".EnigmaPuzzle" >
        <intent-filter >
            <action android:name="android.intent.action.MAIN" />
         <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:label="Enigma Settings android:name=".GamePrefs" >
    </activity>
    <activity android:label="Enigma Help" android:name=".GameHelp" >
    </activity>
    <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true">
    </supports-screens>
    </application>
    </manifest>'}


如果您正在使用Eclipse,请尝试清理项目。您的清单尚未刷新,这就是它抱怨com中未找到类的原因。例如。enigme

您使用过Eclipse吗?包名不同
ch.adiuvaris.enigma
我更正了包名,但仍然发现错误