All Downloads are FREE. Search and download functionalities are using the official Maven repository.

toothpick.smoothie.provider.ResourcesProvider Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package toothpick.smoothie.provider;

import android.app.Application;
import android.content.res.Resources;
import javax.inject.Inject;
import javax.inject.Provider;

public class ResourcesProvider implements Provider {
  Application application;

  @Inject
  public ResourcesProvider(Application application) {
    this.application = application;
  }

  @Override
  public Resources get() {
    return application.getResources();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy