Guest User

Untitled

a guest
Feb 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package com.example.csanchez.pushexample;
  2.  
  3. import android.app.Application;
  4.  
  5. /**
  6. * Created by csanchez on 11/02/18.
  7. */
  8.  
  9. public class PushExampleApplication extends Application {
  10. private RxBus bus;
  11.  
  12. @Override
  13. public void onCreate() {
  14. super.onCreate();
  15. bus = new RxBus();
  16. }
  17.  
  18. public RxBus bus() {
  19. return bus;
  20. }
  21. }
Add Comment
Please, Sign In to add comment