2015-10-01 21:36:38 +02:00
|
|
|
/*
|
2016-08-27 12:46:12 +02:00
|
|
|
* Copyright 2013-2016 microG Project Team
|
2015-10-01 21:36:38 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-08-27 12:46:12 +02:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-01-01 21:26:26 +01:00
|
|
|
google()
|
2016-08-27 12:46:12 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2018-06-13 17:30:57 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.1.3'
|
2018-04-01 06:14:26 +02:00
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
|
2016-08-27 12:46:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply plugin: 'idea'
|
2018-01-01 21:26:26 +01:00
|
|
|
ext.androidBuildVersionTools = "27.0.3"
|
2016-08-27 12:46:12 +02:00
|
|
|
}
|
|
|
|
|
2018-01-01 21:26:26 +01:00
|
|
|
def androidCompileSdk() { return 27 }
|
2016-04-14 22:06:42 +02:00
|
|
|
|
2018-01-01 21:26:26 +01:00
|
|
|
def androidTargetSdk() { return 27 }
|
2016-11-14 20:26:09 +01:00
|
|
|
|
|
|
|
def androidMinSdk() { return 9 }
|
|
|
|
|
2015-03-13 01:41:14 +01:00
|
|
|
subprojects {
|
2015-03-14 22:21:35 +01:00
|
|
|
group = 'org.microg'
|
2016-08-14 10:29:03 +02:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-04-01 06:14:26 +02:00
|
|
|
google()
|
2016-08-14 10:29:03 +02:00
|
|
|
}
|
2015-03-14 22:21:35 +01:00
|
|
|
}
|