Skip to content Skip to sidebar Skip to footer

Package Android.support.design.widget Does Not Exist

build.gradle(module:app) apply plugin: 'com.android.application' android { compileSdkVersion 29 buildToolsVersion '29.0.2' defaultConfig { a

Solution 1:

In your code you are mixing Support library with AndroidX library which is not permissible. Remove support library and use AndroidX. To migrate AndroidX correctly follow below steps:

From Android Studio Menu

  1. Select Refactor -> Migrate to AndroidX
  2. Press Do Refactor

Post a Comment for "Package Android.support.design.widget Does Not Exist"