From 4f7ab4fd46ebfe74b6358c71ec9c230da1dffd20 Mon Sep 17 00:00:00 2001 From: Eric House Date: Thu, 17 Dec 2020 15:51:08 -0800 Subject: [PATCH] turn on batch proto for BT Will break apps more than maybe two years old. Sad. --- .../app/src/main/java/org/eehouse/android/xw4/BTUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/BTUtils.java b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/BTUtils.java index 254c998c8..630d98ea1 100644 --- a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/BTUtils.java +++ b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/BTUtils.java @@ -96,7 +96,7 @@ public class BTUtils { private static final int BT_PROTO_JSONS = 1; // using jsons instead of lots of fields private static final int BT_PROTO_BATCH = 2; - private static final int BT_PROTO = BT_PROTO_JSONS; /* BT_PROTO_BATCH */ + private static final int BT_PROTO = BT_PROTO_BATCH; private static boolean IS_BATCH_PROTO() { return BT_PROTO_BATCH == BT_PROTO; } private static AtomicBoolean sBackUser = new AtomicBoolean(false);