2017-04-22 15:13:48 +10:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is a part of Tusky.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky;
|
|
|
|
|
|
|
|
import android.app.Application;
|
2017-06-29 03:33:54 +10:00
|
|
|
import android.arch.persistence.room.Room;
|
2017-04-22 15:13:48 +10:00
|
|
|
import android.net.Uri;
|
|
|
|
|
2017-06-29 03:33:54 +10:00
|
|
|
import com.jakewharton.picasso.OkHttp3Downloader;
|
|
|
|
import com.keylesspalace.tusky.db.AppDatabase;
|
2017-06-19 07:20:54 +10:00
|
|
|
import com.keylesspalace.tusky.util.OkHttpUtils;
|
2017-04-22 15:13:48 +10:00
|
|
|
import com.squareup.picasso.Picasso;
|
|
|
|
|
|
|
|
public class TuskyApplication extends Application {
|
2017-06-29 03:33:54 +10:00
|
|
|
private static AppDatabase db;
|
|
|
|
|
2017-07-06 00:34:59 +10:00
|
|
|
public static AppDatabase getDB() {
|
|
|
|
return db;
|
|
|
|
}
|
2017-07-07 08:27:51 +10:00
|
|
|
|
2017-04-22 15:13:48 +10:00
|
|
|
@Override
|
|
|
|
public void onCreate() {
|
2017-05-01 16:02:32 +10:00
|
|
|
super.onCreate();
|
2017-04-22 15:13:48 +10:00
|
|
|
// Initialize Picasso configuration
|
|
|
|
Picasso.Builder builder = new Picasso.Builder(this);
|
2017-06-19 07:20:54 +10:00
|
|
|
builder.downloader(new OkHttp3Downloader(OkHttpUtils.getCompatibleClient()));
|
2017-04-22 15:13:48 +10:00
|
|
|
if (BuildConfig.DEBUG) {
|
|
|
|
builder.listener(new Picasso.Listener() {
|
|
|
|
@Override
|
|
|
|
public void onImageLoadFailed(Picasso picasso, Uri uri, Exception exception) {
|
|
|
|
exception.printStackTrace();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
Picasso.setSingletonInstance(builder.build());
|
|
|
|
} catch (IllegalStateException e) {
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
}
|
|
|
|
|
2017-07-17 08:26:56 +10:00
|
|
|
db = Room.databaseBuilder(getApplicationContext(), AppDatabase.class, "tuskyDB")
|
|
|
|
.allowMainThreadQueries()
|
2017-10-24 06:50:41 +11:00
|
|
|
.addMigrations(AppDatabase.MIGRATION_2_3)
|
2017-07-17 08:26:56 +10:00
|
|
|
.build();
|
2017-04-22 15:13:48 +10:00
|
|
|
}
|
|
|
|
}
|