포그라운드 서비스 위치 권한 심사 가이드
구글 플레이의 포그라운드 서비스 정책
Android 14 이상을 타겟팅하는 경우 Foreground service(FGS)를 사용하면
사용 목적에 맞는 FGS 유형 권한을 별도로 선언하고 심사 제출 시 사용 목적을 제출해야 합니다.
if the app targets API level 34 or higher, it must request the appropriate permission type for the kind of work the foreground service will be doing. Each foreground service type has a corresponding permission type. For example, if an app launches a foreground service that uses the camera, you must request both the FOREGROUND_SERVICE and FOREGROUND_SERVICE_CAMERA permissions. These are all normal permissions, so the system grants them automatically if they're listed in the manifest.
loplat SDK는 구글 플레이 정책에 따라 위치 정보 획득을 위해 FOREGROUND_SERVICE_LOCATION 권한을 사용하고 있습니다.
FOREGROUND_SERVICE_LOCATION 심사 제출 방법
사용 목적 체크
구글 플레이 콘솔, 아래 페이지로 이동해서 기타에 체크해 주세요.
구글 플레이 콘솔 → 메인메뉴 → 모니터링 및 개선 → 정책 및 프로그램 → 앱 콘텐츠 → 포그라운드 서비스 권한 -> 관리
Foreground service 사용 영상 첨부
앱이 Foreground service를 어떻게 사용하는지 설명하는 영상을 첨부해 주세요.
