From d9690044034232d332761d222d72f1905d1cbec0 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Fri, 23 Aug 2024 13:09:40 +0000 Subject: [PATCH] Bump version to 0.7.3 --- MqttLibrary/build.gradle | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MqttLibrary/build.gradle b/MqttLibrary/build.gradle index 5a098ef..9390b5e 100644 --- a/MqttLibrary/build.gradle +++ b/MqttLibrary/build.gradle @@ -18,7 +18,7 @@ plugins { } group 'com.craxiom' -version "0.7.2" +version "0.7.3" android { compileSdk 34 diff --git a/README.md b/README.md index 562dd54..e5ad7fd 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The MQTT Connection Library provides a simple connection UI as well as logic to It is important to note that the pieces provided in the library cannot stand on their own. Most classes are to be extended or implemented, as an "MQTT Connection" relies on a service that drives the logic using the connection. We will go over the correct way to wire everything together below. 1. Ensure that the correct version of the library is included in the consuming project's `build.gradle` file, under its dependencies:

``` - implementation 'com.craxiom:mqttlibrary:0.7.2' + implementation 'com.craxiom:mqttlibrary:0.7.3' ``` 2. Next, for the connection UI, the `fragment_mqtt_connection` is readily available under `res/layout`; however, `AConnectionFragment` must still be extended, or `DefaultConnectionFragment`.
Note: Users can extend the latter if they do not wish to add extra UI components. Otherwise, extend `AConnectionFragment`, which contains methods marked with "additional" in their names and must be overridden in the child class.
  a. Whichever fragment ends up being extended, it will require a binder parameter. This binder should extend the provided `AConnectionFragment#ServiceBinder` in order to be recognized. Likely, this binder will be located in the `IMqttService` implementation of the consuming project.