Home > OS >  Issue with XML suggetions
Issue with XML suggetions

Time:09-20

I am getting issue with XML suggetions. When I am trying to update compileSdkVersion 32 to 33. Unable to get suggetions in XML file. I have tried many solution like delete .idea folder and .iml files but it's not working. Can anyone help me on this. Thanks in advance.

android {
          compileSdkVersion 33
          buildToolsVersion '30.0.3'
          defaultConfig {
                          applicationId "com.example.abcd"
                          minSdkVersion 21
                          targetSdkVersion 33
                          versionCode 1
                          versionName "1.0.0"
                          testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
                        }  
        }

CodePudding user response:

This was a bug in Android Studio Chipmunk, After updating to Android Studio Dolphin 2021.3.1, the issue has been fixed. Check if u have any updates available.

Answer by google

Check for Updates

  • Related