从1.4.0开始,现在无法访问Dex

Adi*_*i Z 15 android android-gradle-plugin

当我想同步gradle时,我收到此错误:

Error:Access to the dex task is now impossible, starting with 1.4.0
1.4.0 introduces a new Transform API allowing manipulation of the .class files.
See more information: http://tools.android.com/tech-docs/new-build-system/transform-api
Run Code Online (Sandbox Code Playgroud)

当我点击链接时,我找不到任何解决方案.有人有解决方案谢谢.

Sun*_*wal 7

在build.gradle文件的dependencies部分中将gradle版本显式设置为1.3.0

classpath 'com.android.tools.build:gradle:1.3.0'
Run Code Online (Sandbox Code Playgroud)

  • 但是,如果我们真的想要使用更新版本呢? (16认同)