Modified startForeground() method call to adapt for android 14+ #9835

Open
kavikhalique wants to merge 1 commit from kavikhalique/foreground-crash-fix into master
kavikhalique commented 2024-12-06 11:55:32 +00:00 (Migrated from github.com)

Fixes #9395

Its not sure it fixes the crash or not but this could be the cause of crash since in android api 34 and above we need to specify the foreground service type while calling the startForegound method for track recording and navigation.

Reference android documentation - https://developer.android.com/develop/background-work/services/foreground-services#start

Please test and provide feedback if its solves the crash or not

Fixes #9395 Its not sure it fixes the crash or not but this could be the cause of crash since in android api 34 and above we need to specify the foreground service type while calling the startForegound method for track recording and navigation. Reference android documentation - https://developer.android.com/develop/background-work/services/foreground-services#start Please test and provide feedback if its solves the crash or not
biodranik (Migrated from github.com) reviewed 2024-12-06 11:55:32 +00:00
vng (Migrated from github.com) reviewed 2024-12-06 11:55:32 +00:00
rtsisyk reviewed 2024-12-06 11:55:32 +00:00
AndrewShkrob reviewed 2024-12-06 16:03:29 +00:00

What is the point of specifying the service type that was defined in the manifest and already has a service type specified?

<service android:name=".location.TrackRecordingService"
      android:foregroundServiceType="location"
      android:exported="false"
      android:enabled="true"
      android:stopWithTask="false"
      />

If this is a legitimate change then I'd prefer to set this value: FOREGROUND_SERVICE_TYPE_MANIFEST. It should automatically use all values from manifest and no need to define them in two places.

What is the point of specifying the service type that was defined in the manifest and already has a service type specified? ```xml <service android:name=".location.TrackRecordingService" android:foregroundServiceType="location" android:exported="false" android:enabled="true" android:stopWithTask="false" /> ```` If this is a legitimate change then I'd prefer to set this value: [FOREGROUND_SERVICE_TYPE_MANIFEST](https://developer.android.com/reference/android/content/pm/ServiceInfo.html#FOREGROUND_SERVICE_TYPE_MANIFEST). It should automatically use all values from manifest and no need to define them in two places.
kavikhalique (Migrated from github.com) reviewed 2024-12-06 16:14:49 +00:00
kavikhalique (Migrated from github.com) commented 2024-12-06 16:14:49 +00:00

I am also not very sure that it gonna solve the issue correctly or not but i read that from android 14 above we need to provide the type of foreground service. Since i was unable to regenerate the issue i cannot say it will resolve it since everything else seems fine.

I am also not very sure that it gonna solve the issue correctly or not but i read that from android 14 above we need to provide the type of foreground service. Since i was unable to regenerate the issue i cannot say it will resolve it since everything else seems fine.
kavikhalique (Migrated from github.com) reviewed 2024-12-06 16:26:46 +00:00
kavikhalique (Migrated from github.com) commented 2024-12-06 16:26:46 +00:00

https://developer.android.com/about/versions/14/changes/fgs-types-required#location

In this doc it states the steps while starting foreground service which requires location service. We need both manifest declaration as well as runtime declaration too i guess.

Kindly have a look @AndrewShkrob , i think this will probably solve the issue

https://developer.android.com/about/versions/14/changes/fgs-types-required#location In this doc it states the steps while starting foreground service which requires location service. We need both manifest declaration as well as runtime declaration too i guess. Kindly have a look @AndrewShkrob , i think this will probably solve the issue
This repo is archived. You cannot comment on pull requests.
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
3 participants
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#9835
No description provided.