Android Studio inline compiler showing red errors, but compilation with gradle works fine

安稳与你 提交于 2019-11-28 03:37:22
Bioz Nguyen

The following steps helps

  1. Close your project, and in your project folder delete project/.idea
  2. Delete ~/.gradle folder.

Open the project again. Everything should be solved.

Dan J

Thanks to free3dom for getting me on the right track here.

Diagnosis

The Sync Project with Gradle Files option in Android Studio seems to keep the Project Structure libraries up to date.

However, in my case there were some errors:

Expanding the (not very obvious) link showed the detail. My wire-runtime library was showing in an incorrect location:

This seemed to be a hangover from my original configuration where I had imported the JAR into a libs folder.

dependencies {
    compile fileTree(dir: 'libs', include: '*.jar')
}

I subsequently changed it to be imported directly from Maven Central (as per here), and it seems that the old setting was never overwritten with the new one.

The Fix

The fix is to delete the library dependency from the Project Structure screen and then Sync Project with Gradle Files again.

More Detail

You can also see what path is being used to the resource by opening the .idea/libraries/wire_runtime_1_2_0.xml directly.

My broken one was:

  <component name="libraryTable">
  <library name="wire-runtime-1.2.0">
    <CLASSES>
      <root url="jar://$PROJECT_DIR$/MY_MODULE/libs/wire-runtime-1.2.0.jar!/" />
    </CLASSES>
    <JAVADOC />
    <SOURCES />

After deleting and re-adding the library it changed the root url to:

      <root url="jar://$USER_HOME$/.gradle/caches/artifacts-26/filestore/com.squareup.wire/wire-runtime/1.2.0/jar/44e7acbd5eb6f29698181dc3d67a60acf7efee80/wire-runtime-1.2.0.jar!/" />

Update

Android Studio v0.4.4 apparently fixes other bugs which have the same symptoms, so if you have an older version you may wish to upgrade.

Manmohan Soni

Simple Solution

Go through the link and it worked for me.

  1. Choose File option from menu on left top side of android studio.
  2. Select the option: Invalidate Cache/Restart It will open an dialog.
  3. Click on the first button with option: Invalidate and Restart
  4. It will close Android Studio and restart it. Also, it will start re-indexing the project.

It resolved my problem

Go to File > Invalidate Cache/Restart > Invalidate and Restart

Source here for youtube

1) Click on the gradle icon (right side on the android studio)

2) Click on the refresh button and wait for the issue to be resolved :D

For me deleting .gradle and .idea folder of project solved the problem.

I was still having the same problem with Android Studio v3.2.1 constantly, and sorted out the problem just removing these two sub-folders of the .idea folder (no need to delete the whole .idea folder) while a gradle sync didn't work:

  • ./idea/caches
  • ./idea/libraries
jnutttzzz

My hacky fix for this -

  1. Open your build.gradle file
  2. Cut out everything inside dependencies{}
  3. Paste in notepad for super safe temporary keeping
  4. Choose 'Sync Now' in the build.gradle file
  5. Wait for Sync to fail
  6. Paste your dependencies back in
  7. 'Sync Now' again

Tried a lot of solutions and this was the only fix for me.

I had this problem after upgrading to Android Studio 3.1. I solved the issue by upgrading all the components I use. So I changed the following entries in my build.gradle (app):

  1. Upgrade SDK (from "compileSdkVersion 25" to "compileSdkVersion 26" or maybe higher when you read this note):

    //compileSdkVersion 25

    compileSdkVersion 26

    Comment: This change forced program to download/install new sdk during next sync.

  2. Upgrade appcompat-v7:

    //implementation 'com.android.support:appcompat-v7:25.4.0'

    implementation 'com.android.support:appcompat-v7:26.1.0'

  3. Upgrade firebase:

    //implementation 'com.google.firebase:firebase-ads:11.4.2'

    implementation 'com.google.firebase:firebase-core:12.0.1'

    implementation 'com.google.firebase:firebase-ads:12.0.1'

  4. In PROJECT build.gradle, upgrade google-services:

    //classpath 'com.google.gms:google-services:3.1.0'

    classpath 'com.google.gms:google-services:3.2.0'

  5. Upgrade gradle (from 4.4 to 4.6). From gradle-wrapper.properties: distributionUrl=https://services.gradle.org/distributions/gradle-4.6-all.zip

After these changes, clean project, invalidate cache/restart, remove .idea/libraries content and resync (not sure about the order but ALL these activities solved the issue for me).

Deleting libraries folder in .idea solved the issue for me. It is located in project's root/.idea/libraries.

I'm using Android Studio 3.1.4

Below steps when the Project is succesfully compiled but with unresolved classes (All classes usage will be in red color in all files)

Step 1. Delete .gradle file

Step 2. Delete .idea file

Step 3. Open new Android studio Window with some other android project on your system and close your Project with error

Step 3 . Now Open/Import the Project once again from the studio toolbar Android Studio ->File -> Open

Note: Now when you import the project the new .gradle and new .idea folders will be autogenerated with resolved dependencies by the compiler.

Just do this on your Android studio:

File -> Invalidate caches/Restart -> Invalidate and Restart

This worked for me. No need to clear ./gradle or ./idea folder

If all above answers don't work for you. Just try update your dependencies to latest version. It worked for me.

I found easy way

  • Open app level build.gradle
  • Remove dependency which is showing error & Sync.
  • Again add dependency & Sync.

Error Gone!

Before

After

It seems that everyone uses a different approach for getting around these issues. I'll suggest another one that I feel is a bit less invasive than the others. When I introduce changes from an aar library that I include, I will open up the "settings.gradle" file for the project.

Then cut out the main project module from the list of projects:

include ':mainproj',

and then sync your project. Then paste it back in and re-sync your project once more. I believe that this is the same as some of the manual deletion steps, but this lets you do so from the IDE a bit quicker and less painfully.

DmitryDzz

These solutions didn't help me with the same problem in Android Studio 0.5.8.

I described my answer to the same question (I guess): https://stackoverflow.com/a/23891829/534698 I just deleted ~/.AndroidStudioPreview directory (in Ubuntu). I missed all my Android Studio settings but it works.

In my case, for some reason, Android Plugin Version wasn't set. I did try clearing cache and removing .gradle and .idea as well, but it didn't work out and after finally wandering for hours, I found this.

I tried most of the fixes above and what actually worked was deleting all the .AndroidStudio config folders and then restarting Android Studio.

  • Location: C:\Users\your.username

Deleting the .idea/caches and .idea/libraries should sort out all the errors.

I had a similar issue before, invalidating cache and restarting didn't resolve it. I just did a Gradle Sync and everything worked fine.

Solved the issue by cleaning project Build->Clean Project

For me, I refer a jar in a module library. It cannot resolve the symbol in the jar. So I find the solution for my situation. Use the provided way.

provided fileTree(include: ['xxx.jar'], dir: '../moduleX/libs')
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!