在 react-native-device-info 之后 React Native 代码中断
Posted
技术标签:
【中文标题】在 react-native-device-info 之后 React Native 代码中断【英文标题】:React Native code broke after react-native-device-info 【发布时间】:2022-01-18 21:01:59 【问题描述】:我正在处理本机项目并尝试从 https://github.com/react-native-device-info/react-native-device-info 这个库中获取设备信息。而且,在此之后构建失败。这是我的build.gradle
的样子:
buildscript
ext
buildToolsVersion = "29.0.2"
minSdkVersion = 21
compileSdkVersion = 29
targetSdkVersion = 29
repositories
google()
jcenter()
dependencies
classpath("com.android.tools.build:gradle:4.0.1")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
allprojects
repositories
mavenLocal()
maven
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
maven
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
google()
jcenter()
maven url 'https://www.jitpack.io'
我也试过这个解决方案React Native: Get device name through Native Modules without callback 但没有帮助。任何人都可以建议一些东西来从 react-native 项目中获取设备信息。谢谢
【问题讨论】:
【参考方案1】:在深入研究代码 3 天并将其与我的备用代码进行比较后,我找到了解决方案,并且现在运行良好。
我为 Active Directory 身份验证安装了 "react-native-msal": "^4.0.2",
。
而且,react-native-device-info
需要较低版本的 "react-native-msal": "^3.1.1",
所以,我使用以下命令将 msal 降级到 3.1.1。
yarn add react-native-msal@3.1.1
希望这对面临同样问题的人有所帮助。
谢谢
【讨论】:
以上是关于在 react-native-device-info 之后 React Native 代码中断的主要内容,如果未能解决你的问题,请参考以下文章
在 React 应用程序中在哪里转换数据 - 在 Express 中还是在前端使用 React?