美文网首页
解决:Supertypes of the following c

解决:Supertypes of the following c

作者: KtYY | 来源:发表于2018-12-19 13:16 被阅读0次

    工程编译时 Android Studio 报错:

    e: Supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath:
    
    image.png

    报错位置:使用jar 中的interface ,编写时没有报错。编译时报错
    最后解决方法:
    将:

    implementation fileTree(include: ['*.jar'], dir: 'libs')
    

    改为:

    api fileTree(include: ['*.jar'], dir: 'libs')
    

    相关文章

      网友评论

          本文标题:解决:Supertypes of the following c

          本文链接:https://www.haomeiwen.com/subject/ufplkqtx.html