Move MicrodroidVmShareApp to tests/vmshareapp directory

In the follow-up change I will introduce the Android service to
facilitate VM sharing between MicrodroidTestApp and
MicrodroidVmShareApp.

Moving the MicrodroidVmShareApp to its own directory will make the code
cleaner.

Bug: 259384440
Test: atest MicrodroidTestApp
Change-Id: Id5b2f5d14ea3e008a6065389a8f6e9734ddde26b
diff --git a/tests/vmshareapp/Android.bp b/tests/vmshareapp/Android.bp
new file mode 100644
index 0000000..2b117a1
--- /dev/null
+++ b/tests/vmshareapp/Android.bp
@@ -0,0 +1,15 @@
+package {
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+// Helper app to verify that we can create a VM using others app payload, and share VMs between apps
+android_test_helper_app {
+    name: "MicrodroidVmShareApp",
+    // Defaults are defined in ../testapk/Android.bp
+    defaults: ["MicrodroidTestAppsDefaults"],
+    jni_libs: [
+        // Defined in ../testapk/Android.bp
+        "MicrodroidPayloadInOtherAppNativeLib",
+    ],
+    min_sdk_version: "UpsideDownCake",
+}