【问题标题】:Gradle sync failed: Failed to update Android plugin to version '2.0.0'Gradle 同步失败:无法将 Android 插件更新到版本“2.0.0”
【发布时间】:2016-08-08 13:03:36
【问题描述】:

我最近将 Android Studio 更新到 2.0。我正在参加兼职课程,我必须从事提供的项目。当 gradle 尝试构建项目时,弹出一个对话框,要求我更新 android studio gradle 插件。当我点击更新时,标题中出现错误。

我的gradle文件如下:

Gradle 包装器:

#Wed Sep 30 11:56:02 PDT 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-2.2-bin.zip

模块摇篮:

apply plugin: 'com.android.application'
apply plugin: 'android-apt'

android {
  compileSdkVersion 23
  buildToolsVersion "23.0.1"

  defaultConfig {
    applicationId "com.example.sam_chordas.stockhawk"
    minSdkVersion 15
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
  }
  buildTypes {
    release {
      minifyEnabled false
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
  }
}

repositories {
  maven { url "https://jitpack.io" }
}

dependencies {

  compile 'com.google.android.gms:play-services-gcm:8.4.0'
  compile 'com.squareup.okhttp:okhttp:2.5.0'
  apt 'net.simonvt.schematic:schematic-compiler:0.6.3'
  compile 'net.simonvt.schematic:schematic:0.6.3'
  compile 'com.melnykov:floatingactionbutton:1.2.0'
  compile 'com.android.support:design:23.1.1'
  compile('com.github.afollestad.material-dialogs:core:0.8.5.7@aar') {
    transitive = true
  }
}

项目 Gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
  repositories {
    jcenter()
    mavenCentral()
  }
  dependencies {
    classpath 'com.neenbedankt.gradle.plugins:android-apt:1.2'
    classpath 'com.google.gms:google-services:1.4.0-beta3'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
  }
}

allprojects {
  repositories {
    jcenter()
  }
}

我无法处理该项目,因为我无法构建它。如果有人遇到过这样的问题并解决了它,我真的很感激一些帮助,因为我浪费了很多时间。我应该提到这是一台 Windows 7 机器。

谢谢

【问题讨论】:

    标签: android android-studio android-gradle-plugin gradle-plugin android-studio-2.0


    【解决方案1】:
    1. 由于您使用的是compileSdkVersion = 23,因此您还需要使用版本从 23 开始的支持库。在你的情况下是com.android.support:design:23.3.0。它可能与手头的问题无关,但它会在以后为您节省运行时错误,因此请尽快修复它。

    2. 您的 gradle 发行版对于 Android 构建插件来说太旧了。在您的 gradle/gradle-wrapper.properties 文件中使用它:

      distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
      
    3. 最新的构建工具是"23.0.2"。更新模块的 build.gradle 文件中的值。

    4. Google Play 服务插件必须与 Android 构建插件的版本相同。至少它必须处于测试阶段,我想主要版本无论如何都必须对应。那在你的项目build.gradle:

      classpath 'com.google.gms:google-services:2.0.0'
      
    5. Android 构建插件完全没有

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

    可选

    1. 您的 apt 插件很旧。最新版本是 1.8。

      classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
      
    2. 您的 OkHttp 库已过时。最新版本是 2.7.5 或 3.2.0。

      compile 'com.squareup.okhttp:okhttp:2.7.5'
      

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2019-07-02
      • 1970-01-01
      • 1970-01-01
      • 2019-07-18
      • 2021-11-30
      • 1970-01-01
      • 2019-06-18
      • 2020-01-12
      相关资源
      最近更新 更多