From 43e79118b5513baede74735da8d6c744afb2bf0b Mon Sep 17 00:00:00 2001 From: Jean-Marie Henaff Date: Fri, 27 Mar 2015 10:00:31 +0100 Subject: Add Simple framework Change-Id: I2af09f6317322e5dd9d5546dd998dc3c2062ca26 --- simple/Android.mk | 70 ++++++++++++++++++++++++++++++++++++++ simple/MODULE_LICENSE_APACHE2 | 0 simple/PREBUILT | 8 +++++ simple/README.android | 6 ++++ simple/simple-common-6.0.1.jar | Bin 0 -> 44262 bytes simple/simple-http-6.0.1.jar | Bin 0 -> 176270 bytes simple/simple-transport-6.0.1.jar | Bin 0 -> 70497 bytes 7 files changed, 84 insertions(+) create mode 100644 simple/Android.mk create mode 100644 simple/MODULE_LICENSE_APACHE2 create mode 100644 simple/PREBUILT create mode 100644 simple/README.android create mode 100644 simple/simple-common-6.0.1.jar create mode 100644 simple/simple-http-6.0.1.jar create mode 100644 simple/simple-transport-6.0.1.jar (limited to 'simple') diff --git a/simple/Android.mk b/simple/Android.mk new file mode 100644 index 0000000..ef97d84 --- /dev/null +++ b/simple/Android.mk @@ -0,0 +1,70 @@ +# Copyright (C) 2015 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +LOCAL_PATH:= $(call my-dir) + + +# +# simple-jack +# + +include $(CLEAR_VARS) + +LOCAL_MODULE := simple-jack + +LOCAL_STATIC_JAVA_LIBRARIES := \ + simple-common-jack \ + simple-http-jack \ + simple-transport-jack + +include $(BUILD_HOST_JAVA_LIBRARY) + +# +# simple-common-jack +# + +include $(CLEAR_VARS) + +LOCAL_MODULE_TAGS := optional + +LOCAL_PREBUILT_JAVA_LIBRARIES := \ + simple-common-jack:simple-common-6.0.1$(COMMON_JAVA_PACKAGE_SUFFIX) + +include $(BUILD_HOST_PREBUILT) + +# +# simple-http-jack +# + +include $(CLEAR_VARS) + +LOCAL_MODULE_TAGS := optional + +LOCAL_PREBUILT_JAVA_LIBRARIES := \ + simple-http-jack:simple-http-6.0.1$(COMMON_JAVA_PACKAGE_SUFFIX) + +include $(BUILD_HOST_PREBUILT) + +# +# simple-transport-jack +# + +include $(CLEAR_VARS) + +LOCAL_MODULE_TAGS := optional + +LOCAL_PREBUILT_JAVA_LIBRARIES := \ + simple-transport-jack:simple-transport-6.0.1$(COMMON_JAVA_PACKAGE_SUFFIX) + +include $(BUILD_HOST_PREBUILT) diff --git a/simple/MODULE_LICENSE_APACHE2 b/simple/MODULE_LICENSE_APACHE2 new file mode 100644 index 0000000..e69de29 diff --git a/simple/PREBUILT b/simple/PREBUILT new file mode 100644 index 0000000..f69b00b --- /dev/null +++ b/simple/PREBUILT @@ -0,0 +1,8 @@ +The objects in this prebuilt directory can be rebuilt +using the archive + +http://www.simpleframework.org/download/download.php?version=6.0.1&package=simple-6.0.1.tar.gz + +An then doing: +mvn install + diff --git a/simple/README.android b/simple/README.android new file mode 100644 index 0000000..45a2cf8 --- /dev/null +++ b/simple/README.android @@ -0,0 +1,6 @@ +URL: http://www.simpleframework.org/download/download.php?version=6.0.1&package=simple-6.0.1.tar.gz +Tag: 6.0.1 +License: Apache 2 +Description: A small, embeddable HTPP and WebSocket engine. +Local Modifications: None. + diff --git a/simple/simple-common-6.0.1.jar b/simple/simple-common-6.0.1.jar new file mode 100644 index 0000000..edb6319 Binary files /dev/null and b/simple/simple-common-6.0.1.jar differ diff --git a/simple/simple-http-6.0.1.jar b/simple/simple-http-6.0.1.jar new file mode 100644 index 0000000..c1b1c76 Binary files /dev/null and b/simple/simple-http-6.0.1.jar differ diff --git a/simple/simple-transport-6.0.1.jar b/simple/simple-transport-6.0.1.jar new file mode 100644 index 0000000..6812525 Binary files /dev/null and b/simple/simple-transport-6.0.1.jar differ -- cgit v1.1