bumped up the version info
This commit is contained in:
parent
2b2b8e9a1c
commit
0aede2ef19
2 changed files with 3 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:tools="http://schemas.android.com/tools"
|
||||
android:versionCode="827"
|
||||
android:versionName="42.0"
|
||||
android:versionCode="844"
|
||||
android:versionName="43.0"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> <!-- allows displaying notifications on Android >= 13 -->
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ public class SQLiteOpener extends SQLiteOpenHelper {
|
|||
onCreate(db);
|
||||
for (Migration migration : Migration.LIST) {
|
||||
if (oldVersion > migration.oldVersion) {
|
||||
Logger.d(LOG_TAG, "Skipping migration: '" + migration.query + "'. Required previous version: " + migration.oldVersion + " but we are at: " + oldVersion);
|
||||
Logger.d(LOG_TAG, "Skipping migration: '" + migration.query + "'. Highest previous version: " + migration.oldVersion + " but we are at: " + oldVersion);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue