Android StudioメニューオプションRefactor-> Refactor to Androidx ...を使用してAndroidxパッケージに移行した後...
私のbuild.gradleは次のようになります
implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
implementation 'com.google.Android.material:material:1.1.0-alpha01'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
アプリの実行中に、私はこれに遭遇します:
Didn't find class "androidx.core.widget.DrawerLayout"
移行ツールにも同じ問題があるようです
交換するだけで解決できました
androidx.core.widget.DrawerLayout
と
androidx.drawerlayout.widget.DrawerLayout
それが現れるあらゆる場所で。