manifest.xml에 동일한<activity>가 두개 이상 있을때 발생하는 에러 

06-28 13:34:25.644: ERROR/Launcher(10360): Launcher does not have the permission to launch Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=mrsohn.CTSave/.CTMainActivity }. Make sure to create a MAIN intent-filter for the corresponding activity or use the exported attribute for this activity.
06-28 13:34:25.644: ERROR/Launcher(10360): java.lang.SecurityException: Permission Denial: starting Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=mrsohn.CTSave/.CTMainActivity } from ProcessRecord{40cd9c68 10360:org.zeam.core/10196} (pid=10360, uid=10196) requires null
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.os.Parcel.readException(Parcel.java:1322)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.os.Parcel.readException(Parcel.java:1276)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.app.ActivityManagerProxy.startActivity(ActivityManagerNative.java:1351)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.app.Instrumentation.execStartActivity(Instrumentation.java:1374)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.app.Activity.startActivityForResult(Activity.java:2827)
06-28 13:34:25.644: ERROR/Launcher(10360):     at org.zeam.Launcher.startActivityForResult(Launcher.java:1128)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.app.Activity.startActivity(Activity.java:2933)
06-28 13:34:25.644: ERROR/Launcher(10360):     at org.zeam.Launcher.startActivitySafely(Launcher.java:1922)
06-28 13:34:25.644: ERROR/Launcher(10360):     at org.zeam.ApplicationsGridView.onItemClick(ApplicationsGridView.java:160)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.widget.AdapterView.performItemClick(AdapterView.java:284)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.widget.AbsListView$PerformClick.run(AbsListView.java:1936)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.os.Handler.handleCallback(Handler.java:587)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.os.Handler.dispatchMessage(Handler.java:92)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.os.Looper.loop(Looper.java:123)
06-28 13:34:25.644: ERROR/Launcher(10360):     at android.app.ActivityThread.main(ActivityThread.java:3687)
06-28 13:34:25.644: ERROR/Launcher(10360):     at java.lang.reflect.Method.invokeNative(Native Method)
06-28 13:34:25.644: ERROR/Launcher(10360):     at java.lang.reflect.Method.invoke(Method.java:507)
06-28 13:34:25.644: ERROR/Launcher(10360):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:842)
06-28 13:34:25.644: ERROR/Launcher(10360):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
06-28 13:34:25.644: ERROR/Launcher(10360):     at dalvik.system.NativeStart.main(Native Method)



안드로이드 프로젝트 빌드중에 에러가 발생할수 있다.
해당경우는 manifest.xml에 등록된 <receiver>로 등록된 클래스의 경로가 올바르지 못할때 발생한다
경로를 잘 잡아주도록 한다

06-29 11:08:45.824: ERROR/AndroidRuntime(1898): /system/csc/customer.xml ==> cannot open file

06-29 11:08:45.824: ERROR/AndroidRuntime(1898): /system/csc/feature.xml ==> cannot open file

06-29 11:08:46.059: WARN/ActivityManager(252): No content provider found for:

06-29 11:08:46.078: WARN/ActivityManager(252): No content provider found for:

06-29 11:08:46.086: WARN/PackageParser(252): /data/app/vmdl1081128854.tmp (at Binary XML file line #29): <receiver> does not have valid android:name


Posted by MR 손
,