In Xamarin Form mobile development, I created one apk and uploaded on Google Playstore.
Apk current version = 12;
Apk in mobile =11;
I want to compare my installed version of apk(11) with current version of apk on Playstore(12) and want to force to update apk.
I got coding for find installed version of apk by
Context context=this.ApplicationContext;
int code = context.PackageManager.GetPackageInfo(context.PackageName, 0).VersionCode;
How to find the current version of apk on playstore using xamarin c#. Thanks advance.