diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-05-08 14:58:18 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-05-08 14:58:18 -0600 |
commit | fc908199f136acd2a5030e5085f024857cd2cfb5 (patch) | |
tree | 60e5569fe239bec0c287b69aefd3cff6b95449f7 /app/src/main/java/me/brysonsteck/wiimmfiwatcher/database/AppDatabase.java | |
parent | 1231683daeee4054a9da7204339b9beeb172981e (diff) | |
download | wiimmfi-watcher-fc908199f136acd2a5030e5085f024857cd2cfb5.tar wiimmfi-watcher-fc908199f136acd2a5030e5085f024857cd2cfb5.tar.gz wiimmfi-watcher-fc908199f136acd2a5030e5085f024857cd2cfb5.tar.bz2 |
changed api and package name
Diffstat (limited to 'app/src/main/java/me/brysonsteck/wiimmfiwatcher/database/AppDatabase.java')
-rw-r--r-- | app/src/main/java/me/brysonsteck/wiimmfiwatcher/database/AppDatabase.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/database/AppDatabase.java b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/database/AppDatabase.java new file mode 100644 index 0000000..01884c2 --- /dev/null +++ b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/database/AppDatabase.java @@ -0,0 +1,11 @@ +package me.brysonsteck.wiimmfiwatcher.database; + +import androidx.room.Database; +import androidx.room.RoomDatabase; + +import me.brysonsteck.wiimmfiwatcher.model.FriendCode; + +@Database(entities = {FriendCode.class}, version=1) +public abstract class AppDatabase extends RoomDatabase { + public abstract FriendCodeDao getFriendCodeDao(); +} |