blob: ab5b1626d7dc1c730ca2cf25e029bceb6b05d8a8 [file] [log] [blame]
Sumir Kataria6c2d3a12017-09-21 15:55:25 -07001/*
2 * Copyright (C) 2016 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 */
Aurimas Liutikas7baa81d2017-11-28 15:28:01 -080016
17import static android.support.dependencies.DependenciesKt.*
18
Aurimas Liutikasec0edfc2017-12-20 10:03:39 -080019plugins {
20 id("SupportAndroidTestAppPlugin")
21}
Sumir Kataria6c2d3a12017-09-21 15:55:25 -070022
23project.ext.noDocs = true
24
Rahul Ravikumarc7824d12018-03-12 16:47:28 -070025android {
26 buildTypes {
27 getByName("release") {
28 minifyEnabled = true
29 proguardFiles("proguard-rules.pro")
30 }
31 }
32}
33
Sumir Kataria6c2d3a12017-09-21 15:55:25 -070034dependencies {
Xyan Bhatnagarc5c83e12017-10-11 15:35:05 -070035 implementation 'com.android.support.constraint:constraint-layout:1.0.2'
Sumir Kataria6c2d3a12017-09-21 15:55:25 -070036 compile project(':arch:runtime')
37 compile project(':arch:common')
Sumir Kataria76fdf4b2018-03-09 14:13:38 -080038 compile project(':work:work-runtime')
39 compile project(':work:work-firebase')
Sumir Kataria6c2d3a12017-09-21 15:55:25 -070040 compile project(':lifecycle:extensions')
41 compile project(':lifecycle:runtime')
42 compile project(':lifecycle:common')
43 compile project(':room:runtime')
Sumir Katariae89fa652017-10-04 15:00:44 -070044 annotationProcessor project(":room:compiler")
Aurimas Liutikas7baa81d2017-11-28 15:28:01 -080045 compile(MULTIDEX)
46 compile(SUPPORT_RECYCLERVIEW, libs.support_exclude_config)
47 compile(SUPPORT_APPCOMPAT, libs.support_exclude_config)
48 compile(SUPPORT_DESIGN, libs.support_exclude_config)
Sumir Kataria6c2d3a12017-09-21 15:55:25 -070049}
50
Sumir Kataria6c2d3a12017-09-21 15:55:25 -070051tasks['check'].dependsOn(tasks['connectedCheck'])
52
53uploadArchives.enabled = false