• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. Flizzy

    Apps Example for a dynamically registered custom broadcast

    Hello, I am trying to find an example for the following situation: App A sends a broadcast with a custom action App B receives the action over a dynamically registered BroadcastReceiver (not in the Manifest) and does something as a reaction to it Can anyone figure out a situation when this...
  2. Flizzy

    Where do you set up notification channels?

    Hello, I try to get some opinions on where to set up notification channels in Android. I see 2 main approaches: Either in an helper class, or in the application class. I think the 2nd approach is better, because it doesn't execute the channel creation code unnecessarily often. Do you have any...