Create android sample app for provider service.
authorch79.cho <ch79.cho@samsung.com>
Mon, 23 May 2016 10:40:14 +0000 (19:40 +0900)
committerUze Choi <uzchoi@samsung.com>
Tue, 24 May 2016 03:00:10 +0000 (03:00 +0000)
commitad968557d4c1f2f9fed3ec1c18abe9a5a664bd16
tree77af78b1f8d1cb408518188659c24c5a67fc680e
parentcaa454fe2c6c8f31cb22fa42bdf983cfb7bbecaf
Create android sample app for provider service.

This is a sample application working on notification service.
The applicaion guides how to use APIs of notification service
on android platform.

Change-Id: Ia2fa461ad299a74507ee5898d7f4174f777611b5
Signed-off-by: ch79.cho <ch79.cho@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/8283
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Uze Choi <uzchoi@samsung.com>
27 files changed:
service/notification/examples/android/NotiProviderExample/.gitignore [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/.idea/.name [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/.idea/compiler.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/.idea/copyright/profiles_settings.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/.idea/gradle.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/.idea/misc.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/.idea/modules.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/.idea/runConfigurations.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/.idea/vcs.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/.gitignore [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/build.gradle [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/proguard-rules.pro [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/AndroidManifest.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/java/com/sec/notiproviderexample/MainActivity.java [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/java/com/sec/notiproviderexample/NotiListener.java [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/java/com/sec/notiproviderexample/NotificationObject.java [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/java/com/sec/notiproviderexample/ProviderProxy.java [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/res/layout/activity_main.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/res/values-w820dp/dimens.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/res/values/colors.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/res/values/dimens.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/res/values/strings.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/main/res/values/styles.xml [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/app/src/test/java/com/sec/notiproviderexample/ExampleUnitTest.java [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/build.gradle [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/gradlew.bat [new file with mode: 0644]
service/notification/examples/android/NotiProviderExample/settings.gradle [new file with mode: 0644]