Imported module in Android Studio can't find imported class

前端 未结 7 1709
春和景丽
春和景丽 2020-12-28 12:33

I recently downloaded the ViewPagerIndicator library and imported it into android studio. After adding it to my project I get a rendering error \"The following classes could

7条回答
  •  心在旅途
    2020-12-28 13:07

    I too had trouble importing module as it was not appearing in list of modules. And way it worked for me is manually entering it in settings.gradle this way:

    include ':app', 'module_name'
    

    And in build.gradle

    compile project(':module_name')
    

提交回复
热议问题