gpt4 book ai didi

android - 找不到 com.android.tools.build :gradle:3. 4.2

转载 作者:行者123 更新时间:2023-11-29 22:52:40 24 4
gpt4 key购买 nike

安装 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

最佳答案

You probably have another plugin depending on Google Play Services (Google Maps, perhaps). 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:

示例

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
}

关于android - 找不到 com.android.tools.build :gradle:3. 4.2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57727054/

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