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

(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; }