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-07-08 18:04:23 +00:00
|
|
|
ext.nlpVersion = '2.0-alpha1'
|
|
|
|
ext.remoteDroidGuardVersion = '0.1.1'
|
|
|
|
ext.safeParcelVersion = '1.6.0'
|
|
|
|
ext.wearableVersion = '0.1.1'
|
|
|
|
|
|
|
|
ext.kotlinVersion = '1.3.72'
|
|
|
|
ext.coroutineVersion = '1.3.7'
|
|
|
|
|
|
|
|
ext.annotationVersion = '1.1.0'
|
|
|
|
ext.appcompatVersion = '1.1.0'
|
|
|
|
ext.fragmentVersion = '1.2.5'
|
|
|
|
ext.lifecycleVersion = '2.2.0'
|
|
|
|
ext.mediarouterVersion = '1.1.0'
|
|
|
|
ext.multidexVersion = '2.0.1'
|
|
|
|
ext.navigationVersion = '2.3.0'
|
|
|
|
ext.preferenceVersion = '1.1.1'
|
|
|
|
ext.recyclerviewVersion = '1.1.0'
|
|
|
|
|
|
|
|
ext.supportLibraryVersion = "28.0.0"
|
|
|
|
ext.slf4jVersion = "1.7.25"
|
|
|
|
|
2020-07-21 12:44:37 +00:00
|
|
|
ext.androidBuildGradleVersion = "4.0.1"
|
2020-07-08 18:04:23 +00:00
|
|
|
|
|
|
|
ext.androidBuildVersionTools = "29.0.3"
|
|
|
|
|
2020-07-21 12:43:41 +00:00
|
|
|
ext.androidMinSdk = 21
|
2020-07-08 18:04:23 +00:00
|
|
|
ext.androidTargetSdk = 29
|
|
|
|
ext.androidCompileSdk = 29
|
|
|
|
|
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 {
|
2020-07-21 12:59:10 +00:00
|
|
|
classpath "com.android.tools.build:gradle:$androidBuildGradleVersion"
|
2020-07-08 18:04:23 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
2016-08-27 10:50:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply plugin: 'idea'
|
2020-07-08 18:04:23 +00:00
|
|
|
|
|
|
|
group = 'org.microg.gms'
|
2020-07-21 14:04:17 +00:00
|
|
|
version = "0.2.10.19430-vanced"
|
|
|
|
ext.appVersionCode = 194301000
|
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
|
|
|
}
|
2016-08-14 08:41:56 +00:00
|
|
|
}
|
|
|
|
|