From 7e15fd71a590cd380c640c1c35c371454487f5cc Mon Sep 17 00:00:00 2001 From: Github Actions Date: Mon, 4 Nov 2024 16:15:47 +0000 Subject: [PATCH] Bump version to 0.7.4 --- 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 56b4682..52e1dd3 100644 --- a/MqttLibrary/build.gradle +++ b/MqttLibrary/build.gradle @@ -18,7 +18,7 @@ plugins { } group 'com.craxiom' -version "0.7.4-SNAPSHOT" +version "0.7.4" android { compileSdk 35 diff --git a/README.md b/README.md index e5ad7fd..cc2a524 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.3' + implementation 'com.craxiom:mqttlibrary:0.7.4' ``` 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.