我最近将Android Studio更新为2.0。我正在从事兼职课程,我必须参与提供的项目。当gradle尝试构建项目时,弹出一个对话框,要求我更新android studio gradle插件。当我点击更新时,我收到了标题中的错误。
我的gradle文件如下:
Gradle Wrapper:
#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
模块Gradle:
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
}
}
Project 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机器。
由于
答案 0 :(得分:4)
1)由于您使用的是compileSdkVersion = 23
,因此您还需要使用从23开始的版本的支持库。你的情况就是com.android.support:design:23.3.0
。它可能与手头的问题无关,但它会在以后保存您的运行时错误,因此请尽快修复它。
2)你的gradle发行版对于Android build插件来说太旧了。在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'
6)你的apt插件已经过时了。最新版本是1.8。
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
7)您的OkHttp库已经过时了。最新版本为2.7.5或3.2.0。
compile 'com.squareup.okhttp:okhttp:2.7.5'