Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

can't resolve AppCompatActivity

After renaming application package name, Android Studio displayed this error can't resolve symbol AppCompatActivity

Things I tried:

  • Clean project
  • Clean Android Studio cache
  • Clean Gradle cache
  • Re-installed IDE
  • File-> Invalidate cache/restart

But nothing really helped. The project build successfully, but I can not use syntax highlighting.

I used com.android.support:appcompat-v7:23.1.1

Screenshots

BaseActivity

Build gradle file

like image 669
Raman Branavitski Avatar asked Jan 22 '16 13:01

Raman Branavitski


People also ask

What is AndroidX library?

AndroidX is a major improvement to the original Android Support Library, which is no longer maintained. androidx packages fully replace the Support Library by providing feature parity and new libraries.


2 Answers

Okay, to anybody who might stumble upon this now, Android Studio is very, very, very weird.

Solution : Go to your build.gradle file and in your dependencies find the appcompat one, something like compile 'com.android.support:appcompat-v7:XX.X.X'

Change it to compile 'com.android.support:appcompat-v7:XX.X.+'

Then click on Sync Now on the top right of the editor. All the red squiggly lines should go if everything else in your code is correct.

Then go back to your build.gradle and change it back to whatever it was and click Sync Now

It should all be fine given that you have the latest version of everything or close to it.

like image 78
4127157 Avatar answered Oct 07 '22 00:10

4127157


Lets get going step by step: first clean project by using

Build->Clean

if this doesn't helps then use your second weapon

File>Invalidate Caches/Restart...

But the real problem begins when all the above options doesn't works so use your ultimate weapon close project and go to project location directory and delete

.idea

You can open your project now again. This worked for me and problem comes most often when you are working with VCS. And this problem is not associated with android component classes but also to the libraries, both shows the same error.

like image 42
vikas kumar Avatar answered Oct 06 '22 23:10

vikas kumar