package android.support.v4.app does not exist ; in Android studio 0.8

前端 未结 12 1611
我在风中等你
我在风中等你 2020-12-01 05:24

I\'ve recently updated the android studio IDE to 0.8 to work with the new android L SDK. To start I imported a finished android project that receives no errors in the older

12条回答
  •  孤独总比滥情好
    2020-12-01 05:40

    In my case the error was on a module of my project.I have resolved this with adding

    dependencies {
        implementation 'com.android.support:support-v4:20.0.+'
    }
    

    this dependency in gradle of corresponding module

提交回复
热议问题