Set apex_available property

The marked library(ies) were available to the APEXes via the
hand-written allowlist in build/soong/apex/apex.go. Trying to remove
the list by adding apex_available property to the Android.bp of
the libraries.

Bug: 150999716
Test: m

Change-Id: Ib121c4b300a7ca540e095068dac377b060e4dca4
diff --git a/transport/token/1.0/utils/Android.bp b/transport/token/1.0/utils/Android.bp
index 5f62804..f9a4623 100644
--- a/transport/token/1.0/utils/Android.bp
+++ b/transport/token/1.0/utils/Android.bp
@@ -55,4 +55,8 @@
         "include",
     ],
     min_sdk_version: "29",
+    apex_available: [
+        "//apex_available:anyapex",
+        "//apex_available:platform",
+    ],
 }