Android真机调试提示 java.lang.RuntimeException:Unable to instantiate activity ComponentInfo问题解决

04-20 21:50:11.716 15769-15769/com.example.mikel.datasyncdemo E/AndroidRuntime: FATAL EXCEPTION: main
                                                                                Process: com.example.mikel.datasyncdemo, PID: 15769
                                                                                java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.mikel.datasyncdemo/com.example.mikel.datasyncdemo.MainActivity}: java.lang.ClassNotFoundException: Didn't find class "com.example.mikel.datasyncdemo.MainActivity" on path: DexPathList[[zip file "/data/app/com.example.mikel.datasyncdemo-1/base.apk"],nativeLibraryDirectories=[/data/app/com.example.mikel.datasyncdemo-1/lib/arm64, /system/lib64, /vendor/lib64]]
                                                                                    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2770)
                                                                                    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2929)
                                                                                    at android.app.ActivityThread.-wrap12(ActivityThread.java)
                                                                                    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1648)
                                                                                    at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                                    at android.os.Looper.loop(Looper.java:185)
                                                                                    at android.app.ActivityThread.main(ActivityThread.java:6615)
                                                                                    at java.lang.reflect.Method.invoke(Native Method)
                                                                                    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:916)
                                                                                    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:806)

 

解决: File --- Setting -- Build, Execution, Deployment--Instant Run  取消勾选

Enable instant run to hot swap code/resource changes on deploy(default enabled)

Android真机调试提示 java.lang.RuntimeException:Unable to instantiate activity ComponentInfo问题解决_第1张图片

 

你可能感兴趣的:(Android疑难杂症)