这是React Native的错误,与debug版AndroidManifest.xml文件有关。需要修改app/build.gradle文件中的buildTypes节点。
示例代码:
android {
...
buildTypes {
debug {
manifestPlaceholders = [
appAuthRedirectScheme: 'myapp',
]
}
...
}
...
}
在上述代码中,我们在debug构建类型的manifestPlaceholders节点中添加了一个appAuthRedirectScheme参数。在React Native中,这个参数用于设置debug版AndroidManifest.xml中的'android:scheme”属性。