From: Chanwoo Choi Date: Wed, 19 Jun 2024 07:54:30 +0000 (+0900) Subject: Initialize major_version and minor_version as v1.0 X-Git-Tag: accepted/tizen/unified/20240704.173823^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=35266a97ae439c9447621a385e20ec336aa82e65;p=platform%2Fcore%2Flocation%2Flbs-server-plugin-replay.git Initialize major_version and minor_version as v1.0 Initialize major_version and minor_version as v1.0 in order to support the new HAL API versioning method and then remove the deprecated abi_version field. Change-Id: I1823ea0d66222f843ace4e7be5a17a7af910351c Signed-off-by: Chanwoo Choi --- diff --git a/gps-plugin/src/gps_plugin_replay.c b/gps-plugin/src/gps_plugin_replay.c index 3958fd6..f4482a3 100755 --- a/gps-plugin/src/gps_plugin_replay.c +++ b/gps-plugin/src/gps_plugin_replay.c @@ -762,7 +762,8 @@ static int location_exit(void *data) hal_backend EXPORT hal_backend_location_data = { .name = "location-backend", .vendor = "replay", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, .init = location_init, .exit = location_exit, + .major_version = 1, + .minor_version = 0, };