Breaking

Tuesday 26 February 2019

How do I solve "cannot resolve symbol r" in android studio?

How do I solve "cannot resolve symbol r" in android studio? 

In every instance in all of my classes where I reference R.id.something, the R is in red and it says "cannot resolve symbol R". Also every time there is R.layout.something it is underlined in red and says "cannot resolve method setContentView(?)".



The project always builds fine. It is annoying to see this all the time. 

I have read many other questions on here about something similar but most involved importing projects from Eclipse.

I am using what I believe to be the most recent version of Android Studio and the project was created with Android Studio and worked without any "cannot resolve R" problems. 

I would like to know what causes this if anyone knows.




Ans 1 :-

I had this this issue too. A simple 'gradlew clean' and 'gradlew build' did the trick.

Click on Build->Clean Project and that will perform a gradle clean

Ans 2 :-
"Tools" -> "Android" -> "Sync Project with Gradle Files"


In latest Android Studio 3.1.3 (July 2018), "Sync Project with Gradle Files" is available in main menu bar.


Ans 3 :-

Clean project and Sync Project with Gradle.


Check buildTools version in my sdk 


From build gradle (module ) change minSdkVersion from 8 to 9
defaultConfig {
        applicationId "PackageName"
        minSdkVersion 9
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
But all this didn't help.
Finally I found the answer (this worked in my case)


Change from build.gradle(module:app)
android {
    compileSdkVersion 21
    buildToolsVersion '21.0.1'
......
....
}

No comments:

Post a Comment