AndroidX имеет собственную библиотеку на Gradle. ( Реализация DrawerLayout )
Вы должны добавить implementation "androidx.drawerlayout:drawerlayout:1.0.0"
к вашим зависимостям gradle в вашем приложении.
Путь: app> build.gradle
apply plugin: 'com.android.application'
android {
...
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//You should write here
implementation "androidx.drawerlayout:drawerlayout:1.0.0"
}
@ canerkaseler