Reputation: 11
I was developed with AndroidX and it is a wonderful library, I run my demo app in my smartphone with Android 6, but I have a question, does AndroidX support Android 5.0 and lower?
Upvotes: 1
Views: 805
Reputation: 45
With Android Studio 3.2 and higher, you can quickly migrate an existing project to use AndroidX by selecting Refactor > Migrate to AndroidX from the menu bar.
Ref: Migrate an existing project using Android Studio
You read more stuff from there base on your tpoic!
Upvotes: 0
Reputation: 1007554
It depends on the specific library, but on the whole the current set of androidx
libraries support back to API Level 14 (Android 4.0).
Upvotes: 1