1//
2// Copyright (C) 2020 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
16package {
17    default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20android_library_import {
21    name: "androidx.car_car-resources-partially-dejetified-nodeps",
22    aars: ["androidx-car-resources.aar"],
23    sdk_version: "current",
24    static_libs: [
25        "com.google.android.material_material",
26        "androidx.appcompat_appcompat",
27        "androidx.cardview_cardview",
28        "androidx.recyclerview_recyclerview",
29        "androidx.gridlayout_gridlayout",
30        "androidx.preference_preference",
31        "androidx-constraintlayout_constraintlayout",
32    ],
33}
34android_library {
35    name: "androidx.car_car-resources-partially-dejetified",
36    sdk_version: "current",
37    min_sdk_version: "21",
38    manifest: "AndroidManifest.xml",
39    static_libs: [
40        "androidx.car_car-resources-partially-dejetified-nodeps",
41        "com.google.android.material_material",
42        "androidx.appcompat_appcompat",
43        "androidx.cardview_cardview",
44        "androidx.recyclerview_recyclerview",
45        "androidx.gridlayout_gridlayout",
46        "androidx.preference_preference",
47        "androidx-constraintlayout_constraintlayout",
48    ],
49    java_version: "1.7",
50}
51