From eaaf17ff21d94422df4d27c5b6f07203a442d7b5 Mon Sep 17 00:00:00 2001 From: Sasha Didukh Date: Thu, 10 Mar 2016 13:24:23 +0200 Subject: [PATCH 01/42] APP-56: Remove notifications count restrictions. --- notificationdemo/source/c/src/kaa_demo.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/notificationdemo/source/c/src/kaa_demo.c b/notificationdemo/source/c/src/kaa_demo.c index 19043c731..55951eb33 100755 --- a/notificationdemo/source/c/src/kaa_demo.c +++ b/notificationdemo/source/c/src/kaa_demo.c @@ -44,14 +44,10 @@ static kaa_client_t *kaa_client = NULL; void on_notification(void *context, uint64_t *topic_id, kaa_notification_t *notification) { KAA_DEMO_UNUSED(context); - static short notifications_received = 2; if (notification->message->type == KAA_NOTIFICATION_UNION_STRING_OR_NULL_BRANCH_0) { kaa_string_t *message = (kaa_string_t *)notification->message->data; printf("Notification for topic id '%llu' received\n", *topic_id); printf("Notification body: %s\n", message->data); - if (!--notifications_received) { - kaa_client_stop(kaa_client); - } } else { printf("Error:Received notification's body is null\n"); } From 2999add990443337538428d4590c7168cd0e3a9e Mon Sep 17 00:00:00 2001 From: RostakaGmfun Date: Tue, 15 Mar 2016 16:02:34 +0200 Subject: [PATCH 02/42] APP-58: Syntax errors in GPIO demo --- gpiocontrol/source/cc32xx/build.sh | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/gpiocontrol/source/cc32xx/build.sh b/gpiocontrol/source/cc32xx/build.sh index 53aac1ffe..7414e0c57 100755 --- a/gpiocontrol/source/cc32xx/build.sh +++ b/gpiocontrol/source/cc32xx/build.sh @@ -108,15 +108,10 @@ function clean { } function run { - cd "$PROJECT_HOME/$BUILD_DIR" - ./$APP_NAME + echo "To run demo, please have a look at http://docs.kaaproject.org/display/KAA/Texas+Instruments+CC3200#TexasInstrumentsCC3200-Example" } -#for cmd in $@ -#do -cmd=$1 - -case "$cmd" in +case "$1" in build) build_thirdparty && build_app @@ -141,5 +136,3 @@ case "$cmd" in help ;; esac - -done From aa61d37079ae41c148821cacc16657b6494e0eba Mon Sep 17 00:00:00 2001 From: AlexeyGamov Date: Wed, 16 Mar 2016 19:18:52 +0200 Subject: [PATCH 03/42] APP-60: Fix wildcards --- cassandrademo/source/c/build.sh | 2 +- configurationdemo/source/cpp/build.bat | 4 ++-- connectedcar/source/c/deploy.sh | 2 +- datacollectiondemo/source/cpp/build.bat | 4 ++-- econais/ec19d/streetlight-driver/deploy.sh | 6 ++---- econais/ec19d/trafficlights-driver/deploy.sh | 6 ++---- eventdemo/source/cpp/build.bat | 4 ++-- notificationdemo/source/cpp/build.bat | 2 +- sparkdemo/source/cpp/build.bat | 2 +- sparkdemo/source/cpp/build.sh | 2 +- stormdemo/source/c/build.bat | 4 ++-- stormdemo/source/c/build.sh | 2 +- stormdemo/source/cpp/build.bat | 4 ++-- stormdemo/source/cpp/build.sh | 2 +- vehicletelemetry/source/cpp/build.bat | 4 ++-- 15 files changed, 23 insertions(+), 27 deletions(-) diff --git a/cassandrademo/source/c/build.sh b/cassandrademo/source/c/build.sh index a302c1479..73e91cfa7 100755 --- a/cassandrademo/source/c/build.sh +++ b/cassandrademo/source/c/build.sh @@ -35,7 +35,7 @@ LIBS_PATH="libs" KAA_LIB_PATH="$LIBS_PATH/kaa" KAA_C_LIB_HEADER_PATH="$KAA_LIB_PATH/src" KAA_CPP_LIB_HEADER_PATH="$KAA_LIB_PATH/kaa" -KAA_SDK_TAR="kaa-client*.tar.gz" +KAA_SDK_TAR="kaa-c*.tar.gz" function build_thirdparty { if [[ ! -d "$KAA_C_LIB_HEADER_PATH" && ! -d "$KAA_CPP_LIB_HEADER_PATH" ]] diff --git a/configurationdemo/source/cpp/build.bat b/configurationdemo/source/cpp/build.bat index 5129a920f..6d478e70a 100755 --- a/configurationdemo/source/cpp/build.bat +++ b/configurationdemo/source/cpp/build.bat @@ -30,7 +30,7 @@ set LIBS_PATH=libs set KAA_LIB_PATH=%LIBS_PATH%\kaa set KAA_C_LIB_HEADER_PATH=%KAA_LIB_PATH%\src set KAA_CPP_LIB_HEADER_PATH=%KAA_LIB_PATH%\kaa -set KAA_SDK_TAR="kaa-client*.tar.gz" +set KAA_SDK_TAR="kaa-c*.tar.gz" set KAA_SDK_TAR_NAME= @@ -128,4 +128,4 @@ goto :eof echo "Choose one of the following: {build|run|deploy|clean}" goto :eof -endlocal \ No newline at end of file +endlocal diff --git a/connectedcar/source/c/deploy.sh b/connectedcar/source/c/deploy.sh index e899a53eb..7bab188a2 100755 --- a/connectedcar/source/c/deploy.sh +++ b/connectedcar/source/c/deploy.sh @@ -27,7 +27,7 @@ LIBS_PATH="libs" KAA_LIB_PATH="$LIBS_PATH/kaa" KAA_C_LIB_HEADER_PATH="$KAA_LIB_PATH/src" KAA_CPP_LIB_HEADER_PATH="$KAA_LIB_PATH/kaa" -KAA_SDK_TAR="kaa-client*.tar.gz" +KAA_SDK_TAR="kaa-c*.tar.gz" function renameOld { mv "$MAPPLE_HOME_VAR/$MAIN_SOURCE_NAME" "$MAPPLE_HOME_VAR/$MAIN_SOURCE_NAME.$PREV_SUFFIX" diff --git a/datacollectiondemo/source/cpp/build.bat b/datacollectiondemo/source/cpp/build.bat index 15d23eb08..b6b289264 100755 --- a/datacollectiondemo/source/cpp/build.bat +++ b/datacollectiondemo/source/cpp/build.bat @@ -30,7 +30,7 @@ set LIBS_PATH=libs set KAA_LIB_PATH=%LIBS_PATH%\kaa set KAA_C_LIB_HEADER_PATH=%KAA_LIB_PATH%\src set KAA_CPP_LIB_HEADER_PATH=%KAA_LIB_PATH%\kaa -set KAA_SDK_TAR="kaa-client*.tar.gz" +set KAA_SDK_TAR="kaa-c*.tar.gz" set KAA_SDK_TAR_NAME= @@ -128,4 +128,4 @@ goto :eof echo "Choose one of the following: {build|run|deploy|clean}" goto :eof -endlocal \ No newline at end of file +endlocal diff --git a/econais/ec19d/streetlight-driver/deploy.sh b/econais/ec19d/streetlight-driver/deploy.sh index d48258aa1..372f388ec 100755 --- a/econais/ec19d/streetlight-driver/deploy.sh +++ b/econais/ec19d/streetlight-driver/deploy.sh @@ -18,13 +18,13 @@ KAA_LIB_PATH="libs/kaa" KAA_C_SOURCES_PATH="$KAA_LIB_PATH/src" -KAA_SDK_TAR="kaa-client*.tar.gz" +KAA_SDK_TAR="kaa-c*.tar.gz" function unpackSources { if [[ ! -d "$KAA_C_SOURCES_PATH" ]] then - cd $KAA_LIB_PATH && + cd $KAA_LIB_PATH && KAA_SDK_TAR_NAME=$(find $PROJECT_HOME -iname $KAA_SDK_TAR) if [ -z "$KAA_SDK_TAR_NAME" ] @@ -38,7 +38,6 @@ function unpackSources { } function copySources { - current_folder_name=${PWD##*/} if [ ! -d "$ECONAIS_HOME_VAR/applications" ] then @@ -48,7 +47,6 @@ function copySources { mkdir -p "$ECONAIS_HOME_VAR/applications/$current_folder_name" cp -r ./src "$ECONAIS_HOME_VAR/applications/$current_folder_name" cp -r ./cfg "$ECONAIS_HOME_VAR/applications/$current_folder_name" - } function generateKey { diff --git a/econais/ec19d/trafficlights-driver/deploy.sh b/econais/ec19d/trafficlights-driver/deploy.sh index d48258aa1..372f388ec 100755 --- a/econais/ec19d/trafficlights-driver/deploy.sh +++ b/econais/ec19d/trafficlights-driver/deploy.sh @@ -18,13 +18,13 @@ KAA_LIB_PATH="libs/kaa" KAA_C_SOURCES_PATH="$KAA_LIB_PATH/src" -KAA_SDK_TAR="kaa-client*.tar.gz" +KAA_SDK_TAR="kaa-c*.tar.gz" function unpackSources { if [[ ! -d "$KAA_C_SOURCES_PATH" ]] then - cd $KAA_LIB_PATH && + cd $KAA_LIB_PATH && KAA_SDK_TAR_NAME=$(find $PROJECT_HOME -iname $KAA_SDK_TAR) if [ -z "$KAA_SDK_TAR_NAME" ] @@ -38,7 +38,6 @@ function unpackSources { } function copySources { - current_folder_name=${PWD##*/} if [ ! -d "$ECONAIS_HOME_VAR/applications" ] then @@ -48,7 +47,6 @@ function copySources { mkdir -p "$ECONAIS_HOME_VAR/applications/$current_folder_name" cp -r ./src "$ECONAIS_HOME_VAR/applications/$current_folder_name" cp -r ./cfg "$ECONAIS_HOME_VAR/applications/$current_folder_name" - } function generateKey { diff --git a/eventdemo/source/cpp/build.bat b/eventdemo/source/cpp/build.bat index 007e56dd9..21def9a14 100755 --- a/eventdemo/source/cpp/build.bat +++ b/eventdemo/source/cpp/build.bat @@ -30,7 +30,7 @@ set LIBS_PATH=libs set KAA_LIB_PATH=%LIBS_PATH%\kaa set KAA_C_LIB_HEADER_PATH=%KAA_LIB_PATH%\src set KAA_CPP_LIB_HEADER_PATH=%KAA_LIB_PATH%\kaa -set KAA_SDK_TAR="kaa-client*.tar.gz" +set KAA_SDK_TAR="kaa-c*.tar.gz" set KAA_SDK_TAR_NAME= @@ -128,4 +128,4 @@ goto :eof echo "Choose one of the following: {build|run|deploy|clean}" goto :eof -endlocal \ No newline at end of file +endlocal diff --git a/notificationdemo/source/cpp/build.bat b/notificationdemo/source/cpp/build.bat index ef71aebf0..5991f2d6f 100755 --- a/notificationdemo/source/cpp/build.bat +++ b/notificationdemo/source/cpp/build.bat @@ -30,7 +30,7 @@ set LIBS_PATH=libs set KAA_LIB_PATH=%LIBS_PATH%\kaa set KAA_C_LIB_HEADER_PATH=%KAA_LIB_PATH%\src set KAA_CPP_LIB_HEADER_PATH=%KAA_LIB_PATH%\kaa -set KAA_SDK_TAR="kaa-client*.tar.gz" +set KAA_SDK_TAR="kaa-c*.tar.gz" set KAA_SDK_TAR_NAME= diff --git a/sparkdemo/source/cpp/build.bat b/sparkdemo/source/cpp/build.bat index 85d28caf6..1b7cb9118 100755 --- a/sparkdemo/source/cpp/build.bat +++ b/sparkdemo/source/cpp/build.bat @@ -30,7 +30,7 @@ set LIBS_PATH=libs set KAA_LIB_PATH=%LIBS_PATH%\kaa set KAA_C_LIB_HEADER_PATH=%KAA_LIB_PATH%\src set KAA_CPP_LIB_HEADER_PATH=%KAA_LIB_PATH%\kaa -set KAA_SDK_TAR="kaa-client*.tar.gz" +set KAA_SDK_TAR="kaa-c*.tar.gz" set KAA_SDK_TAR_NAME= diff --git a/sparkdemo/source/cpp/build.sh b/sparkdemo/source/cpp/build.sh index a5e5154fb..7ac81fb1d 100755 --- a/sparkdemo/source/cpp/build.sh +++ b/sparkdemo/source/cpp/build.sh @@ -36,7 +36,7 @@ LIBS_PATH="libs" KAA_LIB_PATH="$LIBS_PATH/kaa" KAA_C_LIB_HEADER_PATH="$KAA_LIB_PATH/src" KAA_CPP_LIB_HEADER_PATH="$KAA_LIB_PATH/kaa" -KAA_SDK_TAR="kaa-client*.tar.gz" +KAA_SDK_TAR="kaa-c*.tar.gz" KAA_TOOLCHAIN_PATH_SDK="" function select_arch { diff --git a/stormdemo/source/c/build.bat b/stormdemo/source/c/build.bat index e058143a3..8f100fd30 100755 --- a/stormdemo/source/c/build.bat +++ b/stormdemo/source/c/build.bat @@ -30,7 +30,7 @@ set LIBS_PATH=libs set KAA_LIB_PATH=%LIBS_PATH%\kaa set KAA_C_LIB_HEADER_PATH=%KAA_LIB_PATH%\src set KAA_CPP_LIB_HEADER_PATH=%KAA_LIB_PATH%\kaa -set KAA_SDK_TAR="kaa-client*.tar.gz" +set KAA_SDK_TAR="kaa-c*.tar.gz" set KAA_SDK_TAR_NAME= @@ -128,4 +128,4 @@ goto :eof echo "Choose one of the following: {build|run|deploy|clean}" goto :eof -endlocal \ No newline at end of file +endlocal diff --git a/stormdemo/source/c/build.sh b/stormdemo/source/c/build.sh index 519631764..5f9bc7487 100755 --- a/stormdemo/source/c/build.sh +++ b/stormdemo/source/c/build.sh @@ -35,7 +35,7 @@ LIBS_PATH="libs" KAA_LIB_PATH="$LIBS_PATH/kaa" KAA_C_LIB_HEADER_PATH="$KAA_LIB_PATH/src" KAA_CPP_LIB_HEADER_PATH="$KAA_LIB_PATH/kaa" -KAA_SDK_TAR="kaa-client*.tar.gz" +KAA_SDK_TAR="kaa-c*.tar.gz" function build_thirdparty { if [[ ! -d "$KAA_C_LIB_HEADER_PATH" && ! -d "$KAA_CPP_LIB_HEADER_PATH" ]] diff --git a/stormdemo/source/cpp/build.bat b/stormdemo/source/cpp/build.bat index e058143a3..8f100fd30 100755 --- a/stormdemo/source/cpp/build.bat +++ b/stormdemo/source/cpp/build.bat @@ -30,7 +30,7 @@ set LIBS_PATH=libs set KAA_LIB_PATH=%LIBS_PATH%\kaa set KAA_C_LIB_HEADER_PATH=%KAA_LIB_PATH%\src set KAA_CPP_LIB_HEADER_PATH=%KAA_LIB_PATH%\kaa -set KAA_SDK_TAR="kaa-client*.tar.gz" +set KAA_SDK_TAR="kaa-c*.tar.gz" set KAA_SDK_TAR_NAME= @@ -128,4 +128,4 @@ goto :eof echo "Choose one of the following: {build|run|deploy|clean}" goto :eof -endlocal \ No newline at end of file +endlocal diff --git a/stormdemo/source/cpp/build.sh b/stormdemo/source/cpp/build.sh index f67349670..c11639304 100755 --- a/stormdemo/source/cpp/build.sh +++ b/stormdemo/source/cpp/build.sh @@ -35,7 +35,7 @@ LIBS_PATH="libs" KAA_LIB_PATH="$LIBS_PATH/kaa" KAA_C_LIB_HEADER_PATH="$KAA_LIB_PATH/src" KAA_CPP_LIB_HEADER_PATH="$KAA_LIB_PATH/kaa" -KAA_SDK_TAR="kaa-client*.tar.gz" +KAA_SDK_TAR="kaa-c*.tar.gz" function build_thirdparty { if [[ ! -d "$KAA_C_LIB_HEADER_PATH" && ! -d "$KAA_CPP_LIB_HEADER_PATH" ]] diff --git a/vehicletelemetry/source/cpp/build.bat b/vehicletelemetry/source/cpp/build.bat index 8a3182d3b..8a53eb387 100755 --- a/vehicletelemetry/source/cpp/build.bat +++ b/vehicletelemetry/source/cpp/build.bat @@ -30,7 +30,7 @@ set LIBS_PATH=libs set KAA_LIB_PATH=%LIBS_PATH%\kaa set KAA_C_LIB_HEADER_PATH=%KAA_LIB_PATH%\src set KAA_CPP_LIB_HEADER_PATH=%KAA_LIB_PATH%\kaa -set KAA_SDK_TAR="kaa-client*.tar.gz" +set KAA_SDK_TAR="kaa-c*.tar.gz" set KAA_SDK_TAR_NAME= @@ -127,4 +127,4 @@ goto :eof echo "Choose one of the following: {build|run|deploy|clean}" goto :eof -endlocal \ No newline at end of file +endlocal From b2c25684fa7a54e8cd7e5525cba6730a14ced0a7 Mon Sep 17 00:00:00 2001 From: Andrew Shvayka Date: Mon, 21 Mar 2016 12:37:41 +0200 Subject: [PATCH 04/42] Version set to 1.2.2-SNAPSHOT --- activationdemo/pom.xml | 2 +- cassandrademo/pom.xml | 2 +- cellmonitor/pom.xml | 2 +- cityguide/pom.xml | 2 +- citylights-controller/pom.xml | 2 +- common/pom.xml | 2 +- configurationdemo/pom.xml | 2 +- connectedcar/pom.xml | 2 +- datacollectiondemo/pom.xml | 2 +- econais/ec19d/pom.xml | 2 +- econais/ec19d/streetlight-driver/pom.xml | 2 +- econais/ec19d/trafficlights-driver/pom.xml | 2 +- econais/pom.xml | 2 +- eventdemo/pom.xml | 2 +- gpiocontrol/pom.xml | 2 +- iotworld/pom.xml | 2 +- notificationdemo/pom.xml | 2 +- ota/pom.xml | 2 +- photoframe/pom.xml | 2 +- pom.xml | 4 ++-- powerplant-android/pom.xml | 2 +- powerplant-couchbase-proxy/pom.xml | 2 +- powerplant-dashboard/pom.xml | 2 +- powerplant/pom.xml | 2 +- smarthousedemo/pom.xml | 2 +- sparkdemo/pom.xml | 2 +- stormdemo/pom.xml | 2 +- twitterled/pom.xml | 2 +- twitterled/twitterboard/pom.xml | 2 +- twitterled/twittermonitor/pom.xml | 2 +- vehicletelemetry/pom.xml | 2 +- verifiersdemo/pom.xml | 2 +- zeppelindemo/pom.xml | 2 +- zeppelindemo/source/java/pom.xml | 2 +- 34 files changed, 35 insertions(+), 35 deletions(-) diff --git a/activationdemo/pom.xml b/activationdemo/pom.xml index f0d9f646a..3525c586d 100755 --- a/activationdemo/pom.xml +++ b/activationdemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/cassandrademo/pom.xml b/cassandrademo/pom.xml index dcc244b71..715d25f46 100644 --- a/cassandrademo/pom.xml +++ b/cassandrademo/pom.xml @@ -21,7 +21,7 @@ examples org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT org.kaaproject.kaa.examples diff --git a/cellmonitor/pom.xml b/cellmonitor/pom.xml index c15d53e20..985044854 100755 --- a/cellmonitor/pom.xml +++ b/cellmonitor/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/cityguide/pom.xml b/cityguide/pom.xml index 86eca02e9..a61ec2ba8 100755 --- a/cityguide/pom.xml +++ b/cityguide/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/citylights-controller/pom.xml b/citylights-controller/pom.xml index 359895559..662408112 100755 --- a/citylights-controller/pom.xml +++ b/citylights-controller/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/common/pom.xml b/common/pom.xml index 5cad9afff..4b653538c 100755 --- a/common/pom.xml +++ b/common/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/configurationdemo/pom.xml b/configurationdemo/pom.xml index 75c2a1496..d0944f411 100755 --- a/configurationdemo/pom.xml +++ b/configurationdemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/connectedcar/pom.xml b/connectedcar/pom.xml index 2299199ad..740dcc350 100755 --- a/connectedcar/pom.xml +++ b/connectedcar/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/datacollectiondemo/pom.xml b/datacollectiondemo/pom.xml index b5670ea1c..570f4ddc1 100755 --- a/datacollectiondemo/pom.xml +++ b/datacollectiondemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/econais/ec19d/pom.xml b/econais/ec19d/pom.xml index 6963fd3c0..ee50b295b 100755 --- a/econais/ec19d/pom.xml +++ b/econais/ec19d/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa.examples - 1.2.1 + 1.2.2-SNAPSHOT econais org.kaaproject.kaa.examples.econais diff --git a/econais/ec19d/streetlight-driver/pom.xml b/econais/ec19d/streetlight-driver/pom.xml index cc816348c..1f681a379 100755 --- a/econais/ec19d/streetlight-driver/pom.xml +++ b/econais/ec19d/streetlight-driver/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa.examples.econais - 1.2.1 + 1.2.2-SNAPSHOT ec19d org.kaaproject.kaa.examples.econais.ec19d diff --git a/econais/ec19d/trafficlights-driver/pom.xml b/econais/ec19d/trafficlights-driver/pom.xml index cf19368fd..85cf9f825 100755 --- a/econais/ec19d/trafficlights-driver/pom.xml +++ b/econais/ec19d/trafficlights-driver/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa.examples.econais - 1.2.1 + 1.2.2-SNAPSHOT ec19d org.kaaproject.kaa.examples.econais.ec19d diff --git a/econais/pom.xml b/econais/pom.xml index 45b229127..4414724a3 100755 --- a/econais/pom.xml +++ b/econais/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/eventdemo/pom.xml b/eventdemo/pom.xml index def103a9d..72952fc9b 100755 --- a/eventdemo/pom.xml +++ b/eventdemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/gpiocontrol/pom.xml b/gpiocontrol/pom.xml index f95da062b..d7f10789f 100644 --- a/gpiocontrol/pom.xml +++ b/gpiocontrol/pom.xml @@ -20,7 +20,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/iotworld/pom.xml b/iotworld/pom.xml index 32d0e8640..1bd61f565 100755 --- a/iotworld/pom.xml +++ b/iotworld/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/notificationdemo/pom.xml b/notificationdemo/pom.xml index c1199534f..4b0128c89 100755 --- a/notificationdemo/pom.xml +++ b/notificationdemo/pom.xml @@ -20,7 +20,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/ota/pom.xml b/ota/pom.xml index 6f5a850b6..08827e897 100755 --- a/ota/pom.xml +++ b/ota/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/photoframe/pom.xml b/photoframe/pom.xml index 7a9330479..8af3cd98c 100755 --- a/photoframe/pom.xml +++ b/photoframe/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/pom.xml b/pom.xml index fba5ad92b..6c4b4d34c 100755 --- a/pom.xml +++ b/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa examples - 1.2.1 + 1.2.2-SNAPSHOT pom Sample applications for Kaa Sandbox @@ -27,7 +27,7 @@ ${basedir} - 0.8.1 + 0.8.2-SNAPSHOT 2.4.1 1.7.5 4.11 diff --git a/powerplant-android/pom.xml b/powerplant-android/pom.xml index a0ddeae56..33daa5cea 100755 --- a/powerplant-android/pom.xml +++ b/powerplant-android/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/powerplant-couchbase-proxy/pom.xml b/powerplant-couchbase-proxy/pom.xml index 80bc21369..98d874e60 100755 --- a/powerplant-couchbase-proxy/pom.xml +++ b/powerplant-couchbase-proxy/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/powerplant-dashboard/pom.xml b/powerplant-dashboard/pom.xml index 50d03e931..e40420d98 100755 --- a/powerplant-dashboard/pom.xml +++ b/powerplant-dashboard/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/powerplant/pom.xml b/powerplant/pom.xml index 69f96d752..232c68fdb 100755 --- a/powerplant/pom.xml +++ b/powerplant/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/smarthousedemo/pom.xml b/smarthousedemo/pom.xml index f56259921..e2657d7ca 100755 --- a/smarthousedemo/pom.xml +++ b/smarthousedemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/sparkdemo/pom.xml b/sparkdemo/pom.xml index 8e97fa638..e75a1eaa3 100644 --- a/sparkdemo/pom.xml +++ b/sparkdemo/pom.xml @@ -21,7 +21,7 @@ examples org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT org.kaaproject.kaa.examples diff --git a/stormdemo/pom.xml b/stormdemo/pom.xml index a19deccd8..d292dbb23 100644 --- a/stormdemo/pom.xml +++ b/stormdemo/pom.xml @@ -21,7 +21,7 @@ examples org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT org.kaaproject.kaa.examples diff --git a/twitterled/pom.xml b/twitterled/pom.xml index b7b582a5c..55ba2a1b3 100755 --- a/twitterled/pom.xml +++ b/twitterled/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/twitterled/twitterboard/pom.xml b/twitterled/twitterboard/pom.xml index cc3d89e02..5c5a15d6b 100755 --- a/twitterled/twitterboard/pom.xml +++ b/twitterled/twitterboard/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa.examples - 1.2.1 + 1.2.2-SNAPSHOT twitterled org.kaaproject.kaa.examples.twitterled diff --git a/twitterled/twittermonitor/pom.xml b/twitterled/twittermonitor/pom.xml index ae1d249e8..ac72e3519 100755 --- a/twitterled/twittermonitor/pom.xml +++ b/twitterled/twittermonitor/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa.examples - 1.2.1 + 1.2.2-SNAPSHOT twitterled org.kaaproject.kaa.examples.twitterled diff --git a/vehicletelemetry/pom.xml b/vehicletelemetry/pom.xml index 45c0626f0..a472c5e1d 100755 --- a/vehicletelemetry/pom.xml +++ b/vehicletelemetry/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/verifiersdemo/pom.xml b/verifiersdemo/pom.xml index 81da86c40..dd653b953 100755 --- a/verifiersdemo/pom.xml +++ b/verifiersdemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/zeppelindemo/pom.xml b/zeppelindemo/pom.xml index 9b94d66db..33b7c1307 100644 --- a/zeppelindemo/pom.xml +++ b/zeppelindemo/pom.xml @@ -21,7 +21,7 @@ examples org.kaaproject.kaa - 1.2.1 + 1.2.2-SNAPSHOT org.kaaproject.kaa.examples diff --git a/zeppelindemo/source/java/pom.xml b/zeppelindemo/source/java/pom.xml index ac0284c18..8ae6a7780 100644 --- a/zeppelindemo/source/java/pom.xml +++ b/zeppelindemo/source/java/pom.xml @@ -20,7 +20,7 @@ org.kaaproject.kaa.demo.zeppelin simulator - 1.2.1 + 1.2.2-SNAPSHOT jar Kaa, Cassandra, Zeppelin demo From b0cbf0a49c07191709279246b96db734e21c2325 Mon Sep 17 00:00:00 2001 From: Andrew Shvayka Date: Mon, 21 Mar 2016 14:11:21 +0200 Subject: [PATCH 05/42] Version set to 1.3.0 --- activationdemo/pom.xml | 2 +- cassandrademo/pom.xml | 2 +- cellmonitor/pom.xml | 2 +- cityguide/pom.xml | 2 +- citylights-controller/pom.xml | 2 +- common/pom.xml | 2 +- configurationdemo/pom.xml | 2 +- connectedcar/pom.xml | 2 +- datacollectiondemo/pom.xml | 2 +- econais/ec19d/pom.xml | 2 +- econais/ec19d/streetlight-driver/pom.xml | 2 +- econais/ec19d/trafficlights-driver/pom.xml | 2 +- econais/pom.xml | 2 +- eventdemo/pom.xml | 2 +- gpiocontrol/pom.xml | 2 +- iotworld/pom.xml | 2 +- notificationdemo/pom.xml | 2 +- ota/pom.xml | 2 +- photoframe/pom.xml | 2 +- pom.xml | 2 +- powerplant-android/pom.xml | 2 +- powerplant-couchbase-proxy/pom.xml | 2 +- powerplant-dashboard/pom.xml | 2 +- powerplant/pom.xml | 2 +- smarthousedemo/pom.xml | 2 +- sparkdemo/pom.xml | 2 +- stormdemo/pom.xml | 2 +- twitterled/pom.xml | 2 +- twitterled/twitterboard/pom.xml | 2 +- twitterled/twittermonitor/pom.xml | 2 +- vehicletelemetry/pom.xml | 2 +- verifiersdemo/pom.xml | 2 +- zeppelindemo/pom.xml | 2 +- zeppelindemo/source/java/pom.xml | 2 +- 34 files changed, 34 insertions(+), 34 deletions(-) diff --git a/activationdemo/pom.xml b/activationdemo/pom.xml index 3525c586d..2fd7de3f8 100644 --- a/activationdemo/pom.xml +++ b/activationdemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/cassandrademo/pom.xml b/cassandrademo/pom.xml index 715d25f46..48422b920 100644 --- a/cassandrademo/pom.xml +++ b/cassandrademo/pom.xml @@ -21,7 +21,7 @@ examples org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT org.kaaproject.kaa.examples diff --git a/cellmonitor/pom.xml b/cellmonitor/pom.xml index 985044854..d927c9922 100644 --- a/cellmonitor/pom.xml +++ b/cellmonitor/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/cityguide/pom.xml b/cityguide/pom.xml index a61ec2ba8..e791b8703 100644 --- a/cityguide/pom.xml +++ b/cityguide/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/citylights-controller/pom.xml b/citylights-controller/pom.xml index 662408112..bb71edc8a 100644 --- a/citylights-controller/pom.xml +++ b/citylights-controller/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/common/pom.xml b/common/pom.xml index 4b653538c..aa6fec5be 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/configurationdemo/pom.xml b/configurationdemo/pom.xml index d0944f411..513da582f 100644 --- a/configurationdemo/pom.xml +++ b/configurationdemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/connectedcar/pom.xml b/connectedcar/pom.xml index 740dcc350..eb8d29f97 100644 --- a/connectedcar/pom.xml +++ b/connectedcar/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/datacollectiondemo/pom.xml b/datacollectiondemo/pom.xml index 570f4ddc1..40945e20b 100644 --- a/datacollectiondemo/pom.xml +++ b/datacollectiondemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/econais/ec19d/pom.xml b/econais/ec19d/pom.xml index ee50b295b..7baa707be 100644 --- a/econais/ec19d/pom.xml +++ b/econais/ec19d/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa.examples - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT econais org.kaaproject.kaa.examples.econais diff --git a/econais/ec19d/streetlight-driver/pom.xml b/econais/ec19d/streetlight-driver/pom.xml index 1f681a379..7977185b4 100644 --- a/econais/ec19d/streetlight-driver/pom.xml +++ b/econais/ec19d/streetlight-driver/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa.examples.econais - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT ec19d org.kaaproject.kaa.examples.econais.ec19d diff --git a/econais/ec19d/trafficlights-driver/pom.xml b/econais/ec19d/trafficlights-driver/pom.xml index 85cf9f825..d1f66cd68 100644 --- a/econais/ec19d/trafficlights-driver/pom.xml +++ b/econais/ec19d/trafficlights-driver/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa.examples.econais - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT ec19d org.kaaproject.kaa.examples.econais.ec19d diff --git a/econais/pom.xml b/econais/pom.xml index 4414724a3..5dedea0cc 100644 --- a/econais/pom.xml +++ b/econais/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/eventdemo/pom.xml b/eventdemo/pom.xml index 72952fc9b..5ce06fa24 100644 --- a/eventdemo/pom.xml +++ b/eventdemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/gpiocontrol/pom.xml b/gpiocontrol/pom.xml index d7f10789f..8a84c610a 100644 --- a/gpiocontrol/pom.xml +++ b/gpiocontrol/pom.xml @@ -20,7 +20,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/iotworld/pom.xml b/iotworld/pom.xml index 1bd61f565..559427bf9 100644 --- a/iotworld/pom.xml +++ b/iotworld/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/notificationdemo/pom.xml b/notificationdemo/pom.xml index 4b0128c89..2cba7cd4f 100644 --- a/notificationdemo/pom.xml +++ b/notificationdemo/pom.xml @@ -20,7 +20,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/ota/pom.xml b/ota/pom.xml index 08827e897..a69522449 100644 --- a/ota/pom.xml +++ b/ota/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/photoframe/pom.xml b/photoframe/pom.xml index 8af3cd98c..26ba7dc49 100644 --- a/photoframe/pom.xml +++ b/photoframe/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/pom.xml b/pom.xml index 6c4b4d34c..397e6d1b2 100644 --- a/pom.xml +++ b/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa examples - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT pom Sample applications for Kaa Sandbox diff --git a/powerplant-android/pom.xml b/powerplant-android/pom.xml index 33daa5cea..a6e40dad1 100644 --- a/powerplant-android/pom.xml +++ b/powerplant-android/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/powerplant-couchbase-proxy/pom.xml b/powerplant-couchbase-proxy/pom.xml index 98d874e60..2c64de59e 100644 --- a/powerplant-couchbase-proxy/pom.xml +++ b/powerplant-couchbase-proxy/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/powerplant-dashboard/pom.xml b/powerplant-dashboard/pom.xml index e40420d98..41a9f10c2 100644 --- a/powerplant-dashboard/pom.xml +++ b/powerplant-dashboard/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/powerplant/pom.xml b/powerplant/pom.xml index 232c68fdb..b44543b1f 100644 --- a/powerplant/pom.xml +++ b/powerplant/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/smarthousedemo/pom.xml b/smarthousedemo/pom.xml index e2657d7ca..c1a58dd8a 100644 --- a/smarthousedemo/pom.xml +++ b/smarthousedemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/sparkdemo/pom.xml b/sparkdemo/pom.xml index e75a1eaa3..5a2d3bbe1 100644 --- a/sparkdemo/pom.xml +++ b/sparkdemo/pom.xml @@ -21,7 +21,7 @@ examples org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT org.kaaproject.kaa.examples diff --git a/stormdemo/pom.xml b/stormdemo/pom.xml index d292dbb23..4671dc251 100644 --- a/stormdemo/pom.xml +++ b/stormdemo/pom.xml @@ -21,7 +21,7 @@ examples org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT org.kaaproject.kaa.examples diff --git a/twitterled/pom.xml b/twitterled/pom.xml index 55ba2a1b3..2b5b1d9b2 100644 --- a/twitterled/pom.xml +++ b/twitterled/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/twitterled/twitterboard/pom.xml b/twitterled/twitterboard/pom.xml index 5c5a15d6b..039f89632 100644 --- a/twitterled/twitterboard/pom.xml +++ b/twitterled/twitterboard/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa.examples - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT twitterled org.kaaproject.kaa.examples.twitterled diff --git a/twitterled/twittermonitor/pom.xml b/twitterled/twittermonitor/pom.xml index ac72e3519..ecf743af6 100644 --- a/twitterled/twittermonitor/pom.xml +++ b/twitterled/twittermonitor/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa.examples - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT twitterled org.kaaproject.kaa.examples.twitterled diff --git a/vehicletelemetry/pom.xml b/vehicletelemetry/pom.xml index a472c5e1d..f95bfcc8a 100644 --- a/vehicletelemetry/pom.xml +++ b/vehicletelemetry/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/verifiersdemo/pom.xml b/verifiersdemo/pom.xml index dd653b953..0f7e55f1f 100644 --- a/verifiersdemo/pom.xml +++ b/verifiersdemo/pom.xml @@ -19,7 +19,7 @@ 4.0.0 org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT examples org.kaaproject.kaa.examples diff --git a/zeppelindemo/pom.xml b/zeppelindemo/pom.xml index 33b7c1307..b52b3a32d 100644 --- a/zeppelindemo/pom.xml +++ b/zeppelindemo/pom.xml @@ -21,7 +21,7 @@ examples org.kaaproject.kaa - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT org.kaaproject.kaa.examples diff --git a/zeppelindemo/source/java/pom.xml b/zeppelindemo/source/java/pom.xml index 8ae6a7780..80136afbd 100644 --- a/zeppelindemo/source/java/pom.xml +++ b/zeppelindemo/source/java/pom.xml @@ -20,7 +20,7 @@ org.kaaproject.kaa.demo.zeppelin simulator - 1.2.2-SNAPSHOT + 1.3.0-SNAPSHOT jar Kaa, Cassandra, Zeppelin demo From dc809181fd50bcf6d1fd95b9459c36e03c7fbcda Mon Sep 17 00:00:00 2001 From: Andrew Shvayka Date: Mon, 21 Mar 2016 14:13:08 +0200 Subject: [PATCH 06/42] mend Version set to 1.3.0-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 397e6d1b2..431410e7b 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ ${basedir} - 0.8.2-SNAPSHOT + 0.9.0-SNAPSHOT 2.4.1 1.7.5 4.11 From a945afb8a84cfab2fdae30f2477df37b72bb2296 Mon Sep 17 00:00:00 2001 From: Anton Bohomol Date: Mon, 28 Mar 2016 11:30:39 +0300 Subject: [PATCH 07/42] APP: remove duplicated files for Android application --- .../res/layout/activity_cell_monitor.xml | 26 ----------------- cellmonitor/source/res/values-v11/styles.xml | 24 --------------- cellmonitor/source/res/values-v14/styles.xml | 24 --------------- cellmonitor/source/res/values-v21/styles.xml | 25 ---------------- .../source/res/values-w820dp/dimens.xml | 23 --------------- cellmonitor/source/res/values/dimens.xml | 25 ---------------- cellmonitor/source/res/values/styles.xml | 29 ------------------- .../event/CellLocationChanged.java | 24 --------------- .../cellmonitor/event/GpsLocationChanged.java | 24 --------------- .../kaa/demo/cellmonitor/event/LogSent.java | 27 ----------------- .../event/SignalStrengthChanged.java | 24 --------------- 11 files changed, 275 deletions(-) delete mode 100644 cellmonitor/source/res/layout/activity_cell_monitor.xml delete mode 100644 cellmonitor/source/res/values-v11/styles.xml delete mode 100644 cellmonitor/source/res/values-v14/styles.xml delete mode 100644 cellmonitor/source/res/values-v21/styles.xml delete mode 100644 cellmonitor/source/res/values-w820dp/dimens.xml delete mode 100644 cellmonitor/source/res/values/dimens.xml delete mode 100644 cellmonitor/source/res/values/styles.xml delete mode 100644 cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/CellLocationChanged.java delete mode 100644 cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/GpsLocationChanged.java delete mode 100644 cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/LogSent.java delete mode 100644 cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/SignalStrengthChanged.java diff --git a/cellmonitor/source/res/layout/activity_cell_monitor.xml b/cellmonitor/source/res/layout/activity_cell_monitor.xml deleted file mode 100644 index 1bfa39cb5..000000000 --- a/cellmonitor/source/res/layout/activity_cell_monitor.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - diff --git a/cellmonitor/source/res/values-v11/styles.xml b/cellmonitor/source/res/values-v11/styles.xml deleted file mode 100644 index f886acbcd..000000000 --- a/cellmonitor/source/res/values-v11/styles.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - diff --git a/cellmonitor/source/res/values-v14/styles.xml b/cellmonitor/source/res/values-v14/styles.xml deleted file mode 100644 index f886acbcd..000000000 --- a/cellmonitor/source/res/values-v14/styles.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - diff --git a/cellmonitor/source/res/values-v21/styles.xml b/cellmonitor/source/res/values-v21/styles.xml deleted file mode 100644 index 68c9fbdc7..000000000 --- a/cellmonitor/source/res/values-v21/styles.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - diff --git a/cellmonitor/source/res/values-w820dp/dimens.xml b/cellmonitor/source/res/values-w820dp/dimens.xml deleted file mode 100644 index 635be2ae2..000000000 --- a/cellmonitor/source/res/values-w820dp/dimens.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - 64dp - - diff --git a/cellmonitor/source/res/values/dimens.xml b/cellmonitor/source/res/values/dimens.xml deleted file mode 100644 index c5e50c39d..000000000 --- a/cellmonitor/source/res/values/dimens.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - 16dp - 16dp - - diff --git a/cellmonitor/source/res/values/styles.xml b/cellmonitor/source/res/values/styles.xml deleted file mode 100644 index 019552812..000000000 --- a/cellmonitor/source/res/values/styles.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - diff --git a/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/CellLocationChanged.java b/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/CellLocationChanged.java deleted file mode 100644 index fa4954391..000000000 --- a/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/CellLocationChanged.java +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Copyright 2014-2016 CyberVision, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.kaaproject.kaa.demo.cellmonitor.event; - -/** - * An event class that is used to notify UI components after a GSM cell location was changed. - */ -public class CellLocationChanged { - -} diff --git a/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/GpsLocationChanged.java b/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/GpsLocationChanged.java deleted file mode 100644 index 0a43dbe51..000000000 --- a/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/GpsLocationChanged.java +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Copyright 2014-2016 CyberVision, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.kaaproject.kaa.demo.cellmonitor.event; - -/** - * An event class that is used to notify UI components after a phone GPS location was changed. - */ -public class GpsLocationChanged { - -} diff --git a/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/LogSent.java b/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/LogSent.java deleted file mode 100644 index b7a42db4f..000000000 --- a/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/LogSent.java +++ /dev/null @@ -1,27 +0,0 @@ -/** - * Copyright 2014-2016 CyberVision, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.kaaproject.kaa.demo.cellmonitor.event; - -import org.kaaproject.kaa.client.KaaClient; - -/** - * An event class that is used to notify UI components when {@link KaaClient#addLogRecord(org.kaaproject.kaa.demo.cellmonitor.CellMonitorLog)} - * operation was performed. - */ -public class LogSent { - -} diff --git a/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/SignalStrengthChanged.java b/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/SignalStrengthChanged.java deleted file mode 100644 index 16efb7c7e..000000000 --- a/cellmonitor/source/src/org/kaaproject/kaa/demo/cellmonitor/event/SignalStrengthChanged.java +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Copyright 2014-2016 CyberVision, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.kaaproject.kaa.demo.cellmonitor.event; - -/** - * An event class that is used to notify UI components after strength of a mobile signal was changed. - */ -public class SignalStrengthChanged { - -} From a03eead26786562849a72e809f8cb693ddca9514 Mon Sep 17 00:00:00 2001 From: Andrey Snitsaruk Date: Mon, 28 Mar 2016 19:35:18 +0300 Subject: [PATCH 08/42] APP-62: Fixed crash after Twitter authorization --- .../src/org/kaaproject/kaa/demo/verifiersdemo/LoginActivity.java | 1 + 1 file changed, 1 insertion(+) diff --git a/verifiersdemo/source/src/org/kaaproject/kaa/demo/verifiersdemo/LoginActivity.java b/verifiersdemo/source/src/org/kaaproject/kaa/demo/verifiersdemo/LoginActivity.java index 37ad6714f..392286a23 100644 --- a/verifiersdemo/source/src/org/kaaproject/kaa/demo/verifiersdemo/LoginActivity.java +++ b/verifiersdemo/source/src/org/kaaproject/kaa/demo/verifiersdemo/LoginActivity.java @@ -274,6 +274,7 @@ public void updateUI(String userName, String userId, String token, AccountType t case TWITTER: kaaVerifierToken = verifiersTokens.getTwitterKaaVerifierToken(); Session.getActiveSession().closeAndClearTokenInformation(); + getVerifiersApplication().resume(); break; } From 8d46071f2ad410c5f61ad00b035ca993c5db1a26 Mon Sep 17 00:00:00 2001 From: Andrey Snitsaruk Date: Fri, 25 Mar 2016 17:34:24 +0200 Subject: [PATCH 09/42] Improved activity layout --- .../source/res/layout/activity_logins.xml | 148 ++++++++++++------ .../kaa/demo/verifiersdemo/LoginActivity.java | 55 +++++-- 2 files changed, 143 insertions(+), 60 deletions(-) diff --git a/verifiersdemo/source/res/layout/activity_logins.xml b/verifiersdemo/source/res/layout/activity_logins.xml index 19a41ce6f..e674f4213 100644 --- a/verifiersdemo/source/res/layout/activity_logins.xml +++ b/verifiersdemo/source/res/layout/activity_logins.xml @@ -18,25 +18,10 @@ --> - - - - - + android:layout_width="match_parent" + android:layout_height="match_parent" + android:animateLayoutChanges="true" + android:orientation="vertical"> @@ -54,6 +40,8 @@ android:layout_height="wrap_content" android:layout_below="@+id/infoText" android:layout_centerHorizontal="true" + android:layout_marginBottom="20dp" + android:text="FACEBOOK user name: Andrey" android:textColor="#333" android:textSize="14sp" /> @@ -63,16 +51,24 @@ android:layout_height="wrap_content" android:layout_below="@+id/greeting" android:layout_centerHorizontal="true" - android:paddingBottom="50dp" + android:text="FACEBOOK user id: 232" android:textColor="#333" - android:textSize="14sp" /> + android:textSize="14sp" + android:visibility="gone" /> -