Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
508 views
in Technique[技术] by (71.8m points)

android - 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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...