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 18:12:23 +0000 (18:12 +0000)
commitfcedeadb358a6c5712f09f8e3af1e98ec5a7e36e
treee1863acaa62283dfeeba9c8127b22c749df36ed3
parent726e28e3f4e8ab612ebe9221b6965b8527ff067e
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>
(cherry picked from commit e685fddfe38624da5495400df2a1b76f95db6886)
Reviewed-on: https://gerrit.iotivity.org/gerrit/3121
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]