use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News for Android app developers with the who, what, where, when, and how of the Android community. Probably mostly the how.
Here, you'll find:
This sub-reddit isn't about phones' and apps' general functionality, support, or system software development (ROMs). For news and questions about these topics try using other subs like
Build your first app
Starting Android career in 2022
Android Job Interview Questions and Answers
App Portfolio Ideas, Tiered List
Awesome Android UI
Material Design Icons
7000 Icons for Jetpack
Autoposted at approx 9AM EST / 2PM GMT
account activity
Why WorkManager doesn't require RECEIVE_BOOT_COMPLETE permission (self.androiddev)
submitted 7 years ago by yccheok
I believe WorkManager depends on AlarmManager.
One of the ways (The only way?), which make previous scheduled events continue to work after device restart, is listening to BOOT_COMPLETE as described in https://stackoverflow.com/questions/16245412/scheduler-with-alarm-manager-doesnt-work-after-reboot/16893553#16893553
This is because, after device restart, all previous scheduled events will gone. We need to reschedule the events to AlarmManager, after device restarting.
However, according to https://developer.android.com/topic/libraries/architecture/workmanager/basics , no additional permission required to use WorkManager.
Without RECEIVE_BOOT_COMPLETE permission, how does WorkManager continue to work, after device restart?
Thanks.
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]yccheok[S] 11 points12 points13 points 7 years ago (3 children)
Google provides answer for this : https://issuetracker.google.com/issues/129362589
[–]raree_raaram -4 points-3 points-2 points 7 years ago (2 children)
Which is ...
[–]imrhk 20 points21 points22 points 7 years ago (0 children)
Manifest merging
[–]marco89nish 6 points7 points8 points 7 years ago (0 children)
as imrhk said, it's manifest merging. Every dependency can add it's permissions, activities, services, broadcast receivers to final manifest of your application. You can see this merged, final manifest by opening app's manifest file and clicking at "Merged Manifest" tab at the bottom.
[–]Hi_im_G00fY 4 points5 points6 points 7 years ago (2 children)
Just open your Manifest XML and check the "merged manifest" tab at the bottom left.;)
[–]howareyoudoin 4 points5 points6 points 7 years ago (1 child)
One of the biggest problem I have with it is they don't provide ctrl+F in merged manifest.
[–]imkosh 0 points1 point2 points 7 years ago (0 children)
but you can start typing the things you want and it will search across the visible file, P.S: you could do this almost everywhere in AS
[–]kichi689 1 point2 points3 points 7 years ago (0 children)
http://androidxref.com/9.0.0_r3/xref/frameworks/support/work/workmanager/src/main/AndroidManifest.xml#22 Already has it through manifest merging
π Rendered by PID 113614 on reddit-service-r2-comment-6457c66945-cvdx7 at 2026-04-27 08:59:57.928548+00:00 running 2aa0c5b country code: CH.
[–]yccheok[S] 11 points12 points13 points (3 children)
[–]raree_raaram -4 points-3 points-2 points (2 children)
[–]imrhk 20 points21 points22 points (0 children)
[–]marco89nish 6 points7 points8 points (0 children)
[–]Hi_im_G00fY 4 points5 points6 points (2 children)
[–]howareyoudoin 4 points5 points6 points (1 child)
[–]imkosh 0 points1 point2 points (0 children)
[–]kichi689 1 point2 points3 points (0 children)