VancedMicroG/play-services-api/build.gradle

56 lines
1.5 KiB
Groovy
Raw Normal View History

2015-09-28 16:27:29 +00:00
/*
2015-09-28 16:30:12 +00:00
* Copyright 2013-2015 microG Project Team
2015-09-28 16:27:29 +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.
*/
2015-01-06 03:05:25 +00:00
buildscript {
repositories {
2015-07-04 11:11:15 +00:00
jcenter()
2015-01-06 03:05:25 +00:00
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
2015-01-06 03:05:25 +00:00
}
}
apply plugin: 'com.android.library'
2015-03-12 23:22:54 +00:00
String getMyVersionName() {
def stdout = new ByteArrayOutputStream()
2016-04-14 19:33:21 +00:00
if (rootProject.file("gradlew").exists())
exec { commandLine 'git', 'describe', '--tags', '--always', '--dirty'; standardOutput = stdout }
else // automatic build system, don't tag dirty
exec { commandLine 'git', 'describe', '--tags', '--always'; standardOutput = stdout }
return stdout.toString().trim().substring(1)
}
2015-03-14 21:09:18 +00:00
group = 'org.microg'
2016-04-14 19:33:21 +00:00
version = getMyVersionName()
2015-01-06 03:05:25 +00:00
android {
2015-09-28 16:27:29 +00:00
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
versionName getMyVersionName()
}
2015-04-13 21:52:26 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
}
2015-01-06 03:05:25 +00:00
}
2015-09-28 16:27:29 +00:00
dependencies {
compile project(':safe-parcel')
}