在网络上投影时,AndroidStudio 1.5.1失败

时间:2015-12-24 10:19:53

标签: android-studio

我们有一个可在本地(Windows)计算机上正确构建的AndroidStudio项目。接下来,我们需要将项目移动到网络安装的驱动器。接下来,构建项目失败,出现以下错误:

  

错误:任务':app:clean'执行失败。

     
    

无法删除目录:Z:\ xxx \ yyy \ projectname \ app \ build \ intermediates \ res \ debug \ drawable-xhdpi

  

对于另一个项目,我们收到如下错误:

  

错误:错误:Z:\ develop \ fastID \ fastID   源\项目名称\应用\建立\中间体\ RES \调试\ XML \ usb_device_filter.xml   (系统找不到指定的路径)

我们最近一次使用AndroidStudio(大约六个月前),我们使用了AndroidStudio 1.2版,我们从网络驱动器打开一个项目没有任何问题。

这是build.gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 19
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "jp.sinfot.printer.sft6145printapp"
        minSdkVersion 14
        targetSdkVersion 19
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    lintOptions {
        abortOnError false
        checkReleaseBuilds false
    }
}

dependencies {
    compile 'com.android.support:support-v4:19.1.0'
    compile files('libs/sft6145printer-1.1.0.jar')
    compile files('libs/java_websocket.jar')
}

后记:看起来@rdfrahm有the exact same problem。但这个可怜的家伙从来没有得到任何回应......

1 个答案:

答案 0 :(得分:1)

更改build.gradle文件并尝试...

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "jp.sinfot.printer.sft6145printapp"
    minSdkVersion 15
    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'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'

}

重建项目一次,然后运行。 还有一件事是我们无法在调试模式下删除任何文件。 我希望这会对你有所帮助。