Skip to content

Instantly share code, notes, and snippets.

View Velociraptor-n's full-sized avatar

Velociraptor-n

View GitHub Profile
@Velociraptor-n
Velociraptor-n / bcr.java
Last active December 4, 2019 09:26
Broadcast Receiver
public class MyReceiver extends BroadcastReceiver {
public void onReceive(context,intent){}
}
@Velociraptor-n
Velociraptor-n / BroadcastReceiver.java
Last active December 4, 2019 09:18
Android - Application Components
public class MyReceiver extends BroadcastReceiver {
public void onReceive(context,intent){}
}