I have an app running on Android that creates an alarm that is fired every 24 hours. This alarm is working as expected.
However, when I update my app through Google
Your solution is as simple as below:
Have a broadcast receiver registered within your app with 2 intent filters namely:
You will also need the permission, "android.permission.RECEIVE_BOOT_COMPLETED". In this receiver you can start your alarms again.
Yes you are correct. Once the app is updated the service, alarms and process of the app will be stopped. The updated apps will be in the stopped list of Andorid os.
Then only the alarm can be started once after the first manual launch of that application.