我想給this jar文件添加到我的Android Studio項目:錯誤添加JAR文件到Android Studio項目
我做了必要的步驟添加的jar作爲「圖書館」。但是,構建使我有以下錯誤:
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')
}
顯示您Gridl文件代碼.. – Destro
用最簡單的方法。下載jar,將它粘貼到你的項目庫文件夾中。重建項目或某些用戶需要重新安裝Android Studio – Arshad
Destro,我將它粘貼在上面。 – Malik