Cache It is currently in use by another Gradle instance

两盒软妹~` 提交于 2020-02-28 08:13:09

问题


I don't understand why this is happening.

Gradle sync failed: Timeout waiting to lock buildscript class cache for build file '/Users/user/Documents/android-studio-pubble/App/build.gradle' (/Users/user/.gradle/caches/2.2.1/scripts/build_bqh4uod6cat7u5cm5qkoye2ky/ProjectScript/buildscript). It is currently in use by another Gradle instance.
         Owner PID: unknown
         Our PID: 909
         Owner Operation: unknown
         Our operation: Initialize cache
         Lock file: /Users/user/.gradle/caches/2.2.1/scripts/build_bqh4uod6cat7u5cm5qkoye2ky/ProjectScript/buildscript/cache.properties.lock
         Consult IDE log for more details (Help | Show Log)

general gladle is:

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

buildscript {
    repositories {
        jcenter()
        maven { url '/Users/user/Documents/sdk/extras/android/m2repository' }

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.2.3'

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

allprojects {
    repositories {
        jcenter()
        mavenCentral()
    }
    tasks.withType(JavaCompile) {
        options.compilerArgs << "-Xlint:deprecation" << "-Xlint:unchecked"
    }
}

App gradle file is:

apply plugin: 'com.android.application'

android {
    signingConfigs {
        pubblemod {
            keyAlias 'testapp'
            keyPassword 'testapp'
            storeFile file('/Users/user/Documents/sdk/testapp.keystore')
            storePassword 'testapp'
        }
    }
    compileSdkVersion 22
    buildToolsVersion '22.0.1'
    defaultConfig {
        applicationId "com.test.app"
        minSdkVersion 16
        targetSdkVersion 22
        versionCode 1
        versionName "1.1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        debug {

        }
    }
    packagingOptions {
        exclude 'META-INF/DEPENDENCIES.txt'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/dependencies.txt'
        exclude 'META-INF/LGPL2.1'
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.intellij:annotations:+@jar'
    compile 'com.android.support:appcompat-v7:22.2.1'
    compile 'com.android.support:design:22.2.0'
    compile 'com.android.support:support-v13:22.0.+'
    compile 'org.apache.commons:commons-lang3:3.2.+'
    compile 'com.jakewharton:butterknife:6.0.0'
    compile 'com.afollestad:material-dialogs:0.7.7.0'
    compile 'it.neokree:MaterialTabs:0.11'
    compile 'com.github.johnkil.android-appmsg:appmsg:1.2.0'
    compile 'com.cocosw:bottomsheet:1.+@aar'
    compile 'de.psdev.licensesdialog:licensesdialog:1.7.0'
    compile 'com.afollestad:material-dialogs:0.7.7.0'
    compile 'joda-time:joda-time:2.7'

    compile 'com.google.android.gms:play-services:3.1+'
    compile project(':loadingLibrary')
    compile project(':welcomeLibrary')

//    compile project(':licenceDialogLibrary')
    compile project(':Bootstrap')
}

It used to work and then i wanted to add a new module and it all went downwards after that. Does anyone had this problem and solved it? I don't even know what is wrong..or how i made this.


回答1:


The easiest way to solve this is to be delete a cache.

For Windows it's under C:\Users\Administrator\.gradle\caches

For Mac OSX it's ~/.gradle/caches

Try to execute the following command:

find ~/.gradle -type f -name "*.lock" | while read f; do rm $f; done



回答2:


Probably duplicated question. See this question, and especially this answer.



来源:https://stackoverflow.com/questions/32059212/cache-it-is-currently-in-use-by-another-gradle-instance

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!