diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/RelayService.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/RelayService.java index 9614ed905..a1653f5af 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/RelayService.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/RelayService.java @@ -550,6 +550,11 @@ public class RelayService extends XWService out.writeByte( typ[0] ); out.writeShort( devid.length() ); out.writeBytes( devid ); + + out.writeShort( GitVersion.CLIENT_VERS_RELAY ); + out.writeShort( GitVersion.VERS.length() ); + out.writeBytes( GitVersion.VERS ); + postPacket( bas ); } catch ( java.io.IOException ioe ) { DbgUtils.loge( ioe );