blob: aa377428e0984b975d06693d0054c22f80887b98 [file] [log] [blame]
Justin Klaassen1e76b672015-01-23 17:57:11 -08001/*
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
17apply plugin: "com.android.application"
18
19android {
20 sourceSets {
21 main {
22 manifest.srcFile "AndroidManifest.xml"
23 java.srcDir "src"
24 res.srcDir "res"
25 assets.srcDir "assets"
26 }
27 }
28
29 compileOptions {
30 sourceCompatibility JavaVersion.VERSION_1_7
31 targetCompatibility JavaVersion.VERSION_1_7
32 }
33
34 dependencies {
Justin Klaassen91ee19b2015-02-23 13:14:15 -080035 compile (project(":android-opt-datetimepicker")) {
36 exclude module: "support-v4"
37 }
James Lemieuxb04b1552015-09-09 16:07:46 -070038 compile project(":messageformat")
Fan Zhang3b71e5c2015-08-10 15:55:05 -070039 compile project(":support-design")
Justin Klaassen91ee19b2015-02-23 13:14:15 -080040 compile project(":support-v7-appcompat")
Justin Klaassen639b7022015-02-23 16:37:10 -080041 compile project(":support-v7-gridlayout")
James Lemieuxc3a2d042015-08-04 12:54:46 -070042 compile project(":support-v7-recyclerview")
Justin Klaassen1e76b672015-01-23 17:57:11 -080043 compile project(":support-v13")
44 }
45}