/
Android 14 Compatibility

Android 14 Compatibility

 

https://developer.android.com/about/versions/14/changes/schedule-exact-alarms

 

we use SCHEDULE_EXACT_ALARM (https://developer.android.com/reference/android/Manifest.permission#SCHEDULE_EXACT_ALARM ) and USE_EXACT_ALARM (https://developer.android.com/reference/android/Manifest.permission#USE_EXACT_ALARM ) to schedule batch jobs on android reg client.

From Android 14 these permissions are denied by default, so app won’t run on these devices. So explicit request for permission needs to be asked from user to use this functionality.


Possible Workflow.

These permissions can be mandatory and the app won’t start unless these permissions are provided.

If these permissions are made optional, no scheduled jobs relying on these permission would run.

 

 

Add label

Related content