2016-05-05 12 views
4

私は、ビルドフォルダを削除、それはの取得エラー「java.lang.NoClassDefFoundErrorが:com.android.tools.fd.runtime.AppInfo」

FATAL EXCEPTION: main 
                java.lang.NoClassDefFoundError: com.android.tools.fd.runtime.AppInfo 
                 at com.android.tools.fd.runtime.BootstrapApplication.attachBaseContext(BootstrapApplication.java:229) 
                 at android.app.Application.attach(Application.java:181) 
                 at android.app.Instrumentation.newApplication(Instrumentation.java:991) 
                 at android.app.Instrumentation.newApplication(Instrumentation.java:975) 
                 at android.app.LoadedApk.makeApplication(LoadedApk.java:504) 
                 at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4417) 
                 at android.app.ActivityThread.access$1300(ActivityThread.java:141) 
                 at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1316) 
                 at android.os.Handler.dispatchMessage(Handler.java:99) 
                 at android.os.Looper.loop(Looper.java:137) 
                 at android.app.ActivityThread.main(ActivityThread.java:5103) 
                 at java.lang.reflect.Method.invokeNative(Native Method) 
                 at java.lang.reflect.Method.invoke(Method.java:525) 
                 at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737) 
                 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553) 
                 at dalvik.system.NativeStart.main(Native Method) 

答えて

6

無効にインスタント実行私は、このエラーを取得してアプリを起動するとプロジェクトを再構築します。それは実際には

Instant Run tries to do hot swapping of your code; this causes the application class to be moved.

https://developer.android.com/studio/run/index.html

Instant Run pushes updated code and resources to your connected device or emulator by performing a hot swap, warm swap, or cold swap.

1

を働くのであれば、あなたがNoClassDefFoundErrorを取得します参照してください。この問題を解決するには、

1-ファイル→設定→ビルド、実行、展開→インスタント実行→チェックボックスをオフにしてインスタント実行を無効にします。即時実行 " enter image description here または

2クリーンを実行し、アプリケーションを再構築します。

関連する問題