Convert android examples of resource-encapsulation into android-studio project.
authorcoderhyme <jhyo.kim@samsung.com>
Wed, 23 Sep 2015 14:31:12 +0000 (07:31 -0700)
committerMadan Lanka <lanka.madan@samsung.com>
Fri, 25 Sep 2015 06:55:58 +0000 (06:55 +0000)
commit1697ec12d449b7e583ade370ff05d3d6adb5b564
tree2583fee7f4117ae1fb562cfc84a9cf7bbc145dd1
parent61274389a127dd467b0ee5c70c7b2115e70c52f4
Convert android examples of resource-encapsulation into android-studio project.

Additionally source is modified to align with new version of apis.
Project names are changed as well to align with tizen samples.

ResourceContainer examples are removed because it will be excluded from service api.

JIRA issue : https://jira.iotivity.org/i#browse/IOT-744

Change-Id: Ie26dcef2ba373cde796099c4f6e5c32fbcf8aa03
Signed-off-by: coderhyme <jhyo.kim@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/2999
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Madan Lanka <lanka.madan@samsung.com>
104 files changed:
service/resource-encapsulation/examples/android/REClient/.classpath [deleted file]
service/resource-encapsulation/examples/android/REClient/.project [deleted file]
service/resource-encapsulation/examples/android/REClient/AndroidManifest.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/ic_launcher-web.png [deleted file]
service/resource-encapsulation/examples/android/REClient/project.properties [deleted file]
service/resource-encapsulation/examples/android/REClient/res/drawable-hdpi/ic_launcher.png [deleted file]
service/resource-encapsulation/examples/android/REClient/res/drawable-hdpi/iot.jpg [deleted file]
service/resource-encapsulation/examples/android/REClient/res/drawable-mdpi/ic_launcher.png [deleted file]
service/resource-encapsulation/examples/android/REClient/res/drawable-xhdpi/ic_launcher.png [deleted file]
service/resource-encapsulation/examples/android/REClient/res/drawable-xxhdpi/ic_launcher.png [deleted file]
service/resource-encapsulation/examples/android/REClient/res/layout/activity_main.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/res/layout/resource_container.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/res/layout/resourceclientapis.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/res/layout/userinputforattributevalue.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/res/menu/main.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/res/values-v11/styles.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/res/values-v14/styles.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/res/values-w820dp/dimens.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/res/values/dimens.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/res/values/strings.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/res/values/styles.xml [deleted file]
service/resource-encapsulation/examples/android/REClient/src/com/re/sampleclient/ContainerClientActivity.java [deleted file]
service/resource-encapsulation/examples/android/REClient/src/com/re/sampleclient/MainActivity.java [deleted file]
service/resource-encapsulation/examples/android/REClient/src/com/re/sampleclient/ResourceClient.java [deleted file]
service/resource-encapsulation/examples/android/REClient/src/com/re/sampleclient/ResourceClientActivity.java [deleted file]
service/resource-encapsulation/examples/android/RESampleClientApp/.gitignore [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/README [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/RESampleClientApp.iml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/.gitignore [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/app.iml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/build.gradle [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/AndroidManifest.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/java/org/iotivity/service/sample/client/MainActivity.java [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/java/org/iotivity/service/sample/client/ResourceClientActivity.java [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/res/layout/activity_main.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/res/layout/activity_resource_client.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/res/layout/dialog_content_edit_text.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/res/mipmap-hdpi/ic_launcher.png [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/res/mipmap-mdpi/ic_launcher.png [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/res/values-v21/styles.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/res/values/strings.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/app/src/main/res/values/styles.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/build.gradle [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleClientApp/settings.gradle [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/.gitignore [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/README [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/RESampleServerApp.iml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/.gitignore [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/app.iml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/build.gradle [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/proguard-rules.pro [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/AndroidManifest.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/java/org/iotivity/service/sample/server/CustomServerActivity.java [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/java/org/iotivity/service/sample/server/MainActivity.java [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/java/org/iotivity/service/sample/server/ResourceProperties.java [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/java/org/iotivity/service/sample/server/SimpleServerActivity.java [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/layout/activity_custom_server.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/layout/activity_main.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/layout/activity_simple_server.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/layout/dialog_content_edit_text.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/mipmap-hdpi/ic_launcher.png [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/mipmap-mdpi/ic_launcher.png [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/values-v21/styles.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/values/strings.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/app/src/main/res/values/styles.xml [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/build.gradle [new file with mode: 0644]
service/resource-encapsulation/examples/android/RESampleServerApp/settings.gradle [new file with mode: 0644]
service/resource-encapsulation/examples/android/REServer/.classpath [deleted file]
service/resource-encapsulation/examples/android/REServer/.project [deleted file]
service/resource-encapsulation/examples/android/REServer/AndroidManifest.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/assets/lib/ResourceContainerConfig.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/ic_launcher-web.png [deleted file]
service/resource-encapsulation/examples/android/REServer/project.properties [deleted file]
service/resource-encapsulation/examples/android/REServer/res/drawable-hdpi/ic_launcher.png [deleted file]
service/resource-encapsulation/examples/android/REServer/res/drawable-hdpi/iot.jpg [deleted file]
service/resource-encapsulation/examples/android/REServer/res/drawable-mdpi/ic_launcher.png [deleted file]
service/resource-encapsulation/examples/android/REServer/res/drawable-xhdpi/ic_launcher.png [deleted file]
service/resource-encapsulation/examples/android/REServer/res/drawable-xxhdpi/ic_launcher.png [deleted file]
service/resource-encapsulation/examples/android/REServer/res/layout/activity_main.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/layout/group.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/layout/list_item.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/layout/resource_container.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/layout/server_builder.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/layout/server_builder_auto.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/layout/server_builder_dev.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/layout/userinputfortemperaturevalue.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/menu/main.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/values-v11/styles.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/values-v14/styles.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/values-w820dp/dimens.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/values/dimens.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/values/strings.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/res/values/styles.xml [deleted file]
service/resource-encapsulation/examples/android/REServer/src/com/example/sampleserver/MainActivity.java [deleted file]
service/resource-encapsulation/examples/android/REServer/src/com/example/sampleserver/ResourceContainer.java [deleted file]
service/resource-encapsulation/examples/android/REServer/src/com/example/sampleserver/ResourceContainerActivity.java [deleted file]
service/resource-encapsulation/examples/android/REServer/src/com/example/sampleserver/ServerBuilder.java [deleted file]
service/resource-encapsulation/examples/android/REServer/src/com/example/sampleserver/ServerBuilderActivity.java [deleted file]
service/resource-encapsulation/examples/android/REServer/src/com/example/sampleserver/ServerBuilderAutoActivity.java [deleted file]
service/resource-encapsulation/examples/android/REServer/src/com/example/sampleserver/ServerBuilderDevActivity.java [deleted file]