summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2021-02-09 10:46:05 -0500
committerJoey Grover <joeygrover@gmail.com>2021-02-09 10:46:05 -0500
commitf712d9a4c4342f4a4632f2c64904708119dad7ac (patch)
tree5debce8ebc99cd9613ca9a6e4eae72996d189c2f
parent98ec7d8052b9c0c782dea8751d540801bb918c0f (diff)
downloadsdl_android-f712d9a4c4342f4a4632f2c64904708119dad7ac.tar.gz
Increase max protocol version
-rw-r--r--base/src/main/java/com/smartdevicelink/protocol/SdlProtocolBase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/src/main/java/com/smartdevicelink/protocol/SdlProtocolBase.java b/base/src/main/java/com/smartdevicelink/protocol/SdlProtocolBase.java
index 0b42fcc15..d9e437548 100644
--- a/base/src/main/java/com/smartdevicelink/protocol/SdlProtocolBase.java
+++ b/base/src/main/java/com/smartdevicelink/protocol/SdlProtocolBase.java
@@ -85,7 +85,7 @@ public class SdlProtocolBase {
public static final int V2_HEADER_SIZE = 12;
//If increasing MAX PROTOCOL VERSION major version, make sure to alter it in SdlPsm
- private static final Version MAX_PROTOCOL_VERSION = new Version(5, 3, 0);
+ private static final Version MAX_PROTOCOL_VERSION = new Version(5, 4, 0);
public static final int V1_V2_MTU_SIZE = 1500;
public static final int V3_V4_MTU_SIZE = 131072;