Monday 14 October 2013

Android Issue

Inside any AndroidManifest.xml  file it is possible to add useful meta-data for applications. I could put here basic information like author name, application version and so on.
<meta-data android:name="author" android:value="John Doe" />
<meta-data android:name="serverMinVersion" android:value="6.1.1" />
Inside my application about activity I want to show this info.
ApplicationInfo aInfo = getPackageManager().getApplicationInfo(
                 getPackageName(), PackageManager.GET_META_DATA);
String authorName = aInfo.metaData.getString("author");
String serverMinVersion = aInfo.metaData.getString("serverMinVersion");
// show this info
But something happened after I changed the version through an upgrade.
<meta-data android:name="serverMinVersion" android:value="6.2" />
Suddenly, the version shown inside about info was null.

At first I thought I made a mistype , then that I changed something. But, after a while, I realized that it's not my problem, but an Android bug. I saw that a value like 6.2a is working without a problem. Looking for similarities I found this bug, which tells that getString() method on metaData for something with only numeric values returns always null.

Before finding this bug, it wasn't obvious for me that there is a difference between 6.1.1 and 6.2 . 6.1.1 cannot be considered a number, while 6.2 it is one.

Solution, as told inside the bug link, was to get the value like this:
String serverMinVersion = aInfo.metaData.get("serverMinVersion").toString();
This is just a small bug inside Android beast and by telling that there are three years from reporting it and no one did anything, I can just give a thumb down to Android.

1 comment:

  1. Hard Rock Hotel & Casino Toledo - Mapyro
    View detailed driving directions 경기도 출장샵 to Hard 상주 출장안마 Rock Hotel & Casino Toledo (Mt.) from Mapyro. 보령 출장마사지 Highway 80 - 진주 출장안마 East 평택 출장샵 Flamingo Way, Toledo, IL 61340.

    ReplyDelete