1,今天升级android studio 到plugin version 3.0.1 gradle version 到4.1之后项目可以编译运行但是java测试文件(含有main方法的类)运行报错。
报错:
Could not resolve all files for configuration ':classpath'.
方案:在project下的build.gradle下添加
buildscript { repositories { google() 这个是新加的 jcenter() } }
报错: java.util.concurrent.ExecutionException: com.android.tools.aapt2.Aapt2Exception
因为 Aapt2 is enabled by default when you use android plugin for gradle 3.0.
方案:在gradle.properties 下添加android.enableAapt2=false;