错误:任务“:app:compileDebugJavaWithJavac”执行失败。
java.io.FileNotFoundException: /app/libs/perfectjpattern-core-1.0.0.jar (没有这样的文件或目录)
我知道我需要安装 JAR。我不明白如果没有做出改变,怎么会变成这种情况。可能是因为新的 Android Studio?Prew 使用的是 2.1.alpha4
毕业典礼
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "xxxxxxxxxx"
minSdkVersion 21
targetSdkVersion 23
versionCode 11
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
.....
compile files('libs/perfectjpattern-core-1.0.0.jar')
.....
}