Cannot resolve symbol AppCompatActivity - Support v7 libraries aren't recognized?

后端 未结 25 1674
情深已故
情深已故 2020-12-07 18:39

I\'m trying to figure out why the heck my Android studio isn\'t recognizing the AppCompat v7 library correctly. The import statement below shows up as gray and says there\'s

25条回答
  •  轮回少年
    2020-12-07 18:49

    I just commented it and used androidx and now it's working all good!

    import androidx.appcompat.app.AppCompatActivity;
    // import android.support.v7.app.AppCompatActivity;
    

提交回复
热议问题