gpt4 book ai didi

javascript - 评估 MapboxGLManager.mapStyles

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:14:55 25 4
gpt4 key购买 nike

尝试在我的 React-Native 应用程序上安装 Mapbox(找到 here)时,我不断收到此错误。 Error

我的文件如下:

build.gradle

settings.gradle

MainActivity.java

AndroidManifest.xml

最佳答案

在您的 build.gradle 和 settings.gradle 中,您添加了错误的行:

build.gradle

dependencies {
compile project(':react-native-mapbox-gl') // <==== remove this line
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:+"
compile project(':reactnativemapboxgl') // <=== missing this line
}

settings.gradle

删除那两行...

include ':react-native-mapbox-gl'
project(':react-native-mapbox-gl').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-mapbox-gl/android')

...并用这些替换它们:

include ':reactnativemapboxgl'
project(':reactnativemapboxgl').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-mapbox-gl/android')

关于javascript - 评估 MapboxGLManager.mapStyles,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39524174/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com