앱의 Info.plist 파일에 NSLocationWhenInUseUsageDescription 및 NSLocationAlwaysAndWhenInUsageDescription 키를 포함해야합니다.
앱이 iOS 10 및 이전 버전을 지원하는 경우 NSLocationAlwaysUsageDescription 키도 필요합니다. 이러한 키가 없으면 승인 요청이 즉시 실패합니다.
최고관리자20-12-17 10:41
3개 이상 넣어야 하는 것으로 보여짐
----
드라이버쪽은 4개를 다 넣어도 해결이 안되어,
cordvoa-plugin-geolocation 을 삭제후 재설치 하였음.
최고관리자21-07-03 08:52
<platform name="ios">
<!-- background-geolocation -->
<config-file parent="NSLocationAlwaysAndWhenInUseUsageDescription" target="*-Info.plist">
<string>Background location tracking is required for our app so we can get the item location that this app delivery man bring.</string>
</config-file>
<config-file parent="NSLocationAlwaysUsageDescription" target="*-Info.plist">
<string>Background location tracking is required for our app so we can get the item location that this app delivery man bring.</string>
</config-file>
<config-file parent="NSLocationWhenInUseUsageDescription" target="*-Info.plist">
<string>Background location tracking is required for our app so we can get the item location that this app delivery man bring.</string>
</config-file>
<config-file parent="NSMotionUsageDescription" target="*-Info.plist">
<string>Device motion updates help determine when the device is stationary so the app can save power by turning off location-updates</string>
</config-file>
<!-- /background-geolocation -->
</platform>