blob: f04615de1d202f71046404d53efb51ee2e029ddf [file] [log] [blame]
Justin Moreyda744112014-01-08 15:06:43 -06001apply plugin: 'android-library'
Xavier Ducrohetb98bb462014-10-27 21:12:20 -07002archivesBaseName = 'multidex'
Justin Moreyda744112014-01-08 15:06:43 -06003
4android {
Xavier Ducrohetb98bb462014-10-27 21:12:20 -07005 compileSdkVersion 4
6
Justin Moreyda744112014-01-08 15:06:43 -06007 sourceSets {
8 main {
9 java.srcDirs = ['src']
10 resources.srcDirs = ['res']
11 res.srcDirs = ['src']
12 manifest.srcFile 'AndroidManifest.xml'
13 }
14 }
Justin Morey87fb5742014-01-30 19:52:52 -060015
16 lintOptions {
17 // TODO: fix errors and reenable.
18 abortOnError false
19 }
Justin Moreyda744112014-01-08 15:06:43 -060020}
Xavier Ducrohetb98bb462014-10-27 21:12:20 -070021
22uploadArchives {
23 repositories {
24 mavenDeployer {
25 repository(url: uri(rootProject.ext.supportRepoOut)) {
26 }
27
28 pom.project {
29 name 'Android Multi-Dex Library'
30 description "Library for legacy multi-dex support"
31 url ''
32 inceptionYear '2013'
33
34 licenses {
35 license {
36 name 'The Apache Software License, Version 2.0'
37 url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
38 distribution 'repo'
39 }
40 }
41
42 scm {
43 url "http://source.android.com"
44 connection "scm:git:https://android.googlesource.com/platform/frameworks/multidex"
45 }
46 developers {
47 developer {
48 name 'The Android Open Source Project'
49 }
50 }
51 }
52 }
53 }
54}