Migrate To Androidx For Wear Support Libraries After Android Pie?
Starting in Fall of 2019 the Google Play Console requires your wearable application targets at least Android 9 (API level 28). August 1, 2019: Required for new apps November 1, 20
Solution 1:
Changing to the following solved the issue for me.
implementation 'androidx.wear:wear:1.0.0’
implementation 'androidx.core:core:1.1.0’
implementation 'androidx.core:core-ktx:1.1.0’ // if you are using Kotlin
Also, if you right click > Refactor > Migrate to AndroidX… Android Studio will take care of the necessary migrations for you.
Post a Comment for "Migrate To Androidx For Wear Support Libraries After Android Pie?"