android { ... defaultConfig { ... targetSdkVersion 29 ... } ...
// Add the following line to your build.gradle file
dependencies {
...
implementation 'androidx.appcompat:appcompat:1.3.1'
...
}
}
检查是否有依赖于旧版支持库的第三方库。 如果有,请尝试使用最新版支持 Android X 的库。
检查您的 XML 布局文件是否使用了旧版支持库的类(例如 android.support.constraint.ConstraintLayout),将其替换为新版支持 Android X 的类(例如 androidx.constraintlayout.widget.ConstraintLayout)
检查您的代码是否使用了旧版支持库的类(例如 ActionBar),将其替换为新版支持 Android X 的类(例如 androidx.appcompat.app.ActionBar)
检查混淆规则是否正确。如果您的应用有 proguard 混淆,请确保已更新混淆规则以支持 Android X。
如果上述解决方法无效,请尝试清除缓存和重新编译项目,或者将问题提交到官方的 Android X 迁移问题跟踪器中,以获取更多支持和帮助。