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

时间:2019-08-30 12:47:55

标签: android firebase gradle android-gradle-plugin nativescript

安装nativescript-plugin-firebase后,我无法使用tns build android来构建我的应用程序。 我收到此错误:

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 :

这是我的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
}

Hereplatforms/android/app/build.gradle

Hereplatforms/tempPlugin/nativescript_plugin_firebase/build.gradle

1 个答案:

答案 0 :(得分:1)

  

您可能还有其他插件,具体取决于Google Play服务   (也许是Google地图)。我们需要锁定特定的播放服务   可以和其他人一起玩的版本,所以开放    app/App_Resources/Android/app.gradle 并添加:

示例

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

如果出现相同问题,则使用

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

仅供参考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
    }