Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a3969b1a authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Update to support long version codes.

Bug: 64459786
Test: manual
Change-Id: Iac4039fb73868b608f7c7530dc84b4bd8ccb924e
parent 8edc2a9e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ public class HelpUtils {
                // cache the version code
                PackageInfo info = context.getPackageManager().getPackageInfo(
                        context.getPackageName(), 0);
                sCachedVersionCode = Integer.toString(info.versionCode);
                sCachedVersionCode = Long.toString(info.getLongVersionCode());

                // append the version code to the uri
                builder.appendQueryParameter(PARAM_VERSION, sCachedVersionCode);