Android 找不到play-services-auth-base-license.aar-离子安卓构建失败

Android 找不到play-services-auth-base-license.aar-离子安卓构建失败,android,cordova,ionic2,Android,Cordova,Ionic2,错误:/project/gradlew:命令失败,退出代码1错误输出: 失败:生成失败,出现异常 配置根项目“project”时出现问题。 下面是确切的错误: 找不到play-services-auth-base-license.aar(com.google.android.gms:play-services-auth-base-license:11.8.0) 在没有帮助的情况下在以下位置搜索: play-services-auth-base-license-11.8.0.aar 几天前一切都很

错误:/project/gradlew:命令失败,退出代码1错误输出: 失败:生成失败,出现异常

配置根项目“project”时出现问题。 下面是确切的错误:

找不到play-services-auth-base-license.aar(com.google.android.gms:play-services-auth-base-license:11.8.0)

在没有帮助的情况下在以下位置搜索:

play-services-auth-base-license-11.8.0.aar

几天前一切都很好,今天我试着重新构建应用程序(没有任何更改)时出错。此错误仅适用于iOS版的Android版本

有人知道原因吗?更新之后似乎出现了错误

我检查了没有规范版本的插件

cordova插件Google Plus cordova-plugin-x-socialsharing 科尔多瓦插件谷歌转换 cordova插件人行横道webview

他们的版本都和两天前一样 另一个插件有规范

cli 6.5.0

<preference name="pgb-builder-version" value="1" />
<preference name="android-minSdkVersion" value="16" />  
<preference name="android-targetSdkVersion" value="26" />  
<plugin name="cordova-android-support-gradle-release" source="npm">  
<variable name="ANDROID_SUPPORT_VERSION" value="26.0.0" />  
</plugin>


请指导是否有人能够解决此问题。

指定我对build.gradle的依赖关系通过如下方式调整com.google.firebase的所有版本解决了此问题:

   dependencies {
       implementation fileTree(dir: 'libs', include: '*.jar')
      // SUB-PROJECT DEPENDENCIES START
      implementation(project(path: "CordovaLib"))
      compile "com.android.support:customtabs:26.+"
      compile "com.android.support:support-v4:24.1.1+"
      compile "com.google.gms:google-services:+"
      compile "com.google.android.gms:play-services-tagmanager:11.+"
      compile "com.google.firebase:firebase-core:11.+"
      compile "com.google.firebase:firebase-messaging:11.+"
      compile "com.google.firebase:firebase-crash:11.+"
      compile "com.google.firebase:firebase-config:11.+"
      compile "com.google.firebase:firebase-perf:11.+"
      compile "com.google.android.gms:play-services-auth:11.+"
      compile "com.google.android.gms:play-services-identity:11.+"
     // SUB-PROJECT DEPENDENCIES END
    }
上述内容由之前的内容更改为:11.+:+