#XfQaD: read package identity and version from platform project with Xamarin.Forms
All of my apps, no matter on which platform, need to know their version number (for displaying in app) and their package identifier (for opening them in their store). If you are following around for some time, you know I prefer own solutions in a lot of use cases – that’s why I created another XfQaD for this task, even if there are plugins around for that.
The concept
Once again, I am utilizing the built-in Xamarin.Forms
DependencyService for this task. So the concept is pretty easy:
- interface that dictates the available options
- platform implementations that execute the code and return the values I want
Let’s have a look at
The interface
1
2
3
4
5
6
7
8
9
10
11
namespace PackageInfo
{
public interface IAppDataHelper
{
string GetApplicationPackageName();
string GetApplicationVersion();
string GetApplicationVersionName();
}
}
The interface provides three string returning methods. As the versioning is different on all three platforms, I return two different version strings to cover that fact.
UWP implementation
The UWP implementation uses the Package class, which provides access to the package information, including those we are interested in. As the UWP has just one version type, it returns the same value for version and version name:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using PackageInfo.UWP;
using Windows.ApplicationModel;
using Xamarin.Forms;
[assembly: Dependency(typeof(AppDataHelper))]
namespace PackageInfo.UWP
{
public class AppDataHelper : IAppDataHelper
{
private Package _package;
public AppDataHelper()
{
_package = Package.Current;
}
public string GetApplicationPackageName()
{
return _package.Id.FamilyName;
}
public string GetApplicationVersion()
{
return $"{_package.Id.Version.Major}.{_package.Id.Version.Minor}.{_package.Id.Version.Build}.{_package.Id.Version.Revision}";
}
public string GetApplicationVersionName()
{
return $"{_package.Id.Version.Major}.{_package.Id.Version.Minor}.{_package.Id.Version.Build}.{_package.Id.Version.Revision}";
}
}
}
Android implementation
The Android implementation uses the PackageManager class, which uses the GetPackageInfo method to provide the information about the currently installed package. As Android has a different version structure (see more info here), it returns two different strings for version and version name:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using Android.Content;
using Android.Content.PM;
using PackageInfo.Droid;
using Xamarin.Forms;
[assembly: Dependency(typeof(AppDataHelper))]
namespace PackageInfo.Droid
{
public class AppDataHelper : IAppDataHelper
{
private readonly Context _context;
private readonly PackageManager _packageManager;
public AppDataHelper()
{
_context = Android.App.Application.Context;
_packageManager = _context.PackageManager;
}
public string GetApplicationPackageName()
{
return _context.PackageName;
}
public string GetApplicationVersion()
{
return _packageManager.GetPackageInfo(_context.PackageName, 0).VersionCode.ToString();
}
public string GetApplicationVersionName()
{
return _packageManager.GetPackageInfo(_context.PackageName, 0).VersionName;
}
}
}
iOS implementation
Even iOS provides a way to get the package identity and version. It uses the NSBundle.MainBundle implementation to get the info. To get those we are interested in, we just query the InfoDictionary
the MainBundle
holds:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using Foundation;
using PackageInfo.iOS;
using Xamarin.Forms;
[assembly: Dependency(typeof(AppDataHelper))]
namespace PackageInfo.iOS
{
public class AppDataHelper : IAppDataHelper
{
private readonly NSDictionary _infoDictionary;
public AppDataHelper()
{
_infoDictionary = NSBundle.MainBundle.InfoDictionary;
}
public string GetApplicationPackageName()
{
return _infoDictionary[new NSString("CFBundleIdentifier")].ToString();
}
public string GetApplicationVersion()
{
var appVersionString = NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleShortVersionString").ToString();
var appBuildNumber = NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleVersion").ToString();
return $"{appVersionString}.{appBuildNumber}";
}
public string GetApplicationVersionName()
{
return NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleShortVersionString").ToString();
}
}
}
That’s all it takes to get your application’s package identity and version. You can have a look yourself in this GitHub sample and play around with it. If you want to extend and read more information, the above implementation is easily expandable.
As always, I hope this post will be helpful for some of you. Happy coding, everyone!
Comments powered by Disqus.