Android: Adding GroupServer/Client examples
authorTim Kourt <tim.a.kourt@intel.com>
Thu, 24 Sep 2015 19:24:02 +0000 (12:24 -0700)
committerPatrick Lankswert <patrick.lankswert@intel.com>
Fri, 25 Sep 2015 15:39:40 +0000 (15:39 +0000)
commite685fddfe38624da5495400df2a1b76f95db6886
tree79327cbc53a854b7c8878bb79b0bafd42391a308
parent491e70e127d775ab935bc8b0c7a2191aa483e0e9
Android: Adding GroupServer/Client examples

Change-Id: I2604a8dfccf6f55b37949e8ff0eda6b1b49d7713
Signed-off-by: Tim Kourt <tim.a.kourt@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/3053
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Patrick Lankswert <patrick.lankswert@intel.com>
36 files changed:
android/examples/groupclient/.gitignore [new file with mode: 0644]
android/examples/groupclient/build.gradle [new file with mode: 0644]
android/examples/groupclient/groupclient.iml [new file with mode: 0644]
android/examples/groupclient/proguard-rules.pro [new file with mode: 0644]
android/examples/groupclient/src/main/AndroidManifest.xml [new file with mode: 0644]
android/examples/groupclient/src/main/java/org/iotivity/base/examples/GroupClient.java [new file with mode: 0644]
android/examples/groupclient/src/main/res/drawable/iotivityicon.png [new file with mode: 0644]
android/examples/groupclient/src/main/res/drawable/iotivitylogo.png [new file with mode: 0644]
android/examples/groupclient/src/main/res/layout/activity_group_client.xml [new file with mode: 0644]
android/examples/groupclient/src/main/res/mipmap-hdpi/iotivityicon.png [new file with mode: 0644]
android/examples/groupclient/src/main/res/mipmap-mdpi/iotivityicon.png [new file with mode: 0644]
android/examples/groupclient/src/main/res/mipmap-xhdpi/iotivityicon.png [new file with mode: 0644]
android/examples/groupclient/src/main/res/mipmap-xxhdpi/iotivityicon.png [new file with mode: 0644]
android/examples/groupclient/src/main/res/values-v21/styles.xml [new file with mode: 0644]
android/examples/groupclient/src/main/res/values-w820dp/dimens.xml [new file with mode: 0644]
android/examples/groupclient/src/main/res/values/dimens.xml [new file with mode: 0644]
android/examples/groupclient/src/main/res/values/strings.xml [new file with mode: 0644]
android/examples/groupclient/src/main/res/values/styles.xml [new file with mode: 0644]
android/examples/groupserver/.gitignore [new file with mode: 0644]
android/examples/groupserver/build.gradle [new file with mode: 0644]
android/examples/groupserver/groupserver.iml [new file with mode: 0644]
android/examples/groupserver/proguard-rules.pro [new file with mode: 0644]
android/examples/groupserver/src/main/AndroidManifest.xml [new file with mode: 0644]
android/examples/groupserver/src/main/java/org/iotivity/base/examples/GroupServer.java [new file with mode: 0644]
android/examples/groupserver/src/main/res/drawable/iotivityicon.png [new file with mode: 0644]
android/examples/groupserver/src/main/res/drawable/iotivitylogo.png [new file with mode: 0644]
android/examples/groupserver/src/main/res/layout/activity_group_server.xml [new file with mode: 0644]
android/examples/groupserver/src/main/res/mipmap-hdpi/iotivityicon.png [new file with mode: 0644]
android/examples/groupserver/src/main/res/mipmap-mdpi/iotivityicon.png [new file with mode: 0644]
android/examples/groupserver/src/main/res/mipmap-xhdpi/iotivityicon.png [new file with mode: 0644]
android/examples/groupserver/src/main/res/mipmap-xxhdpi/iotivityicon.png [new file with mode: 0644]
android/examples/groupserver/src/main/res/values-v21/styles.xml [new file with mode: 0644]
android/examples/groupserver/src/main/res/values-w820dp/dimens.xml [new file with mode: 0644]
android/examples/groupserver/src/main/res/values/dimens.xml [new file with mode: 0644]
android/examples/groupserver/src/main/res/values/strings.xml [new file with mode: 0644]
android/examples/groupserver/src/main/res/values/styles.xml [new file with mode: 0644]