blob: 104f956b1dd2859eda96021532133e94a487d77f [file] [log] [blame]
Andy Wickham95518e12020-03-03 00:33:24 +00001// Copyright (C) 2018 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Bob Badour21cbf342021-02-12 21:15:22 -080015package {
16 default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
Andy Wickham95518e12020-03-03 00:33:24 +000019android_library {
20 name: "iconloader_base",
Sunny Goyal451f13e2021-04-07 13:25:43 -070021 sdk_version: "current",
Sunny Goyalecb6e172024-09-20 10:14:42 -070022 min_sdk_version: "31",
Andy Wickham95518e12020-03-03 00:33:24 +000023 static_libs: [
24 "androidx.core_core",
Sunny Goyald3b9c582024-09-16 14:54:44 -070025 "com_android_launcher3_flags_lib",
Andy Wickham95518e12020-03-03 00:33:24 +000026 ],
27 resource_dirs: [
28 "res",
29 ],
30 srcs: [
31 "src/**/*.java",
Sunny Goyald3b9c582024-09-16 14:54:44 -070032 "src/**/*.kt",
Andy Wickham95518e12020-03-03 00:33:24 +000033 ],
34}
35
36android_library {
37 name: "iconloader",
38 sdk_version: "system_current",
Sunny Goyalecb6e172024-09-20 10:14:42 -070039 min_sdk_version: "31",
Andy Wickham95518e12020-03-03 00:33:24 +000040 static_libs: [
41 "androidx.core_core",
Sunny Goyald3b9c582024-09-16 14:54:44 -070042 "com_android_launcher3_flags_lib",
Andy Wickham95518e12020-03-03 00:33:24 +000043 ],
44 resource_dirs: [
45 "res",
46 ],
47 srcs: [
48 "src/**/*.java",
Sunny Goyald3b9c582024-09-16 14:54:44 -070049 "src/**/*.kt",
Andy Wickham95518e12020-03-03 00:33:24 +000050 "src_full_lib/**/*.java",
Sunny Goyald3b9c582024-09-16 14:54:44 -070051 "src_full_lib/**/*.kt",
Andy Wickham95518e12020-03-03 00:33:24 +000052 ],
Jooyung Hand2c6ca42022-05-06 12:25:22 +090053 apex_available: [
54 "//apex_available:platform",
55 "com.android.permission",
56 ],
Andy Wickham95518e12020-03-03 00:33:24 +000057}