From 6a24db9d13ab3527b38f448003232cb462fda5da Mon Sep 17 00:00:00 2001 From: Github Actions Date: Mon, 19 Feb 2024 17:23:34 +0000 Subject: [PATCH] Bump version to 0.7.1 --- 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 2971e98..e27679f 100644 --- a/MqttLibrary/build.gradle +++ b/MqttLibrary/build.gradle @@ -18,7 +18,7 @@ plugins { } group 'com.craxiom' -version "0.7.0" +version "0.7.1" android { compileSdk 34 diff --git a/README.md b/README.md index ece618f..5f5d980 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.0' + implementation 'com.craxiom:mqttlibrary:0.7.1' ``` 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.