blob: 6c39faaddcc8641ec41bad408413af72d6467e70 [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 Liutikasb8fd9b62017-11-22 12:55:43 -080019libs.exclude_bytebuddy = {
20 exclude group: 'net.bytebuddy'
21}
22
Filip Pavlisa8792942018-03-08 21:01:59 +000023libs.exclude_for_espresso = {
24 exclude group: 'androidx.annotation'
25 exclude group: 'androidx.appcompat'
26 exclude group: 'androidx.recyclerview'
27 exclude group: 'androidx.legacy'
Aurimas Liutikas3f9ceb62018-07-10 11:57:16 -070028 exclude group: 'androidx.cardview'
29 exclude group: 'androidx.fragment'
30 exclude group: 'com.google.android.material'
31 exclude group: 'androidx.core'
Filip Pavlisa8792942018-03-08 21:01:59 +000032}
33
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080034rootProject.ext['libs'] = libs