Taufik
Taufik

Reputation: 515

Issue with XML suggetions

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"
                        }  
        }

Upvotes: 0

Views: 46

Answers (1)

M Ashhal
M Ashhal

Reputation: 467

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

Upvotes: 1

Related Questions