-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Room DB to use as merged data source #244
base: main
Are you sure you want to change the base?
Conversation
} | ||
|
||
configurations.implementation { | ||
exclude(group = "com.intellij", module = "annotations") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Room introduces duplicate annotation classes as something else, couldn't figure out what else, so just exclude in the model that introduced room :)
|
||
dependencies { | ||
implementation(projects.api.anilist) | ||
implementation(projects.api.mal) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will remove this from :app after this repository does everything it needs to
implementation(libs.hilt.android) | ||
ksp(libs.hilt.android.compiler) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these should probably become a convention plugin at this point
klass = SearchDatabase::class.java, | ||
name = "search" | ||
) | ||
.fallbackToDestructiveMigration() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I ain't dealing with migrations with this project, that's too much effort
CONTRIBUTING.md
.Summary of changes:
Tested changes:
No functional code just yet, will replace SearchViewModel when more is hooked up