Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to display the android:versionName from AndroidManifest in my applications Info (About) page. Any way to do that?

share|improve this question

2 Answers

up vote 1 down vote accepted
    try {
        PackageInfo pi = getPackageManager().getPackageInfo(getPackageName(), 0);
        version = pi.versionName;
    } catch (NameNotFoundException e) {
        version = "1.0";
    }
share|improve this answer

android:versionName="@string/verName"

Get version name in the code as follows

String version = getResources().getString(R.string.verName);

share|improve this answer
Ah, I see. Define the version in strings.xml and then reference that string in AndroidManifest. I may try that as well. Thanks! – wufoo Nov 21 '12 at 15:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.