簡體   English   中英

React-Native-無法解析配置':classpath'的所有文件。 找不到 com.android.tools.build:gradle:3.4.1

[英]React-Native-Could not resolve all files for configuration ':classpath'. Could not find com.android.tools.build:gradle:3.4.1

在 StackOverflow 上嘗試了這個解決方案,但沒有奏效。

我使用的是 Ubuntu 18.04 LTS、Android-Studio-3、Java-1.8、Gradle-3.4.1。

我的項目的Github-repo 鏈接 我正在構建 React-Native App,在npm run eject ,我無法運行npm run android

我能夠在彈出應用程序之前運行一個項目,但是當我運行npm run android時發生錯誤,

(base) gd@gd10:~/Desktop/react-native/demo_app$ npm run android

> @ android /home/gd/Desktop/react-native/demo_app
> react-native run-android

Scanning folders for symlinks in /home/gd/Desktop/react-native/demo_app/node_modules (9ms)
JS server already running.
Building and installing the app on the device (cd android && ./gradlew installDebug)...
Download https://jcenter.bintray.com/de/undercouch/gradle-download-task/3.1.2/gradle-do
wnload-task-3.1.2.pom
Download https://jcenter.bintray.com/org/apache/httpcomponents/httpcore/4.4.4/httpcore-
4.4.4.pom
Download https://jcenter.bintray.com/org/apache/httpcomponents/httpcomponents-core/4.4.
4/httpcomponents-core-4.4.4.pom

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project 'goods_seller'.
> Could not resolve all files for configuration ':classpath'.
   > Could not find com.android.tools.build:gradle:3.4.1.
     Searched in the following locations:
         https://jcenter.bintray.com/com/android/tools/build/gradle/3.4.1/gradle-3.4.1.pom
         https://jcenter.bintray.com/com/android/tools/build/gradle/3.4.1/gradle-3.4.1.jar
         https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.4.1/gradle-3.4.1.pom
         https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.4.1/gradle-3.4.1.jar
     Required by:
         project :
   > Could not find com.android.tools.build:gradle:3.4.1.
     Searched in the following locations:
         https://jcenter.bintray.com/com/android/tools/build/gradle/3.4.1/gradle-3.4.1.pom
         https://jcenter.bintray.com/com/android/tools/build/gradle/3.4.1/gradle-3.4.1.jar
         https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.4.1/gradle-3.4.1.pom
         https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.4.1/gradle-3.4.1.jar
     Required by:
         project :

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 31s
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

它無法構建 gradle,並且找不到 gradle,盡管我已經使用sudo apt-get install gradle

它在使用標志--stactrace運行時給出相同的輸出,

gradle -v輸出是

(base) gd@gd10:~/Desktop/react-native/demo_app$ gradle -v

------------------------------------------------------------
Gradle 3.4.1
------------------------------------------------------------

Build time:   2012-12-21 00:00:00 UTC
Revision:     none

Groovy:       2.4.15
Ant:          Apache Ant(TM) version 1.10.3 compiled on July 19 2018
JVM:          1.8.0_201 (Oracle Corporation 25.201-b09)
OS:           Linux 4.15.0-45-generic amd64

(base) gd@gd10:~/Desktop/react-native/demo_app$ 

demo_app/android/build.gradle文件是

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

buildscript {
    ext {
        buildToolsVersion = "27.0.3"
        minSdkVersion = 16
        compileSdkVersion = 24
        targetSdkVersion = 26
        supportLibVersion = "27.1.1"
    }
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'

        classpath 'com.android.tools.build:gradle:2.2.2'
        classpath 'de.undercouch:gradle-download-task:3.1.2'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

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


task wrapper(type: Wrapper) {
    gradleVersion = '4.4'
    // gradleVersion = '4.10.3'
    distributionUrl = distributionUrl.replace("bin", "all")
}

編輯1:

在代碼-e-rection回答后,

我將代碼更改為

dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
}

然后在運行npm run android ,它給出了錯誤,

* What went wrong:
A problem occurred evaluating project ':app'.
> Failed to apply plugin [id 'com.android.application']
   > Minimum supported Gradle version is 4.10.1. Current version is 4.4. If using the gradle wrapper, try editing the distributionUrl in /home/gd/Desktop/react-native/demo_app/android/gradle/wrapper/gradle-wrapper.properties to gradle-4.10.1-all.zip

截屏

好像你Could not find com.android.tools.build:gradle:3.4.1. 通過將版本代碼3.4.1更改為3.3.2解決了問題。

存在另一個問題,因為在3.3.2 gradle 版本中,您必須使用最低 gradle 分發版本4.10.1 要解決此打開的gradle-wrapper.properties文件並使用此行

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

替換之前的任何內容。

最新的 android gradle 版本是:

dependencies {
    classpath 'com.android.tools.build:gradle:3.3.2'
}

您可以在以下鏈接中找到文檔。 因此,您必須將其從classpath 'com.android.tools.build:gradle:3.4.1'更改為: classpath 'com.android.tools.build:gradle:3.3.2'它將被修復。

首先,在android/gradle/wrapper/gradle-wrapper.properties變化distributionUrl到:

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

然后,在android/build.gradle中將 gradle 類路徑更改為:

classpath 'com.android.tools.build:gradle:3.3.0'

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM