我开始学习android并尝试调用WebService。没有WebService调用的基本代码运行正常。
然后我向库中添加了两个文件 android-support-v4.jar和android-async-http-1.4.4.jar。
我收到以下错误
错误:任务':app:transformClassesWithJarMergingForDebug'执行失败。
com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:android / support / v4 / util / MapCollections $ ArrayIterator.class
下面是代码的一部分,这是必需的
public void invokeWS(RequestParams params) {
String url = "http://localhost:8080/OnlineStore/kmsg/grocery/Login";
AsyncHttpClient client = new AsyncHttpClient();
client.post(url, params, new AsyncHttpResponseHandler(){
@Override
public void onSuccess(String response){
try{
JSONObject jobj = new JSONObject(response);
Toast.makeText(getApplicationContext(), "You are logged in", Toast.LENGTH_LONG).show();
}
catch(JSONException jexec){
Toast.makeText(getApplicationContext(), "Error Occured [Server's JSON response might be invalid]!", Toast.LENGTH_LONG).show();
jexec.printStackTrace();
}
} // End of onSuccess
@Override
public void onFailure(int Status, Throwable error, String content){
Toast.makeText(getApplicationContext(), "You failed to login", Toast.LENGTH_LONG).show();
} // End of onFailure
}
); // End of post function
下面是我的build.gradle
申请插件:'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "kmsg.com.listwithadapters"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
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'
compile 'com.google.android.gms:play-services-appindexing:8.1.0'
compile files('libs/android-async-http-1.4.4.jar')
}
从错误中可以看出,存在一些重复的条目,但为什么构建系统无法自行解决它?任何快速见解都可以帮助我理解出现此错误的原因。
谢谢朋友们
答案 0 :(得分:0)
正如我所提到的,它更多的是运行时错误和错误消息,它提示类android / support / v4 / util / MapCollections $ ArrayIterator.class的重复条目。
我从libs文件夹中删除了android-support-v4.jar文件(假设这是重复的并且错误已解决)。
感谢您的所有想法和答案!