Getting unknown property 'classpath' with Jack compiler for Android

前端 未结 2 1151
星月不相逢
星月不相逢 2021-02-12 06:07

I am trying to compile my project with the next Jack compiler. I just updated Android Studio to 2.2-Beta and my gradle plugin to 2.14.1. Here\'s my gradle file:

         


        
2条回答
  •  失恋的感觉
    2021-02-12 06:57

    I was having the same issue, after a long time of researching and changes and remaking my code, I found this worked for me.. try removing all google services 9 version compiles in app dependencies and change them for this single line..

    compile 'com.google.android.gms:play-services-appindexing:8.4.0'

    when I changed my code to this it just worked perfectly

    sample image

提交回复
热议问题