diff --git a/xwords4/android/app/build.gradle b/xwords4/android/app/build.gradle
index 1693601b2..ee9b3270d 100644
--- a/xwords4/android/app/build.gradle
+++ b/xwords4/android/app/build.gradle
@@ -1,6 +1,6 @@
def INITIAL_CLIENT_VERS = 9
-def VERSION_CODE_BASE = 151
-def VERSION_NAME = '4.4.155'
+def VERSION_CODE_BASE = 152
+def VERSION_NAME = '4.4.156'
def FABRIC_API_KEY = System.getenv("FABRIC_API_KEY")
def BUILD_INFO_NAME = "build-info.txt"
diff --git a/xwords4/android/app/src/main/assets/changes.html b/xwords4/android/app/src/main/assets/changes.html
index e32fe9a7b..662561108 100644
--- a/xwords4/android/app/src/main/assets/changes.html
+++ b/xwords4/android/app/src/main/assets/changes.html
@@ -13,9 +13,9 @@
- CrossWords 4.4.155 release
+ CrossWords 4.4.156 release
- This release fixes stalls that sometimes follow use of the Undo feature
+ This release fixes a couple of minor UI issues
Please take
@@ -25,16 +25,10 @@
New with this release
- - Fix stall that was sometimes triggered by an ill-timed Undo
- - Make some on-board icons smoother
- - Fix crash receiving in-game chat message that's too long
- - Make the board look a bit better on tall&narrow screens
- - Tweak the game-configure dialog
- - Make some changes you shouldn't see getting ready to
- support "Duplicate" play
- - New translations (via Weblate) for Catalan, Dutch, French,
- German, Polish and Portuguese, and especially for Japanese
- and Spanish
+ - Fix so game list entries collapse correctly again
+ - Fix so bringing app to front keeps the open game open
+ - Show name in scoreboard as "Not here yet" until invitee connects
+ - Include more Norwegian translations
(The full changelog
diff --git a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/DBUtils.java b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/DBUtils.java
index 3537c97b8..f5e7bf90c 100644
--- a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/DBUtils.java
+++ b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/DBUtils.java
@@ -1123,6 +1123,7 @@ public class DBUtils {
}
setCached( rowid, result );
}
+ Assert.assertTrueNR( null != result );
return result;
}