mirror of
https://github.com/k0shk0sh/FastHub.git
synced 2025-12-08 19:05:54 +00:00
this commit also shows bell indication when opening app which was broken from sometime now as mentioned in #714. this commit also has WIP (60%) enterprise integration.
92 lines
3.3 KiB
Java
92 lines
3.3 KiB
Java
package com.fastaccess;
|
|
|
|
import android.app.Application;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.v7.preference.PreferenceManager;
|
|
|
|
import com.crashlytics.android.Crashlytics;
|
|
import com.crashlytics.android.core.CrashlyticsCore;
|
|
import com.fastaccess.data.dao.model.Models;
|
|
import com.fastaccess.helper.TypeFaceHelper;
|
|
import com.fastaccess.provider.colors.ColorsProvider;
|
|
import com.fastaccess.provider.emoji.EmojiManager;
|
|
import com.fastaccess.provider.tasks.notification.NotificationSchedulerJobTask;
|
|
import com.fastaccess.provider.uil.UILProvider;
|
|
import com.miguelbcr.io.rx_billing_service.RxBillingService;
|
|
|
|
import io.fabric.sdk.android.Fabric;
|
|
import io.requery.Persistable;
|
|
import io.requery.android.sqlite.DatabaseSource;
|
|
import io.requery.meta.EntityModel;
|
|
import io.requery.reactivex.ReactiveEntityStore;
|
|
import io.requery.reactivex.ReactiveSupport;
|
|
import io.requery.sql.Configuration;
|
|
import io.requery.sql.EntityDataStore;
|
|
import io.requery.sql.TableCreationMode;
|
|
import shortbread.Shortbread;
|
|
|
|
|
|
/**
|
|
* Created by Kosh on 03 Feb 2017, 12:07 AM
|
|
*/
|
|
|
|
public class App extends Application {
|
|
private static App instance;
|
|
private ReactiveEntityStore<Persistable> dataStore;
|
|
|
|
@Override public void onCreate() {
|
|
super.onCreate();
|
|
instance = this;
|
|
init();
|
|
}
|
|
|
|
@NonNull public static App getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
private void init() {
|
|
initFabric();
|
|
RxBillingService.register(this);
|
|
deleteDatabase("database.db");
|
|
getDataStore();//init requery before anything.
|
|
setupPreference();
|
|
UILProvider.initUIL(this);
|
|
TypeFaceHelper.generateTypeface(this);
|
|
NotificationSchedulerJobTask.scheduleJob(this);
|
|
Shortbread.create(this);
|
|
EmojiManager.load();
|
|
ColorsProvider.load();
|
|
}
|
|
|
|
private void initFabric() {
|
|
Fabric fabric = new Fabric.Builder(this)
|
|
.kits(new Crashlytics.Builder()
|
|
.core(new CrashlyticsCore.Builder().disabled(BuildConfig.DEBUG).build())
|
|
.build())
|
|
.debuggable(BuildConfig.DEBUG)
|
|
.build();
|
|
Fabric.with(fabric);
|
|
}
|
|
|
|
private void setupPreference() {
|
|
PreferenceManager.setDefaultValues(this, R.xml.fasthub_settings, false);
|
|
PreferenceManager.setDefaultValues(this, R.xml.about_settings, false);
|
|
PreferenceManager.setDefaultValues(this, R.xml.behaviour_settings, false);
|
|
PreferenceManager.setDefaultValues(this, R.xml.customization_settings, false);
|
|
PreferenceManager.setDefaultValues(this, R.xml.language_settings, false);
|
|
PreferenceManager.setDefaultValues(this, R.xml.notification_settings, false);
|
|
}
|
|
|
|
public ReactiveEntityStore<Persistable> getDataStore() {
|
|
if (dataStore == null) {
|
|
EntityModel model = Models.DEFAULT;
|
|
DatabaseSource source = new DatabaseSource(this, model, "FastHub-DB", 10);
|
|
Configuration configuration = source.getConfiguration();
|
|
if (BuildConfig.DEBUG) {
|
|
source.setTableCreationMode(TableCreationMode.CREATE_NOT_EXISTS);
|
|
}
|
|
dataStore = ReactiveSupport.toReactiveStore(new EntityDataStore<Persistable>(configuration));
|
|
}
|
|
return dataStore;
|
|
}
|
|
} |