blob: abb8c49e2e808be179f732bb7179ccfc4f29c837 [file] [log] [blame]
Alan Viverette05f668c2017-02-03 16:54:44 -05001/*
2 * Copyright (C) 2017 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
17apply plugin: 'com.android.library'
Justin Moreyda744112014-01-08 15:06:43 -060018
19android {
Xavier Ducrohetb98bb462014-10-27 21:12:20 -070020 compileSdkVersion 4
21
Alan Viverette05f668c2017-02-03 16:54:44 -050022 defaultConfig {
23 minSdkVersion 4
Alan Viverette05f668c2017-02-03 16:54:44 -050024 }
25
Justin Moreyda744112014-01-08 15:06:43 -060026 sourceSets {
27 main {
28 java.srcDirs = ['src']
29 resources.srcDirs = ['res']
30 res.srcDirs = ['src']
31 manifest.srcFile 'AndroidManifest.xml'
32 }
33 }
Justin Morey87fb5742014-01-30 19:52:52 -060034
35 lintOptions {
36 // TODO: fix errors and reenable.
37 abortOnError false
38 }
Justin Moreyda744112014-01-08 15:06:43 -060039}
Xavier Ducrohetb98bb462014-10-27 21:12:20 -070040
41uploadArchives {
42 repositories {
43 mavenDeployer {
44 repository(url: uri(rootProject.ext.supportRepoOut)) {
45 }
46
47 pom.project {
48 name 'Android Multi-Dex Library'
49 description "Library for legacy multi-dex support"
50 url ''
51 inceptionYear '2013'
52
53 licenses {
54 license {
55 name 'The Apache Software License, Version 2.0'
56 url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
57 distribution 'repo'
58 }
59 }
60
61 scm {
62 url "http://source.android.com"
63 connection "scm:git:https://android.googlesource.com/platform/frameworks/multidex"
64 }
65 developers {
66 developer {
67 name 'The Android Open Source Project'
68 }
69 }
70 }
71 }
72 }
Alan Viverette05f668c2017-02-03 16:54:44 -050073}