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

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

package toothpick.smoothie.provider;

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

public class AssetManagerProvider implements Provider {
  Application application;

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

  @Override
  public AssetManager get() {
    return application.getAssets();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy