VancedMicroG/play-services-api/build.gradle

44 lines
1.1 KiB
Groovy
Raw Normal View History

2015-09-28 16:27:29 +00:00
/*
* Copyright 2013-2015 µg Project Team
*
* 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 {
2015-09-28 16:27:29 +00:00
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
2015-01-06 03:05:25 +00:00
}
}
apply plugin: 'com.android.library'
2015-09-28 16:27:29 +00:00
apply plugin: 'com.github.dcendents.android-maven'
2015-03-12 23:22:54 +00:00
2015-03-14 21:09:18 +00:00
group = 'org.microg'
2015-03-12 23:22:54 +00:00
version = '1.0-SNAPSHOT'
2015-01-06 03:05:25 +00:00
android {
2015-09-28 16:27:29 +00:00
compileSdkVersion 23
buildToolsVersion "23.0.1"
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')
}