Forward exec_properties attribute in android_application macro.

This ensures that execution requirements, such as memory limits, set on an android_application target are correctly passed through to the underlying android_application rule invocation. Previously, these properties were not consistently applied to all actions generated by the rule, particularly the bundle building steps.

PiperOrigin-RevId: 864999436
Change-Id: I02c7512636f54db40ffb80abe80c753e4754edab
diff --git a/rules/android_application/android_application_rule.bzl b/rules/android_application/android_application_rule.bzl
index f96132c..809525e 100644
--- a/rules/android_application/android_application_rule.bzl
+++ b/rules/android_application/android_application_rule.bzl
@@ -528,4 +528,5 @@
         manifest_values = attrs.get("manifest_values"),
         visibility = attrs.get("visibility", None),
         tags = attrs.get("tags", []),
+        exec_properties = attrs.get("exec_properties", None),
     )