RN第三方库手动迁移AndroidX

对于一些老版本的库可能维护者并没有更新支持AndroidX,又或者是一些新的库在老的项目里,需要将AndroidX的类改为低版本。
可以通过以下网址手动查询所需api的变更日志
react-native库常见引入的类如下:

  • android.support.annotation.NonNull => androidx.annotation.NonNull
  • android.support.annotation.Nullable => androidx.annotation.Nullable
  • android.support.v4.content.FileProvider => androidx.core.content.FileProvider
  • android.support.v4.content.IntentCompat => androidx.core.content.IntentCompat
  • android.support.v4.content.Loader => androidx.loader.content.Loader
  • android.support.v4.util.Pools => androidx.core.util.Pools
  • android.support.v4.util.Pair => androidx.core.util.Pair
  • android.arch.lifecycle.Lifecycle => androidx.lifecycle.Lifecycle

更多类映射文档查询

你可能感兴趣的:(RN第三方库手动迁移AndroidX)