2018-03-27 19:47:00 +02:00
|
|
|
/* Copyright 2018 charlag
|
|
|
|
*
|
|
|
|
* 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.di
|
|
|
|
|
|
|
|
import android.app.Application
|
|
|
|
import android.content.Context
|
|
|
|
import android.content.SharedPreferences
|
2019-10-22 21:18:20 +02:00
|
|
|
import androidx.preference.PreferenceManager
|
2020-02-25 19:49:15 +01:00
|
|
|
import androidx.room.Room
|
2018-03-27 19:47:00 +02:00
|
|
|
import com.keylesspalace.tusky.TuskyApplication
|
2018-05-27 10:22:12 +02:00
|
|
|
import com.keylesspalace.tusky.db.AppDatabase
|
2021-04-24 18:31:16 +02:00
|
|
|
import com.keylesspalace.tusky.db.Converters
|
2018-03-27 19:47:00 +02:00
|
|
|
import dagger.Module
|
|
|
|
import dagger.Provides
|
|
|
|
import javax.inject.Singleton
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by charlag on 3/21/18.
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Module
|
|
|
|
class AppModule {
|
|
|
|
|
|
|
|
@Provides
|
|
|
|
fun providesApplication(app: TuskyApplication): Application = app
|
|
|
|
|
|
|
|
@Provides
|
|
|
|
fun providesContext(app: Application): Context = app
|
|
|
|
|
|
|
|
@Provides
|
|
|
|
fun providesSharedPreferences(app: Application): SharedPreferences {
|
|
|
|
return PreferenceManager.getDefaultSharedPreferences(app)
|
|
|
|
}
|
|
|
|
|
2018-05-27 10:22:12 +02:00
|
|
|
@Provides
|
|
|
|
@Singleton
|
2021-04-24 18:31:16 +02:00
|
|
|
fun providesDatabase(appContext: Context, converters: Converters): AppDatabase {
|
2020-02-25 19:49:15 +01:00
|
|
|
return Room.databaseBuilder(appContext, AppDatabase::class.java, "tuskyDB")
|
2021-06-28 21:13:24 +02:00
|
|
|
.addTypeConverter(converters)
|
|
|
|
.allowMainThreadQueries()
|
|
|
|
.addMigrations(
|
|
|
|
AppDatabase.MIGRATION_2_3, AppDatabase.MIGRATION_3_4, AppDatabase.MIGRATION_4_5,
|
|
|
|
AppDatabase.MIGRATION_5_6, AppDatabase.MIGRATION_6_7, AppDatabase.MIGRATION_7_8,
|
|
|
|
AppDatabase.MIGRATION_8_9, AppDatabase.MIGRATION_9_10, AppDatabase.MIGRATION_10_11,
|
|
|
|
AppDatabase.MIGRATION_11_12, AppDatabase.MIGRATION_12_13, AppDatabase.MIGRATION_10_13,
|
|
|
|
AppDatabase.MIGRATION_13_14, AppDatabase.MIGRATION_14_15, AppDatabase.MIGRATION_15_16,
|
|
|
|
AppDatabase.MIGRATION_16_17, AppDatabase.MIGRATION_17_18, AppDatabase.MIGRATION_18_19,
|
|
|
|
AppDatabase.MIGRATION_19_20, AppDatabase.MIGRATION_20_21, AppDatabase.MIGRATION_21_22,
|
|
|
|
AppDatabase.MIGRATION_22_23, AppDatabase.MIGRATION_23_24, AppDatabase.MIGRATION_24_25,
|
2022-01-11 19:00:29 +01:00
|
|
|
AppDatabase.Migration25_26(appContext.getExternalFilesDir("Tusky")),
|
2022-03-01 19:43:36 +01:00
|
|
|
AppDatabase.MIGRATION_26_27, AppDatabase.MIGRATION_27_28, AppDatabase.MIGRATION_28_29,
|
|
|
|
AppDatabase.MIGRATION_29_30
|
2021-06-28 21:13:24 +02:00
|
|
|
)
|
|
|
|
.build()
|
2018-07-23 21:59:10 +02:00
|
|
|
}
|
2020-12-23 12:52:39 +01:00
|
|
|
}
|