From c7846b3cb8570b32e9506ae3b315b769169b273e Mon Sep 17 00:00:00 2001 From: inotia00 Date: Fri, 23 Dec 2022 16:38:51 +0900 Subject: [PATCH] Bump GMS version to 22.49.13 --- build.gradle | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 4c7dad44b0..accd8069b1 100644 --- a/build.gradle +++ b/build.gradle @@ -42,12 +42,30 @@ buildscript { } } +def execResult(...args) { + def stdout = new ByteArrayOutputStream() + exec { + commandLine args + standardOutput = stdout + } + return stdout.toString() +} + +def gmsVersion = "22.49.13" +def gmsVersionCode = Integer.parseInt(gmsVersion.replaceAll('\\.', '')) + +def ourVersionBase = "0.2.26" +def ourVersionMinor = 52 + +def ourVersionCode = gmsVersionCode * 1000 + ourVersionMinor +def ourVersionName = "$ourVersionBase.$gmsVersionCode" + allprojects { apply plugin: 'idea' group = 'org.microg.gms' - version = "0.2.25.224113" - ext.appVersionCode = 224113003 + version = ourVersionName + ext.appVersionCode = ourVersionCode ext.isReleaseVersion = false }