Solved it:  use

PackageInfo pinfo = getPackageManager().getPackageInfo
(this.getPackageName(), 0);
String versionName = pinfo.versionName;


On Jan 10, 5:14 pm, jax <[email protected]> wrote:
> How to I get the version name from the Manifest, I tried the following
> but I get a Null Pointer Exception.
>
>                 //Set the version
>                 PackageInfo info = new PackageInfo();
>
>                 TextView versionTextView = (TextView) 
> findViewById(R.id.version);
>                 versionTextView.setText("Version "+info.versionName);
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to