我正在尝试将this jar文件添加到我的Android Studio项目中:
我做了必要的步骤,将jar添加为'library'。但是build会给我以下错误:
Error:error reading C:\Users\Malik\AndroidStudioProjects\test6\app\libs\imageviewtouch.jar; error in opening zip file
tion timeout.)
<a href="syncProject">Re-download dependencies and sync project (requires network)</a>
<a href="syncProject">Re-download dependencies and sync project (requires network)</a>
我尝试添加我从某个地方下载的另一个jar文件但没有给出错误。
此jar文件是否已损坏或我是否遗漏了依赖项?
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.greenbergc.test6"
minSdkVersion 14
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.0'
compile 'com.android.support:design:23.1.0'
compile files('libs/about-0.2.1.jar')
compile files('libs/imageviewtouch.jar')
}
答案 0 :(得分:1)
我尝试添加此jar文件并成功添加,没有任何错误。我不知道你是如何添加这个文件的。这是我用来添加这个jar文件的过程: