aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-11-14 00:03:40 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-11-14 00:03:40 +0000
commit2843c5da2a162d6df5e6534390d42e09561af1d2 (patch)
tree557ab3223c7b9ca8de4f7386f8dbf2b987fa1a42
parent8bc9bf19d072fb75356cecb36bf7e47cbbbb0dcb (diff)
parent8c68fde11e35fe1aaafcaf1892c24162c9049321 (diff)
downloadsample-2843c5da2a162d6df5e6534390d42e09561af1d2.tar.gz
Snap for 11089623 from 8c68fde11e35fe1aaafcaf1892c24162c9049321 to 24Q1-release
Change-Id: Ief1aa53d74153ba7b785c12b311415ef8d94cf60
-rw-r--r--apps/tv/LeanbackWidget/Android.bp28
-rw-r--r--apps/tv/LeanbackWidget/Android.mk15
2 files changed, 28 insertions, 15 deletions
diff --git a/apps/tv/LeanbackWidget/Android.bp b/apps/tv/LeanbackWidget/Android.bp
new file mode 100644
index 0000000..0d6973a
--- /dev/null
+++ b/apps/tv/LeanbackWidget/Android.bp
@@ -0,0 +1,28 @@
+
+//
+// Copyright (C) 2023 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.
+
+package {
+ // See: http://go/android-license-faq
+ default_applicable_licenses: [
+ "Android-Apache-2.0",
+ ],
+}
+
+android_app {
+ name: "LeanbackWidget",
+ srcs: ["src/**/*.java"],
+ sdk_version: "current",
+}
diff --git a/apps/tv/LeanbackWidget/Android.mk b/apps/tv/LeanbackWidget/Android.mk
deleted file mode 100644
index 1fe0dea..0000000
--- a/apps/tv/LeanbackWidget/Android.mk
+++ /dev/null
@@ -1,15 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE_TAGS := optional
-LOCAL_MODULE_PATH := $(PRODUCT_OUT)/system/app
-
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-LOCAL_PACKAGE_NAME := LeanbackWidget
-LOCAL_LICENSE_KINDS := legacy_notice
-LOCAL_LICENSE_CONDITIONS := notice
-
-LOCAL_SDK_VERSION := current
-
-include $(BUILD_PACKAGE)