INNER CODE UNIT · Java

SyncthingModule

syncthing/syncthing-android · app/src/main/java/com/nutomic/syncthingandroid/SyncthingModule.java:14

public class SyncthingModule {

    private final SyncthingApp mApp;

    public SyncthingModule(SyncthingApp app) {
        mApp = app;
    }

    @Provides
    @Singleton
    public SharedPreferences getPreferences() {
        return PreferenceManager.getDefaultSharedPreferences(mApp);
    }

    @Provides
    @Singleton
    public NotificationHandler getNotificationHandler() {
        return new NotificationHandler(mApp);

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…