Skip to content

Instantly share code, notes, and snippets.

@cutiko
Created May 27, 2016 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cutiko/291837be707b53de1c2be8916d807784 to your computer and use it in GitHub Desktop.
Save cutiko/291837be707b53de1c2be8916d807784 to your computer and use it in GitHub Desktop.
Simple Android Broadcast
Intent broadcast = new Intent();
broadcast.setAction("YourBroadcastKey");
broadcast.putExtra("extraKey", value);
sendBroadcast(broadcast);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment