1 /* 2 * Copyright (C) 2015 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License 15 */ 16 17 apply plugin: 'com.android.library' 18 19 archivesBaseName = 'preference-v7' 20 21 dependencies { 22 compile project(':support-v4') 23 compile project(':support-appcompat-v7') 24 compile project(':support-recyclerview-v7') 25 } 26 27 android { 28 compileSdkVersion project.ext.currentSdk 29 30 sourceSets { 31 main.manifest.srcFile 'AndroidManifest.xml' 32 main.java.srcDir 'src' 33 main.java.srcDir 'constants' 34 main.res.srcDir 'res' 35 main.assets.srcDir 'assets' 36 main.resources.srcDir 'src' 37 38 // this moves src/instrumentTest to tests so all folders follow: 39 // tests/java, tests/res, tests/assets, ... 40 // This is a *reset* so it replaces the default paths 41 androidTest.setRoot('tests') 42 androidTest.java.srcDir 'tests/src' 43 } 44 45 compileOptions { 46 sourceCompatibility JavaVersion.VERSION_1_7 47 targetCompatibility JavaVersion.VERSION_1_7 48 } 49 50 lintOptions { 51 // TODO: fix errors and reenable. 52 abortOnError false 53 } 54 55 buildTypes.all { 56 consumerProguardFiles 'proguard-rules.pro' 57 } 58 } 59 60 android.libraryVariants.all { variant -> 61 def name = variant.buildType.name 62 63 if (name.equals(com.android.builder.core.BuilderConstants.DEBUG)) { 64 return; // Skip debug builds. 65 } 66 def suffix = name.capitalize() 67 68 def jarTask = project.tasks.create(name: "jar${suffix}", type: Jar){ 69 dependsOn variant.javaCompile 70 from variant.javaCompile.destinationDir 71 from 'LICENSE.txt' 72 } 73 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) { 74 source android.sourceSets.main.java 75 classpath = files(variant.javaCompile.classpath.files) + files( 76 "${android.sdkDirectory}/platforms/${android.compileSdkVersion}/android.jar") 77 } 78 79 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) { 80 classifier = 'javadoc' 81 from 'build/docs/javadoc' 82 } 83 84 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) { 85 classifier = 'sources' 86 from android.sourceSets.main.java.srcDirs 87 } 88 89 artifacts.add('archives', javadocJarTask); 90 artifacts.add('archives', sourcesJarTask); 91 } 92 93 uploadArchives { 94 repositories { 95 mavenDeployer { 96 repository(url: uri(rootProject.ext.supportRepoOut)) { 97 } 98 99 pom.project { 100 name 'Android Support Preference v7' 101 description "Android Support Preference v7" 102 url 'http://developer.android.com/tools/extras/support-library.html' 103 inceptionYear '2015' 104 105 licenses { 106 license { 107 name 'The Apache Software License, Version 2.0' 108 url 'http://www.apache.org/licenses/LICENSE-2.0.txt' 109 distribution 'repo' 110 } 111 } 112 113 scm { 114 url "http://source.android.com" 115 connection "scm:git:https://android.googlesource.com/platform/frameworks/support" 116 } 117 developers { 118 developer { 119 name 'The Android Open Source Project' 120 } 121 } 122 } 123 } 124 } 125 } 126