char *second_tick = NULL;
char *minute_tick = NULL;
int ret;
+ int tick;
ret = aul_app_get_appid_bypid(getpid(), appid, sizeof(appid));
if (ret < 0) {
return;
}
- ret = pkgmgrinfo_appinfo_get_metadata_value(handle, METADATA_TICK_PER_SECOND, &second_tick);
- if (ret == PMINFO_R_OK) {
- _D("set default tick 1, type %d", WATCH_APP_TIME_TICKS_PER_SECOND);
- app_tick_type = WATCH_APP_TIME_TICKS_PER_SECOND;
- app_tick_resolution = 1;
- pkgmgrinfo_appinfo_destroy_appinfo(handle);
- return;
+ pkgmgrinfo_appinfo_get_metadata_value(handle, METADATA_TICK_PER_SECOND, &second_tick);
+ if (second_tick) {
+ sscanf(second_tick, "%d", &tick);
+ if (tick > 0) {
+ _D("set default tick %d, type %d", tick, WATCH_APP_TIME_TICKS_PER_SECOND);
+ app_tick_type = WATCH_APP_TIME_TICKS_PER_SECOND;
+ app_tick_resolution = tick;
+ pkgmgrinfo_appinfo_destroy_appinfo(handle);
+ return;
+ }
}
pkgmgrinfo_appinfo_destroy_appinfo(handle);