The android.database.sqlite documentation displays the SQLite version for each API level of Android except for the latest API level 28.
I'm currently targeting API 28 in my app and am looking to use the feature to rename a table column ALTER TABLE table RENAME COLUMN
launched in SQLite version 3.25. Because there is no SQLite version mentioned in the documentation for 28 does that mean I'm currently using the last one mentioned, 3.19?
I'm also wondering how often Android updates the SQLite library used.