When I use new empty activity template android studio it auto adds two line dependencies in my app build.gradle.kts and resync the project.
implementation(Config.Libs.appCompat)
implementation(Config.Libs.constraintLayout)
implementation 'androidx.appcompat:appcompat:1.0.0-alpha1'
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
Seems like android studio cannot detect defined dependencies when use with Kotlin DSL. Anyone know how to slove this?