简体   繁体   English

找不到 com.android.tools.build:gradle:3.4.2

[英]Could not find com.android.tools.build:gradle:3.4.2

After installing nativescript-plugin-firebase I can't build my app anynore with tns build android .安装nativescript-plugin-firebase后,我无法再使用tns build android构建我的应用程序。 I get this error:我收到此错误:

nativescript-plugin-firebase: running release build or change in environment detected, forcing prepare!

FAILURE: Build failed with an exception.

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

Here is my platforms/android/build.gradle这是我的platforms/android/build.gradle

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

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.2'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Here is platforms/android/app/build.gradle :platforms/android/app/build.gradle

Here is platforms/tempPlugin/nativescript_plugin_firebase/build.gradleplatforms/tempPlugin/nativescript_plugin_firebase/build.gradle

You probably have another plugin depending on Google Play Services (Google Maps, perhaps).您可能有另一个插件,具体取决于 Google Play 服务(可能是 Google 地图)。 We need to pin to a specific play services version to play nice with others, so open app/App_Resources/Android/app.gradle and add:我们需要固定到特定的播放服务版本才能与其他人一起玩,所以打开app/App_Resources/Android/app.gradle并添加:

Example例子

android {   
            project.ext {
            googlePlayServicesVersion = "15.0.0"   //"16.0.+
          }
       configurations.all {
             resolutionStrategy.force "com.google.android.gms:play-services-auth:$project.googlePlayServicesVersion"
           }
    }

If same issue coming then use如果出现同样的问题,则使用

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

FYI Read Android plugin for Gradle HTTP proxy settings仅供参考阅读Android plugin for Gradle HTTP proxy settings

defaultConfig {
        ...
        systemProp.http.proxyHost=proxy.company.com
        systemProp.http.proxyPort=443
        systemProp.http.proxyUser=userid
        systemProp.http.proxyPassword=password
        systemProp.http.auth.ntlm.domain=domain
    }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM