summaryrefslogtreecommitdiffstats
path: root/iconloaderlib/Android.bp
diff options
context:
space:
mode:
authorHyunyoung Song <hyunyoungs@google.com>2018-11-01 23:12:54 -0700
committerSunny Goyal <sunnygoyal@google.com>2018-11-02 14:18:45 -0700
commit719eee2be266bd84bba33ce35142b0cad46e40ea (patch)
treefba75356c0acc6c1572a7901e9fe7c5bcba0379b /iconloaderlib/Android.bp
parentb1513bd811d4efd6ec9b0251c5663c544c278909 (diff)
downloadpackages_apps_Trebuchet-719eee2be266bd84bba33ce35142b0cad46e40ea.tar.gz
packages_apps_Trebuchet-719eee2be266bd84bba33ce35142b0cad46e40ea.tar.bz2
packages_apps_Trebuchet-719eee2be266bd84bba33ce35142b0cad46e40ea.zip
Create iconloader library
Bug: 115891474 Test: Builds everything Change-Id: I1d75702d4e5a10d694eeb839784a629de2f74dd2
Diffstat (limited to 'iconloaderlib/Android.bp')
-rw-r--r--iconloaderlib/Android.bp28
1 files changed, 28 insertions, 0 deletions
diff --git a/iconloaderlib/Android.bp b/iconloaderlib/Android.bp
new file mode 100644
index 000000000..8a71f94ed
--- /dev/null
+++ b/iconloaderlib/Android.bp
@@ -0,0 +1,28 @@
+// Copyright (C) 2018 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+android_library {
+ name: "iconloader",
+ sdk_version: "28",
+ min_sdk_version: "21",
+ static_libs: [
+ "androidx.core_core",
+ ],
+ resource_dirs: [
+ "res",
+ ],
+ srcs: [
+ "src/**/*.java",
+ ],
+}