From: Nibha Sharma Date: Tue, 30 Jun 2020 10:07:20 +0000 (+0530) Subject: [TBT][NonACR][Sensor][TFDF-10729,App not launching fix] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc61adbd3ff386cd1b85acea2eb8f44b7803856b;p=test%2Ftct%2Fnative%2Fbehavior.git [TBT][NonACR][Sensor][TFDF-10729,App not launching fix] Change-Id: Ica2a4f6ea351a902a72f72343c3a2a165c752832 Signed-off-by: Nibha Sharma --- diff --git a/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk b/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk old mode 100644 new mode 100755 index 22b0520..175c1da Binary files a/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk and b/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk differ diff --git a/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk b/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk old mode 100644 new mode 100755 index b60b2cd..2c1c578 Binary files a/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk and b/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk differ diff --git a/tbtcoreapp/src/model/tbt-list.c b/tbtcoreapp/src/model/tbt-list.c index db4dc24..5935b71 100755 --- a/tbtcoreapp/src/model/tbt-list.c +++ b/tbtcoreapp/src/model/tbt-list.c @@ -1291,7 +1291,7 @@ static tbt_info tbtapps[] = .sensor_response_interval = 100, .sensortype = SENSOR_PROXIMITY, - .units = SENSOR_UNIT_MAX, + .units = SENSOR_UNIT_DEGREE_PER_SECOND, .required_features_count = 1, .features_required = {FEATURE_SENSOR_PROXIMITY} @@ -1333,7 +1333,7 @@ static tbt_info tbtapps[] = .result = -1, .sensor_response_interval = 100, .sensortype = SENSOR_ULTRAVIOLET, - .units = SENSOR_UNIT_MAX, + .units = SENSOR_UNIT_DEGREE_PER_SECOND, .required_features_count = 1, .features_required = {FEATURE_SENSOR_ULTRAVIOLET} }, @@ -3020,7 +3020,7 @@ void tbt_list_init() ret = sensor_get_resolution(info->sensor, &resolution); DBG("sensor_get_resolution failed: %s",get_sensor_error(ret)); - DBG("apptype: %d resolution: %f",info->apptype,resolution); + DBG("apptype: %d %s resolution: %f",info->apptype,info->name,resolution); info->units_str = sensor_units_str_get(info->units); DBG("Unit String: %s", info->units_str); info->value_range = info->value_max - info->value_min;