Skip to content

Commit

Permalink
Bump version to 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions committed Nov 4, 2024
1 parent a6ab7d3 commit 7e15fd7
Show file tree
Hide file tree
Showing 2 changed files with 2 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 @@ -18,7 +18,7 @@ plugins {
}

group 'com.craxiom'
version "0.7.4-SNAPSHOT"
version "0.7.4"

android {
compileSdk 35
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:<br><br>
```
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`.<br>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 <i>must</i> be overridden in the child class.<br>
&ensp; 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.
Expand Down

0 comments on commit 7e15fd7

Please sign in to comment.