AndroidStudio笔记

  1. Unsupported Modules Detected

在这里插入图片描述
解决方法:
关闭AndroidStudio,打开项目文件,删除
在这里插入图片描述
在这里插入图片描述
三个文件,
然后重新Rebuild Project

  1. w: -Xcoroutines has no effect: coroutines are enabled anyway in 1.3 and beyond
    解决方法:
    删除app module 的build.gardle 配置文件中的如下代码
    kotlin {
    experimental {
    coroutines “enable”
    }
    }

  2. Proguard keep mentioning keeps the entry point …, but not the descriptor class …

    在主module的proguard-rules.pro文件 添加
    -dontnote 包名.**

  3. Warning: … can’t find referenced class …

    -dontwarn 包名.**

你可能感兴趣的:(AndroidStudio笔记)