mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
プロバイダ作成
This commit is contained in:
parent
b463b61fd4
commit
08fafcfced
|
@ -1,8 +1,13 @@
|
|||
package one.nem.lacerta.source.database;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import androidx.room.Room;
|
||||
|
||||
import dagger.Module;
|
||||
import dagger.Provides;
|
||||
import dagger.hilt.InstallIn;
|
||||
import dagger.hilt.android.qualifiers.ApplicationContext;
|
||||
import dagger.hilt.components.SingletonComponent;
|
||||
|
||||
@Module
|
||||
|
@ -10,7 +15,9 @@ import dagger.hilt.components.SingletonComponent;
|
|||
public class LacertaDatabaseModule {
|
||||
|
||||
@Provides
|
||||
public LacertaDatabase provideLacertaDatabase() {
|
||||
return null;
|
||||
public LacertaDatabase provideLacertaDatabase(@ApplicationContext Context context) {
|
||||
return Room.databaseBuilder(context,
|
||||
LacertaDatabase.class,
|
||||
"lacerta.db").build();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user