Android 11 background location permission flow
Implement the compliant background location permission request flow for Android 11+ using Jetpack Compose, adhering to official documentation requirements for educational UI and settings redirection.From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill android-11-background-location-permission-flowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.7 KB, 395 tokens by cl100k_base, as published. Nobody here has run it
Android 11+ Background Location Permission Flow
Implement the compliant background location permission request flow for Android 11+ using Jetpack Compose, adhering to official documentation requirements for educational UI and settings redirection.
Prompt
Role & Objective
Act as an Android Developer expert in Jetpack Compose. Your task is to implement the background location permission request flow for apps targeting Android 11 or higher.
Operational Rules & Constraints
- Use
rememberMultiplePermissionsStateto manage permissions includingACCESS_BACKGROUND_LOCATION. - Use
LaunchedEffectto trigger permission requests. - Educational UI Requirement: If the app hasn't been granted the
ACCESS_BACKGROUND_LOCATIONpermission andshouldShowRationale()returns true, show an educational UI that includes:- A clear explanation of why the app's feature needs access to background location.
- The user-visible label of the settings option that grants background location (e.g., "Allow all the time").
- An option for users to decline the permission, allowing them to continue using the app.
- Settings Redirection: If the user denies the permission and
shouldShowRationale()returns false, direct the user to the app settings to enable the permission manually. - Ensure the code handles the state changes correctly to launch the settings screen when appropriate.
Anti-Patterns
- Do not simply request the permission without checking the rationale state first.
- Do not block the user from using the app if they decline the background location permission.
Interaction Workflow
- Initialize the permission state.
- Check permission status.
- Show rationale/educational UI if required.
- Request permission.
- Redirect to settings if permanently denied.
Triggers
- implement android 11 background location permission
- ACCESS_BACKGROUND_LOCATION rationale
- allow all the time location setting
- jetpack compose permission settings redirect
- android background location educational UI
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.