/* * Copyright 2015, Tanmay Parikh * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.tanmay.blip; import android.app.Application; import com.crashlytics.android.Crashlytics; import com.squareup.okhttp.Cache; import com.squareup.okhttp.OkHttpClient; import com.tanmay.blip.database.SharedPrefs; import com.tanmay.blip.utils.SpeechSynthesizer; import io.fabric.sdk.android.Fabric; public class BlipApplication extends Application { private static BlipApplication mInstance; public OkHttpClient client = new OkHttpClient(); public static synchronized BlipApplication getInstance() { return mInstance; } @Override public void onCreate() { super.onCreate(); Fabric.with(this, new Crashlytics()); mInstance = this; int cacheSize = 10 * 1024 * 1024; Cache cache = new Cache(getCacheDir(), cacheSize); client.setCache(cache); SharedPrefs.create(this); SpeechSynthesizer.create(this); } @Override public void onLowMemory() { super.onLowMemory(); SpeechSynthesizer.getInstance().cleanup(); } }