[SSM] Add android sample and fix jni issues.
authorjk13 <jihyeok13.kim@samsung.com>
Fri, 30 Jan 2015 07:53:11 +0000 (16:53 +0900)
committerUze Choi <uzchoi@samsung.com>
Mon, 2 Feb 2015 05:00:42 +0000 (05:00 +0000)
commit50347bedcd5c3ab450cb69bfe1dedacfa2764a27
tree939c469f0f1be2ff0526f17877bd3b2ba5dc7302
parent3deba10f91d5d5990bf29cab4f6283e98dacf12a
[SSM] Add android sample and fix jni issues.

1. Add android sample application
2. Fix jni issues that mismatch of package name
   and Android-L jni callback issue
3. Fix scons script to build for creating SSM so file.

Change-Id: Ief192a96f6d97fd2ac4ad47b3e7d9029d964f2f6
Signed-off-by: jk13 <jihyeok13.kim@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/278
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Uze Choi <uzchoi@samsung.com>
25 files changed:
service/soft-sensor-manager/SConscript
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/CoreController.java
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/IQueryEngineEvent.java
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/IReportReceiver.java
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/SSMInterface.java
service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMCore_JNI.cpp
service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMCore_JNI.h
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/AndroidManifest.xml [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/jni/Android.mk [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/jni/Application.mk [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/drawable-hdpi/ic_action_search.png [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/drawable-hdpi/ic_launcher.png [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/drawable-ldpi/ic_action_search.png [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/drawable-ldpi/ic_launcher.png [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/drawable-mdpi/ic_action_search.png [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/drawable-mdpi/ic_launcher.png [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/drawable-xhdpi/ic_action_search.png [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/drawable-xhdpi/ic_launcher.png [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/layout/activity_main.xml [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/menu/activity_main.xml [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/values-v11/styles.xml [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/values-v14/styles.xml [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/values/strings.xml [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/res/values/styles.xml [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/android/SSMTesterApp/src/org/iotivity/service/ssm/sample/MainActivity.java [new file with mode: 0644]