Convert Android.mk to Android.bp am: db999d6341 am: b41a26429f am: 77c3522420 am: dde3732b08

Original change: https://android-review.googlesource.com/c/platform/packages/apps/SampleLocationAttribution/+/1689364

Change-Id: Id8c93f5fa6e0753a7a7c6dccbd0cb45b9a3e5e6c
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..c5a4f18
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,17 @@
+package {
+    // See: http://go/android-license-faq
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+android_app {
+    name: "SampleLocationAttribution",
+    resource_dirs: ["res"],
+    static_libs: [
+        "androidx.core_core",
+        "androidx.appcompat_appcompat",
+    ],
+    // Build all java files in the src subdirectory
+    srcs: ["src/**/*.java"],
+    sdk_version: "current",
+    product_specific: true,
+}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index dbf609b..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,26 +0,0 @@
-LOCAL_PATH := $(call my-dir)
-
-include $(CLEAR_VARS)
-
-LOCAL_USE_AAPT2 := true
-
-LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
-
-LOCAL_STATIC_ANDROID_LIBRARIES := \
-    androidx.core_core \
-    androidx.appcompat_appcompat
-
-# Build all java files in the src subdirectory
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-LOCAL_SDK_VERSION := current
-
-LOCAL_PRODUCT_MODULE := true
-
-# Name of the APK to build
-LOCAL_PACKAGE_NAME := SampleLocationAttribution
-LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
-LOCAL_LICENSE_CONDITIONS := notice
-
-# Tell it to build an APK
-include $(BUILD_PACKAGE)