To easily test some features, I created a stripped-down copy of my application. Unfortunately, none of the applications work anymore. I changed the package name for one of them to avoid overwriting the other, and the manifests display the correct package for their respective projects.
Here is the error in the console window β
[2011-12-24 11:37:44 - AGOS - LevelTest] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=package.package.package/.MyLaunchActivity } [2011-12-24 11:37:44 - AGOS - LevelTest] ActivityManager: Error type 3 [2011-12-24 11:37:44 - AGOS - LevelTest] ActivityManager: Error: Activity class {package.package.package/package.package.package.MyLaunchActivity} does not exist.
Does anyone know what I forgot to configure?
EDIT:
I found that the manifest from the new instance of the two copies had a problem. At the time of renaming, the refractor was supposed to change the android:name attribute from MyLaunchActivity to package.package.package.MyLaunchActivtiy , however the older one is still faulty.
source share