Merge branch 'master' into development

This commit is contained in:
Daniel Gultsch 2015-07-03 13:09:05 +02:00
commit 1c86098f3b
2 changed files with 3 additions and 2 deletions

View File

@ -45,8 +45,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
versionCode 73
versionName "1.4.5"
versionCode 74
versionName "1.4.6"
}
compileOptions {

View File

@ -105,6 +105,7 @@ public class DNSHelper {
for(int i = 0; i < response.getAnswers().length; ++i) {
values.add(createNamePortBundle(host,5222,response.getAnswers()[i].getPayload()));
}
values.add(createNamePortBundle(host,5222));
bundle.putParcelableArrayList("values", values);
return bundle;
}