2008/9/14 angger jatra <[EMAIL PROTECTED]> > > when i run hello android like on > http://code.google.com/android/intro/hello-android.html, my eclipse > show error like this : > Tag <activity> missing required attribute name. > > and on AndroidManifest.xml there is an error on line : > <activity class=".helloandroid" > android:label="@string/app_name">
change "class" to "android:name" as shown below: <activity android:name =".helloandroid" android:label="@string/app_name"> > > > > can u help me to fix this ? > > thanks before :) > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" 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-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

