当gradle在mac上构建时,Android工作室会崩溃

时间:2016-04-28 07:45:27

标签: android android-studio gradle build

我从一年开始工作android studio但我无法面对这类问题。我正在做的是在应用build.gradle中添加支持库的依赖关系,然后同步项目。

Gradle构建运行在后台启动,然后一段时间后工作室自动崩溃。没有错误或崩溃发现日志。并且如果我从gradle中删除了依赖项,那么它可以正常工作我还重启了机器并获得了工作室的最新更新,但它无法解决问题。提前感谢您的帮助。

这是我的应用级build.gradle文件。我正在添加compile' com.android.support:design:22.2.0'我项目中的图书馆

apply plugin: 'com.android.application'

android {
   compileSdkVersion 23
   buildToolsVersion "23.0.2"

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

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:recyclerview-v7:23.1.1'
    compile 'com.google.code.gson:gson:2.4'
    compile 'com.google.android.gms:play-services-base:8.4.0'
    compile 'com.google.android.gms:play-services-maps:8.4.0'
    compile 'com.google.android.gms:play-services-gcm:8.4.0'
    compile 'com.isseiaoki:simplecropview:1.0.9'
    compile "com.mixpanel.android:mixpanel-android:4.8.0"
    compile 'de.hdodenhof:circleimageview:2.0.0'
    compile 'com.facebook.android:facebook-android-sdk:4.10.1'
}

apply plugin: 'com.google.gms.google-services'

0 个答案:

没有答案