工程编译时 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')