blob: baf1ba0050f9eeee340fa50ead3689bb12873466 [file] [log] [blame]
Yigit Boyar88c16ce2017-02-08 16:06:14 -08001/*
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 */
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080016// Add ext.libs for library versions
17def libs = [:]
18
Aurimas Liutikas62d3e1d2017-11-28 15:28:01 -080019libs.exclude_annotations_transitive = {
Jason Monkb2c45792017-12-14 17:30:21 -050020 exclude group: 'com.android.support'
Aurimas Liutikas1187af12017-11-28 15:28:01 -080021 transitive = true
22}
23
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080024libs.exclude_bytebuddy = {
25 exclude group: 'net.bytebuddy'
26}
27
28libs.exclude_support = {
29 exclude group: 'com.android.support'
30}
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080031
Aurimas Liutikas62d3e1d2017-11-28 15:28:01 -080032libs.support_exclude_config = {
33 exclude group: 'android.arch.core'
34 exclude group: 'android.arch.lifecycle'
35}
Siyamed Sinirc29ea5f2017-03-07 22:10:01 -080036
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080037rootProject.ext['libs'] = libs