Home | History | Annotate | Download | only in activitygraphs

Lines Matching refs:application

18 import android.app.Application;
28 * {@link android.app.Application} to create.
32 private final Application application;
34 public DemoApplicationModule(Application application) {
35 this.application = application;
39 * Expose the application to the graph.
41 @Provides @Singleton Application application() {
42 return application;
46 return (LocationManager) application.getSystemService(LOCATION_SERVICE);