If you're referring to my AndroidManifest.xml file, it looks like this:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.mypackage.testsuite.MyApp"> <application android:icon="@drawable/icon"> <activity android:name=".MyApp" android:label="@string/ app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".MyApp"/> </application> </manifest> For the life of me, I can't figure out why just changing the name of the classes would break the app. I'm pretty sure I didn't miss any replacements of the old names, so it seems baffling. On Jan 12, 1:06 pm, "Dianne Hackborn" <[email protected]> wrote: > Your main activity appears to be private (not exported). Do you have an > android:exported="false" line on it? > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

