Skip to content

Conversation

@dustdfg
Copy link
Contributor

@dustdfg dustdfg commented Jan 2, 2026

What is it?

  • Codebase improvement (dev facing)

Description of the changes in your PR

  • Use "factory" method for creating db migrations

git diff is ugly but only real change is from

    val MIGRATION_XXX = object : Migration(DB_VER_X, DB_VER_X) {
        override fun migrate(db: SupportSQLiteDatabase) {

to

    val MIGRATION_XXX = Migration(DB_VER_X, DB_VER_X) { db ->

+ subsequent remove of one indent level

APK testing

The APK can be found by going to the "Checks" tab below the title. On the left pane, click on "CI", scroll down to "artifacts" and click "app" to download the zip file which contains the debug APK of this PR. You can find more info and a video demonstration on this wiki page.

Due diligence

@github-actions github-actions bot added the size/large PRs with less than 750 changed lines label Jan 2, 2026
@dustdfg
Copy link
Contributor Author

dustdfg commented Jan 4, 2026

When you will be reviewing it select "hide whitespace" in diff settings of github

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size/large PRs with less than 750 changed lines

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant