在 Android Pie 之后迁移到 AndroidX for Wear 支持库?
Migrate to AndroidX for Wear Support Libraries after Android Pie?
从 2019 年秋季开始,Google Play 控制台要求您的可穿戴应用程序目标至少 Android 9(API 级别 28)。
- 2019 年 8 月 1 日:新应用需要
- 2019 年 11 月 1 日:应用更新需要
将我的 build.gradle
更改为目标 29
后,它给了我一个警告,建议我在目标 Android Q 或更新版本时使用 AndroidX 库。
我应该将 com.android.support
依赖项更改为什么?
implementation 'com.android.support:wear:28.0.0'
implementation 'com.android.support:support-compat:28.0.0'
更改为以下解决了我的问题。
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
此外,如果您右键单击 > 重构 > 迁移到 AndroidX... Android Studio 将为您处理必要的迁移。
从 2019 年秋季开始,Google Play 控制台要求您的可穿戴应用程序目标至少 Android 9(API 级别 28)。
- 2019 年 8 月 1 日:新应用需要
- 2019 年 11 月 1 日:应用更新需要
将我的 build.gradle
更改为目标 29
后,它给了我一个警告,建议我在目标 Android Q 或更新版本时使用 AndroidX 库。
我应该将 com.android.support
依赖项更改为什么?
implementation 'com.android.support:wear:28.0.0'
implementation 'com.android.support:support-compat:28.0.0'
更改为以下解决了我的问题。
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
此外,如果您右键单击 > 重构 > 迁移到 AndroidX... Android Studio 将为您处理必要的迁移。