gradle版本导致的编译问题 error: resource style/TextAppearance.AppCompat not found.

新建了一个工程之后编译报错:

Error:(1461, 5) error: resource style/TextAppearance.AppCompat (aka com.example.hp.progressbartest:style/TextAppearance.AppCompat) not found.
Error:(1504, 5) error: resource style/TextAppearance.AppCompat (aka com.example.hp.progressbartest:style/TextAppearance.AppCompat) not found.

问题原因:
暂不清楚,以后来填坑

解决方案:
工程根目录的build.gradle文件中,将

classpath 'com.android.tools.build:gradle:3.0.0'

改为:

classpath 'com.android.tools.build:gradle:3.0.1'

然后Rebuild,问题解决。

你可能感兴趣的:(点滴)