blob: 48d3eb98549091f8a5d7b2fa146640d25b7a6edf [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
23libs.exclude_support = {
24 exclude group: 'com.android.support'
25}
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080026
Sergey Vasilinetsc2986282017-08-24 15:46:12 -070027//arch components
Sergey Vasilinetscade63d2017-10-25 16:51:54 -070028libs.arch_lifecycle_runtime = "android.arch.lifecycle:runtime:1.0.3@aar"
Sergey Vasilinetsc2986282017-08-24 15:46:12 -070029
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080030// Other dependencies
31libs.xml_parser_apis = 'xerces:xmlParserAPIs:2.6.2'
32libs.xerces_impl = 'xerces:xercesImpl:2.6.2'
Siyamed Sinirc29ea5f2017-03-07 22:10:01 -080033
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080034rootProject.ext['libs'] = libs