VancedMicroG/build.gradle

118 lines
3.2 KiB
Groovy
Raw Normal View History

/*
2020-07-08 18:04:23 +00:00
* SPDX-FileCopyrightText: 2013, microG Project Team
* SPDX-License-Identifier: Apache-2.0
*/
buildscript {
2021-07-01 10:22:28 +00:00
ext.cronetVersion = '91.0.4472.120.1'
2022-02-01 19:23:12 +00:00
ext.nlpVersion = '2.0-alpha8'
ext.safeParcelVersion = '1.7.0'
2020-07-08 18:04:23 +00:00
ext.wearableVersion = '0.1.1'
2022-01-18 17:44:18 +00:00
ext.kotlinVersion = '1.6.10'
2021-12-06 17:31:21 +00:00
ext.coroutineVersion = '1.5.2'
2020-07-08 18:04:23 +00:00
2021-05-10 14:25:20 +00:00
ext.annotationVersion = '1.2.0'
2022-01-24 18:11:36 +00:00
ext.appcompatVersion = '1.4.1'
2022-01-18 17:44:18 +00:00
ext.coreVersion = '1.7.0'
ext.fragmentVersion = '1.4.0'
ext.lifecycleVersion = '2.4.0'
ext.mediarouterVersion = '1.2.5'
2020-07-08 18:04:23 +00:00
ext.multidexVersion = '2.0.1'
2021-05-10 14:25:20 +00:00
ext.navigationVersion = '2.3.5'
2020-07-08 18:04:23 +00:00
ext.preferenceVersion = '1.1.1'
2022-01-18 17:44:18 +00:00
ext.recyclerviewVersion = '1.2.0'
ext.webkitVersion = '1.4.0'
2020-07-08 18:04:23 +00:00
ext.slf4jVersion = '1.7.25'
2021-10-07 08:20:42 +00:00
ext.volleyVersion = '1.2.1'
ext.wireVersion = '3.2.2'
2020-07-08 18:04:23 +00:00
2022-01-18 17:44:18 +00:00
ext.androidBuildGradleVersion = '7.0.4'
2020-07-08 18:04:23 +00:00
2021-05-10 14:25:20 +00:00
ext.androidBuildVersionTools = '30.0.2'
2020-07-08 18:04:23 +00:00
ext.androidMinSdk = 14
ext.androidTargetSdk = 29
2022-01-18 17:44:18 +00:00
ext.androidCompileSdk = 31
2020-07-08 18:04:23 +00:00
repositories {
jcenter()
google()
}
2020-07-08 18:04:23 +00:00
dependencies {
2020-07-08 18:04:23 +00:00
classpath "com.android.tools.build:gradle:$androidBuildGradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.squareup.wire:wire-gradle-plugin:$wireVersion"
}
}
2020-07-08 18:04:23 +00:00
def execResult(...args) {
def stdout = new ByteArrayOutputStream()
exec {
commandLine args
standardOutput = stdout
}
return stdout.toString().trim()
}
2022-01-24 18:53:07 +00:00
def gmsVersion = "21.48.16"
2020-07-08 18:04:23 +00:00
def gmsVersionCode = Integer.parseInt(gmsVersion.replaceAll('\\.', ''))
def gitVersionBase = execResult('git', 'describe', '--tags', '--abbrev=0', '--match=v[0-9]*').substring(1)
def gitCommitCount = Integer.parseInt(execResult('git', 'rev-list', '--count', "v$gitVersionBase..HEAD"))
def gitCommitId = execResult('git', 'show-ref', '--abbrev=7', '--head', 'HEAD').split(' ')[0]
def gitDirty = execResult('git', 'status', '--porcelain').size() > 0
def ourVersionBase = gitVersionBase.substring(0, gitVersionBase.lastIndexOf('.'))
def ourVersionMinor = Integer.parseInt(ourVersionBase.substring(ourVersionBase.lastIndexOf('.') + 1))
def ourVersionCode = gmsVersionCode * 1000 + ourVersionMinor * 2 + (gitCommitCount > 0 || gitDirty ? 1 : 0)
def ourVersionName = "$ourVersionBase.$gmsVersionCode" + (gitCommitCount > 0 && !gitDirty ? "-$gitCommitCount" : "") + (gitDirty ? "-dirty" : "") + (gitCommitCount > 0 && !gitDirty ? " ($gitCommitId)" : "")
logger.lifecycle('Starting build for version {} ({})...', ourVersionName, ourVersionCode)
@Deprecated
String getMyVersionName() {
return ourVersionName
}
@Deprecated
int getMyVersionCode() {
return ourVersionCode
}
allprojects {
apply plugin: 'idea'
2020-07-08 18:04:23 +00:00
group = 'org.microg.gms'
version = ourVersionName
ext.appVersionCode = ourVersionCode
ext.isReleaseVersion = false
}
2020-07-08 18:04:23 +00:00
@Deprecated
def androidCompileSdk() { return androidCompileSdk }
2020-07-08 18:04:23 +00:00
@Deprecated
def androidTargetSdk() { return androidTargetSdk }
2020-07-08 18:04:23 +00:00
@Deprecated
def androidMinSdk() { return androidMinSdk }
2020-07-08 18:04:23 +00:00
@Deprecated
def versionCode() {
2020-07-08 18:04:23 +00:00
return ourVersionCode
}
2020-07-08 18:04:23 +00:00
@Deprecated
def versionName() {
2020-07-08 18:04:23 +00:00
return ourVersionName
}
subprojects {
repositories {
jcenter()
google()
}
}