VancedMicroG/play-services-api/build.gradle

52 lines
1.6 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
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 {
compileSdkVersion androidCompileSdk()
buildToolsVersion "$androidBuildVersionTools"
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(':play-services-basement')
2016-08-04 19:45:00 +00:00
compile project(':play-services-cast-api')
compile project(':play-services-cast-framework-api')
2016-08-06 14:16:12 +00:00
compile project(':play-services-iid-api')
2016-08-04 19:45:00 +00:00
compile project(':play-services-location-api')
compile project(':play-services-wearable-api')
2015-09-28 16:27:29 +00:00
}