2016-08-27 12:50:34 +02:00
|
|
|
/*
|
2020-07-08 20:04:23 +02:00
|
|
|
* SPDX-FileCopyrightText: 2013, microG Project Team
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-08-27 12:50:34 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
buildscript {
|
2021-07-01 15:38:17 +02:00
|
|
|
ext.cronetVersion = '91.0.4472.120.1'
|
2021-03-13 21:58:28 +01:00
|
|
|
ext.safeParcelVersion = '1.7.0'
|
2020-07-08 20:04:23 +02:00
|
|
|
|
2021-05-14 01:59:12 +02:00
|
|
|
ext.kotlinVersion = '1.4.32'
|
|
|
|
ext.coroutineVersion = '1.3.8'
|
2020-07-08 20:04:23 +02:00
|
|
|
|
2021-05-14 01:59:12 +02:00
|
|
|
ext.annotationVersion = '1.2.0'
|
2021-03-13 21:58:28 +01:00
|
|
|
ext.appcompatVersion = '1.2.0'
|
2021-03-03 13:19:29 +01:00
|
|
|
ext.fragmentVersion = '1.3.0'
|
2021-05-14 01:59:12 +02:00
|
|
|
ext.lifecycleVersion = '2.3.1'
|
|
|
|
ext.mediarouterVersion = '1.2.2'
|
|
|
|
ext.navigationVersion = '2.3.5'
|
2020-07-08 20:04:23 +02:00
|
|
|
ext.preferenceVersion = '1.1.1'
|
|
|
|
ext.recyclerviewVersion = '1.1.0'
|
|
|
|
|
|
|
|
ext.supportLibraryVersion = "28.0.0"
|
2020-08-05 01:57:23 +02:00
|
|
|
ext.wireVersion = '3.2.2'
|
2020-07-08 20:04:23 +02:00
|
|
|
|
2021-03-13 21:58:28 +01:00
|
|
|
ext.androidBuildGradleVersion = "4.1.0"
|
2020-07-08 20:04:23 +02:00
|
|
|
|
2021-05-14 01:59:12 +02:00
|
|
|
ext.androidBuildVersionTools = "30.0.2"
|
2020-07-08 20:04:23 +02:00
|
|
|
|
2020-09-07 17:13:37 +02:00
|
|
|
ext.androidMinSdk = 21
|
2020-09-18 14:08:30 +02:00
|
|
|
ext.androidTargetSdk = 29
|
2020-10-14 23:00:04 +02:00
|
|
|
ext.androidCompileSdk = 30
|
2020-07-08 20:04:23 +02:00
|
|
|
|
2016-08-27 12:50:34 +02:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-01-02 01:45:43 +01:00
|
|
|
google()
|
2016-08-27 12:50:34 +02:00
|
|
|
}
|
2020-07-08 20:04:23 +02:00
|
|
|
|
2016-08-27 12:50:34 +02:00
|
|
|
dependencies {
|
2021-09-11 09:36:50 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:7.0.2'
|
2020-07-08 20:04:23 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
2020-08-05 01:57:23 +02:00
|
|
|
classpath "com.squareup.wire:wire-gradle-plugin:$wireVersion"
|
2016-08-27 12:50:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply plugin: 'idea'
|
2020-07-08 20:04:23 +02:00
|
|
|
|
|
|
|
group = 'org.microg.gms'
|
2021-09-11 09:36:50 +02:00
|
|
|
version = "0.2.22.212658"
|
|
|
|
ext.appVersionCode = 212658001
|
2016-08-27 12:50:34 +02:00
|
|
|
ext.isReleaseVersion = false
|
|
|
|
}
|
|
|
|
|
2016-08-14 10:41:56 +02:00
|
|
|
subprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-04-01 07:00:24 +02:00
|
|
|
google()
|
2016-08-27 12:50:34 +02:00
|
|
|
}
|
2021-03-13 21:58:28 +01:00
|
|
|
}
|