I don't really see anything wrong with your XML... How are you launching it?
Through ADB or Eclipse? Does your app show up in the list of all apps?

*> Link of class 'Lcom/myapplauncher/App;' failed`*
This is a little weird... What is Lcom? Or was that just a typo?

Thanks,
Justin Anderson
MagouyaWare Developer
http://sites.google.com/site/magouyaware


On Thu, Oct 20, 2011 at 6:20 AM, saex <[email protected]> wrote:

> 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

-- 
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