summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSasha Smundak <asmundak@google.com>2019-01-14 20:22:28 -0800
committerandroid-build-merger <android-build-merger@google.com>2019-01-14 20:22:28 -0800
commita0124f264257555ca843a7245fd1a2373e2e4d6e (patch)
tree55882efb7e3634a422c0b8028c0b0890a4c380d2
parent34275f383287adec8e57208af2ce2a2bc09883a2 (diff)
parent1b983e9c7b0d54e2c138e70b9bdd360bb68e1aa6 (diff)
downloadksoap2-a0124f264257555ca843a7245fd1a2373e2e4d6e.tar.gz
Convert Android.mk file to Android.bp am: 45bfd27196
am: 1b983e9c7b Change-Id: I7b7f74723a633c65b5ee400aa55902e00e8f987a
-rw-r--r--Android.bp4
-rw-r--r--Android.mk16
2 files changed, 4 insertions, 16 deletions
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))
-