Remove static link in Android framework under /frameworks/native.

The dependencies to static libraries in frameworks should be removed
as many as possible to reduce a size of the system partition.
And that will improve coverage of the VNDK libraries because this
effort might find new necessary shared libs which were linked
statically before.

Size diffs of affected binaries on angler-userdebug build are as
follows.

dumpstate            : 371048 -> 325312 (-45736)
libvulkan.so         : 104892 -> 92016 (-12876)
libandroid_runtime.so: 1193240 -> 1193296 (+56)

total                : (-58556)

Test: building succeeded, and the image was tested on angler.
Bug: 33056637
Change-Id: I2db1e94d8bc9cad64760cdf36cac445273bd641a
diff --git a/vulkan/libvulkan/Android.bp b/vulkan/libvulkan/Android.bp
index 34697d1..5a0a93b 100644
--- a/vulkan/libvulkan/Android.bp
+++ b/vulkan/libvulkan/Android.bp
@@ -65,9 +65,9 @@
     export_static_lib_headers: ["vulkan_headers"],
     static_libs: [
         "vulkan_headers",
-        "libziparchive",
     ],
     shared_libs: [
+        "libziparchive",
         "libhardware",
         "libsync",
         "libbase",