找不到com.google.android.gms:strict-version-matcher-plugin:1.1.0

时间:2018-10-31 05:42:51

标签: android ionic-framework ionic3 ionic-native

无法解析配置'classpath'的所有文件。

找不到com.google.android.gms:strict-version-matcher-plugin:1.1.0。

在以下位置搜索:https://jcenter.bintray.com/com/google/android/gms/strict-version-matcher-plugin/1.1.0/strict-version-matcher-plugin-1.1.0.pom https://jcenter.bintray.com/com/google/android/gms/strict-version-matcher-plugin/1.1.0/strict-version-matcher-plugin-1.1.0.jar文件:/ C:/Users/e1706396/.m2/repository/com/google/android/gms/strict-version-matcher-plugin/ 1.1.0 / strict-version-matcher-plugin-1.1.0.pom文件:/ C:/Users/e1706396/.m2/repository/com/google/android/gms/strict-version-matcher-plugin/1.1。 0 / strict-version-matcher-plugin-1.1.0.jar必需:未指定:未指定:未指定> com.google.gms:google-services:4.2.0

尝试:使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行,以获取更多日志输出。

https://help.gradle.org

获得更多帮助

在7s cmd中失败,命令失败,退出代码为1

我正在使用插件

   <plugin name="cordova-plugin-appavailability" spec="^0.4.2" />
    <plugin name="cordova-plugin-camera" spec="^4.0.3" />
    <plugin name="cordova-plugin-compat" spec="^1.2.0" />
    <plugin name="cordova-plugin-device" spec="^2.0.2" />
    <plugin name="cordova-plugin-googleplus" spec="^5.2.1">
        <variable name="REVERSED_CLIENT_ID" value="xxx" />
    </plugin>
    <plugin name="cordova-plugin-ionic-keyboard" spec="^2.0.5" />
    <plugin name="cordova-plugin-ionic-webview" spec="^1.1.19" />
    <plugin name="cordova-plugin-mfp" spec="^8.0.2018070216" />
    <plugin name="cordova-plugin-mfp-push" spec="^8.0.2018040410" />
    <plugin name="cordova-plugin-network-information" spec="^2.0.1" />
    <plugin name="cordova-plugin-splashscreen" spec="^5.0.2" />
    <plugin name="cordova-plugin-whitelist" spec="^1.3.3" />
    <plugin name="cordova-plugin-x-socialsharing" spec="^5.4.1" />
    <plugin name="cordova-wheel-selector-plugin" spec="^1.1.1" />
    <plugin name="info.protonet.imageresizer" spec="^0.1.1" />

使用构建gradle

buildscript {
    repositories {
        maven {
            url "https://maven.google.com"
        }
        mavenCentral()
        jcenter()
    }
    dependencies {

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.android.tools.build:gradle:3.0.1'
    }
}

allprojects {
    repositories {
        maven {
            url "https://maven.google.com"
        }
        jcenter()
    }
    //This replaces project.properties w.r.t. build settings
    project.ext {
      defaultBuildToolsVersion="27.0.1" //String
      defaultMinSdkVersion=19 //Integer - Minimum requirement is Android 4.4
      defaultTargetSdkVersion=27 //Integer - We ALWAYS target the latest by default
      defaultCompileSdkVersion=27 //Integer - We ALWAYS compile with the latest by default
    }
}

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

我想可能是依赖

旧系统或其他运行正常的

节点-v 3.10.10, NPM -v 6.10.10

我当前的系统说明工作出错

npm -v 6.4.1, 节点-v 8.12.0 节点-v

4 个答案:

答案 0 :(得分:2)

我在Android Studio上的Android项目中遇到过类似的问题。

确保您的项目级别的build.gradle文件是这样的

//顶层构建文件,您可以在其中添加所有子项目/模块共有的配置选项。

buildscript {
repositories {
    jcenter()
    google()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.2.1'
    classpath 'com.google.gms:google-services:4.2.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
allprojects {
repositories {
    google()
    jcenter()
}
task clean(type: Delete) {
delete rootProject.buildDir
}

通过在存储库{}和allprojects {}中同时添加jcenter()和google()的存储库解决了此问题

答案 1 :(得分:0)

我也有同样的问题,这是由cordova-plugin-fcm引起的。

通过将Google Maven添加到插件的gradle中来解决。 对于cordova-plugin-fcm,在这里:

  

平台> android> cordova-plugin-fcm> ***。gradle

您可以在您的cordova-plugin-googleplus文件夹或其他与google-services有依赖关系的插件中查看,我的样子是这样的:

dependencies {
    ...
    classpath 'com.google.gms:google-services:+'
    ...
}

我的最终代码:

buildscript {
    repositories {
        maven { url "https://maven.google.com" }
        jcenter()
        mavenLocal()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:+'
        classpath 'com.google.gms:google-services:+'
    }
}
// apply plugin: 'com.google.gms.google-services'
// class must be used instead of id(string) to be able to apply plugin from non-root gradle file
apply plugin: com.google.gms.googleservices.GoogleServicesPlugin

答案 2 :(得分:0)

TL; DR这是一个与jcenter存储库相关的问题,报告它找不到您的插件依赖的lib,很多人都遇到了同样的问题,为了使其正常工作,您需要将jcenter作为最后的选择在您的platforms/android/build.gradle文件中。

从此开始:platforms/android/build.gradle-第40行

// Allow plugins to declare Maven dependencies via build-extras.gradle.
allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}

为此:platforms/android/build.gradle-第40行

// Allow plugins to declare Maven dependencies via build-extras.gradle.
allprojects {
    repositories {
        mavenLocal()
        google()
        maven {
            url "https://maven.google.com"
        }
        jcenter()
    }
}

然后尝试再次构建您的应用。

如果遇到与找不到google()笔迹有关的错误,请尝试更新gradle版本。

答案 3 :(得分:0)

我通过在 cordova-support-google-services 插件的 build.gradle 存储库中添加maven { url "https://maven.google.com" }来解决此问题。现在的最终文件如下所示:

buildscript {
    repositories {
        maven { url "https://maven.google.com" }
        jcenter()
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:4.+'
        classpath 'com.google.gms:google-services:4.2.0'
    }
}

我正在使用Gradle 4.1。