gpt4 book ai didi

javascript - React Native Android 构建, "ERROR: Could not get unknown property ' mergeResourcesProvider'"

转载 作者:行者123 更新时间:2023-11-29 23:01:42 25 4
gpt4 key购买 nike

我已经使用 RN 0.59.3 升级了我的应用程序,自从我在构建 Android 时收到错误消息。 iOS 可以很好地构建应用程序。

安卓工作室

错误:无法为类型为 com.android.build.gradle.internal.api.ApplicationVariantImpl 的对象获取未知属性“mergeResourcesProvider”。

控制台

error Could not install the app on the device, read the error above for details.
Make sure you have an Android emulator running or a device connected and have set up your Android development environment:
https://facebook.github.io/react-native/docs/getting-started.html
error Command failed: ./gradlew app:installSabdebugDebug

我尝试将 android/app/gralde/wrapper/gradle-wrapper.propeties 中的 distributionUrl 更改为

distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 

并且我将 build.gradle 依赖项升级到这些版本

dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.google.gms:google-services:4.2.0'
...
}

这是整个文档

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext {
minSdkVersion = 16
compileSdkVersion = 27
targetSdkVersion = 26
androidMapsUtilsVersion = "0.5+"
googlePlayServicesAuthVersion = "16.0.1"
}

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.google.gms:google-services:4.2.0'


// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
mavenLocal()
jcenter()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
}
}

我正在设置这些 app/build.gradle

android {
compileSdkVersion safeExtGet('compileSdkVersion', 28)
buildToolsVersion safeExtGet('buildToolsVersion', '28.0.0')

defaultConfig {
applicationId "com.myapp"
resValue "string", "build_config_package", "com.myapp"
minSdkVersion 18
multiDexEnabled true
targetSdkVersion 26
versionCode 24
versionName "1.3.5"
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
...

我的 package.json

"dependencies": {
"babel-plugin-transform-remove-console": "^6.9.4",
"formik": "^1.3.1",
"lodash": "^4.17.10",
"moment": "^2.23.0",
"moment-timezone": "^0.5.21",
"native-base": "^2.8.1",
"react": "16.8.3",
"react-native": "0.59.3",
....
}
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/runtime": "^7.4.3",
"babel-jest": "^24.7.0",
"jest": "^24.7.0",
"metro-react-native-babel-preset": "^0.53.1",
"react-test-renderer": "16.8.3",
"run-script-os": "~1.0.5"
},

我们还使用脚本通过 run-script-os 构建应用程序的不同环境,但我不认为这是导致问题的原因。

我也有找不到 Android sdk 的错误,但我用 local.properties 解决了这个问题。

干杯!

最佳答案

gradle-wrapper.properties: 中更改 distributionUrl

distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip

然后在根 build.gradle 文件中将 gradle classpath 更改为:

类路径 'com.android.tools.build:gradle:3.3.0'

删除 node_modulesnpm install && react-native run-android 再次。

关于javascript - React Native Android 构建, "ERROR: Could not get unknown property ' mergeResourcesProvider'",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55493997/

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