2016-08-27 10:50:34 +00:00
|
|
|
/*
|
2020-07-08 18:04:23 +00:00
|
|
|
* SPDX-FileCopyrightText: 2013, microG Project Team
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-08-27 10:50:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
buildscript {
|
2020-09-07 15:13:37 +00:00
|
|
|
ext.androidMinSdk = 21
|
2020-09-18 12:08:30 +00:00
|
|
|
ext.androidTargetSdk = 29
|
2022-01-26 05:26:56 +00:00
|
|
|
ext.androidCompileSdk = 31
|
2020-07-08 18:04:23 +00:00
|
|
|
|
2016-08-27 10:50:34 +00:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-01-02 00:45:43 +00:00
|
|
|
google()
|
2016-08-27 10:50:34 +00:00
|
|
|
}
|
2020-07-08 18:04:23 +00:00
|
|
|
|
2016-08-27 10:50:34 +00:00
|
|
|
dependencies {
|
2022-01-26 05:26:56 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.1.0'
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
|
|
|
|
classpath "com.squareup.wire:wire-gradle-plugin:3.2.2"
|
2016-08-27 10:50:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply plugin: 'idea'
|
2020-07-08 18:04:23 +00:00
|
|
|
|
|
|
|
group = 'org.microg.gms'
|
2022-01-26 05:26:56 +00:00
|
|
|
version = "0.2.23.220217"
|
|
|
|
ext.appVersionCode = 220217001
|
2016-08-27 10:50:34 +00:00
|
|
|
ext.isReleaseVersion = false
|
|
|
|
}
|
|
|
|
|
2016-08-14 08:41:56 +00:00
|
|
|
subprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-04-01 05:00:24 +00:00
|
|
|
google()
|
2016-08-27 10:50:34 +00:00
|
|
|
}
|
2021-03-13 20:58:28 +00:00
|
|
|
}
|