Skip to content

Commit

Permalink
Update the hive mqtt client
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrowlands committed Feb 3, 2024
1 parent 9e3c460 commit 2483251
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MqttLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ dependencies {
implementation 'com.google.android.material:material:1.11.0'
compileOnly 'com.google.android.things:androidthings:1.0'

implementation 'com.hivemq:hivemq-mqtt-client:1.2.2'
implementation 'com.hivemq:hivemq-mqtt-client:1.3.3'

implementation "com.google.protobuf:protobuf-java-util:3.24.3"
implementation 'com.jakewharton.timber:timber:5.0.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
import com.google.protobuf.MessageOrBuilder;
import com.google.protobuf.util.JsonFormat;
import com.hivemq.client.internal.mqtt.lifecycle.mqtt3.Mqtt3ClientDisconnectedContextView;
import com.hivemq.client.internal.mqtt.message.auth.MqttAuth;
import com.hivemq.client.internal.mqtt.message.auth.MqttAuthBuilder;
import com.hivemq.client.mqtt.datatypes.MqttQos;
import com.hivemq.client.mqtt.lifecycle.MqttDisconnectSource;
import com.hivemq.client.mqtt.mqtt3.Mqtt3AsyncClient;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ private void showTopicPrefixDialog()
final FragmentActivity activity = getActivity();
if (activity == null)
{
Timber.wtf("The Activity is null so we are unable to show the sorting dialog.");
Timber.wtf("The Activity is null so we are unable to show the topic prefix dialog.");
return;
}

Expand Down

0 comments on commit 2483251

Please sign in to comment.