解决:Supertypes of the following c
2018-12-19 本文已影响0人
KtYY
工程编译时 Android Studio 报错:
e: Supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath:

报错位置:使用jar 中的interface ,编写时没有报错。编译时报错
最后解决方法:
将:
implementation fileTree(include: ['*.jar'], dir: 'libs')
改为:
api fileTree(include: ['*.jar'], dir: 'libs')