Google has rebranded their support libraries to be named Jetpack (aka AndroidX). Developers will need to make changes to account for this.
What is in Jetpack?
Jetpack is a collection of many of the existing libraries we have been using forever (like AppCompat, Permissions, Notifications or Transitions) and the newer Architecture Components that were introduced in recent years (like LiveData, Room, WorkManager or ViewModel).
the old coordinate and packages were:
implementation “com.android.support:appcompat-v7:28.0.0"
import android.support.v4.widget.DrawerLayout
and are now:
implementation 'androidx.appcompat:appcompat:1.0.2'