Hello everybody, I'm learning to build my first app using the training on http://developer.android.com, I've followed all the step with no errors, but for some reason the app isn't appearing on the emulator.
According to http://developer.android.com/training/basics/firstapp/starting-activity.html I have my manifest as: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="myfirstapp.app" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="15" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="myfirstapp.app.DisplayMessageActivity" /> </application> </manifest> Can anybody please help me solve this? I'd like to start learning more. -- 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

