Gradle项目同步失败。基本功能无法正常工作

时间:2015-05-05 16:20:27

标签: android-studio android-gradle

我更新到Android Studio 1.2,现在有两个错误。

当我第一次打开我的项目时,我在屏幕顶部出现此错误。

“Gradle项目同步失败。基本功能无法正常运行。”

enter image description here

在消息Gradle Sync我得到

enter image description here

我的gradle文件是:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0'

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

allprojects {
    repositories {
        jcenter()
    }
}

apply plugin: 'com.android.application'

android
        {
    signingConfigs {
        config {
            keyAlias 'ScoularAndroidKey'
            keyPassword 'password'
            storeFile file('C:/Users/bschmiedeler/.AndroidStudio/scoularkeystore.jks')
            storePassword 'password'
        }
    }
    name="Scoular"
    compileSdkVersion 21
    buildToolsVersion "21.1.2"
    defaultConfig {
        applicationId "com.scoular.scoular"
        minSdkVersion 15
        targetSdkVersion 21
        versionCode 1
        versionName "1.0.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.config
        }
        debug{
            debuggable true
        }
    }
}
dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile files('libs/commons-lang-2.3.jar')
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile 'com.android.support:support-v4:21.0.3'
    compile 'com.google.android.gms:play-services:6.5.87'
    compile files('src/main/assets/library-1.0.10.jar')
}

通过Stack Overflow查看我发现了一些潜在的解决方案。

我试过File ==>无效并重新启动并删除您应该使用的文件。我只是卡住了。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

这是Android Studio 1.2的确认错误: https://code.google.com/p/android/issues/detail?id=160899

主要解决方案是等待修复。

我很幸运重新导入项目,但每次打开项目时我都必须这样做。