Gradle 项目同步失败。基本功能将无法正常工作
Gradle project sync failed. Basic functionality will not work properly
我更新到 Android Studio 1.2,现在有两个错误。
当我第一次打开我的项目时,我在屏幕顶部看到这个错误。
"Gradle project sync failed. Basic functionality will not work properly."
在消息中 Gradle 同步我得到
我的 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,我找到了一些可能的解决方案。
我试过文件 ==> 使文件无效并重新启动并删除您应该执行的文件。我只是卡住了。任何帮助将不胜感激。
这是 Android Studio 1.2 的已确认错误:
https://code.google.com/p/android/issues/detail?id=160899
主要的解决方法就是等待他们修复。
我很幸运地重新导入了项目,但每次打开项目时都必须这样做。
我更新到 Android Studio 1.2,现在有两个错误。
当我第一次打开我的项目时,我在屏幕顶部看到这个错误。
"Gradle project sync failed. Basic functionality will not work properly."
在消息中 Gradle 同步我得到
我的 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,我找到了一些可能的解决方案。
我试过文件 ==> 使文件无效并重新启动并删除您应该执行的文件。我只是卡住了。任何帮助将不胜感激。
这是 Android Studio 1.2 的已确认错误: https://code.google.com/p/android/issues/detail?id=160899
主要的解决方法就是等待他们修复。
我很幸运地重新导入了项目,但每次打开项目时都必须这样做。