i have problem with my project Android Studio.. I have Update my Android studio and my App configuration to SDK 29.. have making "migrate to androidX" and now.. my app dont working with Emulator.. and give me this 2 error..
This project uses AndroidX dependencies, but the 'android.useAndroidX' property is not enabled. Set this property to true in the gradle.properties file and retry.
solution
To enable jetifier, add those two lines to your gradle.properties file:
android.useAndroidX=true
android.enableJetifier=true