2015-09-28 18:27:29 +02:00
|
|
|
/*
|
2015-09-28 18:30:12 +02:00
|
|
|
* Copyright 2013-2015 microG Project Team
|
2015-09-28 18:27:29 +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.
|
|
|
|
*/
|
|
|
|
|
2015-01-06 04:05:25 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2015-07-04 13:11:15 +02:00
|
|
|
jcenter()
|
2015-01-06 04:05:25 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2016-01-22 03:44:27 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:1.5.0'
|
2015-09-28 18:27:29 +02:00
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
|
2015-01-06 04:05:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
2015-09-28 18:27:29 +02:00
|
|
|
apply plugin: 'com.github.dcendents.android-maven'
|
2015-03-13 00:22:54 +01:00
|
|
|
|
2016-01-22 03:44:27 +01:00
|
|
|
String getMyVersionName() {
|
|
|
|
def stdout = new ByteArrayOutputStream()
|
|
|
|
exec {
|
|
|
|
commandLine 'git', 'describe', '--tags', '--always', '--dirty'
|
|
|
|
standardOutput = stdout
|
|
|
|
}
|
|
|
|
return stdout.toString().trim()
|
|
|
|
}
|
|
|
|
|
2015-03-14 22:09:18 +01:00
|
|
|
group = 'org.microg'
|
2016-01-22 03:44:27 +01:00
|
|
|
version = getMyVersionName().substring(1)
|
2015-01-06 04:05:25 +01:00
|
|
|
|
|
|
|
android {
|
2015-09-28 18:27:29 +02:00
|
|
|
compileSdkVersion 23
|
2015-11-13 10:54:27 +01:00
|
|
|
buildToolsVersion "23.0.2"
|
2016-01-22 03:44:27 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
versionName getMyVersionName()
|
|
|
|
}
|
|
|
|
|
2015-04-13 23:52:26 +02:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_6
|
|
|
|
}
|
2015-01-06 04:05:25 +01:00
|
|
|
}
|
2015-09-28 18:27:29 +02:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':safe-parcel')
|
|
|
|
}
|