将JAR文件添加到Android Studio项目时出错

时间:2015-11-04 09:59:13

标签: java android android-studio jar

我正在尝试将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')

}

1 个答案:

答案 0 :(得分:1)

我尝试添加此jar文件并成功添加,没有任何错误。我不知道你是如何添加这个文件的。这是我用来添加这个jar文件的过程:

  1. 从github下载此项目。
  2. 从libs文件夹中提取项目并获取jar文件。
  3. 现在在我的项目的libs文件夹中,我只需粘贴这个jar文件。
  4. 在android studio中,转到libs文件夹 - &gt;右键单击imageviewtouch jar文件 - &gt;添加为库。
  5. 完成