Jack compilation stuck with AndroidStudio 2.3

2019-07-29 03:09发布

I have upgraded my AndroidStudio today to latest stable version 2.3 (with gradle plugin 2.3.0 and gradle 3.3): now, I am not able to build my project which ran fine under AndroidStudio 2.2.3.

When I try, I am stuck at :app:transformJackWithJackForDebug as long as I don't kill my java platform process.

It is the same problem than this post I guess but on stable release.

Any help will be greatly appreciated :)

2条回答
Evening l夕情丶
2楼-- · 2019-07-29 03:34

With Android Studio 3.0 (plugin 3.0) they are recommending to disable the Jack compiler as its been deprecated.

查看更多
够拽才男人
3楼-- · 2019-07-29 03:38

I killed many hours for the same issues after that i got link and its working fine at my end.

To use "Retrolambda" add few dependency.

  1. dependency to your build.gradle file.

    classpath 'me.tatarka:gradle-retrolambda:3.2.0'

  2. Added dependency into app/build.gradle file.

    apply plugin: 'me.tatarka.retrolambda'

  3. Please clean your build and run. it will work fine.

For more detail please visit below link:

  1. http://www.vogella.com/tutorials/Retrolambda/article.html
  2. https://barta.me/lambda-expressions-in-android/

all the best.

查看更多
登录 后发表回答