Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
Bump GMS version to 22.49.13
Browse files Browse the repository at this point in the history
  • Loading branch information
inotia00 committed Dec 23, 2022
1 parent 4c0fe04 commit c7846b3
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit c7846b3

Please sign in to comment.