代码之家  ›  专栏  ›  技术社区  ›  GD- Ganesh Deshmukh

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

  •  0
  • GD- Ganesh Deshmukh  · 技术社区  · 7 年前

    我试过了 this solution on StackOverflow 但没用。

    我使用的是Ubuntu 18.04lts,Android-Studio-3,Java-1.8,

    Github-repo link 我的计划。 我正在构建React本地应用程序,在 npm run eject ,我跑不了 npm run android .

    我能运行一个 project 但是当我运行 ,

    (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")
    }
    

    答复后 cod-e-rection ,

    我把代码改成

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

    npm运行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
    

    screenshot

    0 回复  |  直到 7 年前
        1
  •  3
  •   Faysal Ahmed    7 年前

    好像是你的 Could not find com.android.tools.build:gradle:3.4.1. 通过更改版本代码解决问题 3.4.1 3.3.2

    另一个问题存在是因为 3.3.2条 4.10.1 . 解决这个问题 gradle-wrapper.properties 归档并使用此行

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

        2
  •  1
  •   Elio Lako    7 年前

    最新的android gradle版本是:

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

    你可以在下面找到文件 link classpath 'com.android.tools.build:gradle:3.4.1' 致: classpath 'com.android.tools.build:gradle:3.3.2'