我是 React Native 的新手,一直在我的项目中使用 Expo-bare 来运行我的 react-native 应用程序,但由于需求突然变化,我不得不更改为 react-native CLI。
我创建了一个新的 React Native 项目并创建了新文件并导入了 react-native-navigation 来帮助我浏览屏幕。但是由于上述错误,我无法编译它并运行该应用程序。注意 - 由于使用了动力不足的系统,我无法运行用于构建应用程序的虚拟设置,因此必须使用 Android 手机。
buildscript {
ext {
buildToolsVersion = "29.0.2"
minSdkVersion = 16
compileSdkVersion = 29
targetSdkVersion = 29
kotlinVersion = "1.3.72"
}
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.5.3")
// 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' }
}
}