I have problems launching my app, i get that exception when i try to
launch it on emulator:

> java.lang.ClassNotFoundException: com.myapplauncher.App in loader
> dalvik.system.PathClassLoader@43735cf8

also i get this line in top of the exeption: `10-20 11:35:24.840: WARN/
dalvikvm(789): Link of class 'Lcom/myapplauncher/App;' failed`


I have some packages on my app, one of them (`com.myapplauncher`),
haves the class App.java, that is the main class on my app.

This is my manifest:

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/
android"
          package="com.myapplauncher"
          android:versionCode="1"
          android:versionName="1.0">
        <application android:icon="@drawable/icon"
android:label="@string/app_name">
            <activity android:name=".App" 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>
        </application>
        <uses-sdk android:minSdkVersion="3" />
    </manifest>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to