Convert Android.mk file to Android.bp

See build/soong/README.md for more information.

Change-Id: I3dd3cee1a43bf4fb07591e4e5ef1f796fd44689c
Fixes: 122332519
Test: treehugger
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..2ac1227
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,4 @@
+java_library {
+    name: "ksoap2",
+    srcs: ["**/*.java"],
+}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 2d21a0e..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,16 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_SRC_FILES := $(call all-subdir-java-files)
-
-#LOCAL_JAVA_STATIC_LIBRARIES := android-common
-#LOCAL_JAVA_LIBRARIES := android.common
-
-LOCAL_MODULE := ksoap2
-include $(BUILD_STATIC_JAVA_LIBRARY)
-
-# additionally, build unit tests in a separate .apk
-include $(call all-makefiles-under,$(LOCAL_PATH))
-