VancedMicroG/build.gradle

43 lines
1.1 KiB
Groovy
Raw Normal View History

2016-08-27 10:35:01 +00:00
/*
2017-02-07 18:44:26 +00:00
* Copyright 2013-2017 microG Project Team
2016-08-27 10:35:01 +00: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.
*/
buildscript {
repositories {
jcenter()
}
dependencies {
2017-04-26 23:03:41 +00:00
classpath 'com.android.tools.build:gradle:2.3.1'
2016-08-27 10:35:01 +00:00
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
}
}
allprojects {
apply plugin: 'idea'
2017-02-07 18:44:26 +00:00
ext.androidBuildVersionTools = "25.0.2"
2016-08-27 10:35:01 +00:00
}
2017-02-07 18:44:26 +00:00
def androidCompileSdk() { return 25 }
2016-08-27 10:35:01 +00:00
2017-02-07 18:44:26 +00:00
def androidTargetSdk() { return 23 }
def androidMinSdk() { return 7 }
2016-08-27 10:35:01 +00:00
subprojects {
repositories {
jcenter()
}
}