2017-07-18 11 views
0

エラー:java.lang.RuntimeException:com.android.build.api.transform.TransformException:java.lang.RuntimeException:com.android。 ide.common.process.ProcessException:java.util.concurrent.ExecutionException:com.android.ide.common.process.ProcessException:メインクラスcom.android.dx.command.Mainでjavaプロセスを実行中にエラーが発生しました。引数が{ - dex - デバッグ\フォルダー\ 1000 - dex - デバッグ - フォルダー - 1000 - C:\ Users \ Perfect \ AndroidStudioProjects \ RegistrationPage \ app \ビルド\中間物\変換\ 4 - マルチ - \ 10000 \ instant-run_00ce957cbbc400d4da775636a5cd1b3714505826 C:¥Users¥Perfect¥AndroidStudioProjects¥RegistrationPage¥app¥build¥intermediates¥incremental-runtime¥debug¥instant-run.jar私のUSB接続されたモバイルでadb経由でアプリケーションをデバッグできず、エラーが発生しました。

答えて

0

build.gradleでmultiDexを有効にしてください。

android { 

defaultConfig { 
    ... 

    // Enabling multidex support. 
    multiDexEnabled true 
} 
... 
} 

dependencies { 
compile 'com.android.support:multidex:1.0.0' 
} 
関連する問題