The Paho Android Service is an MQTT client library written in Java for developing applications on Android.
MQTT 3.1 | Automatic Reconnect | |||
MQTT 3.1.1 | Offline Buffering | |||
LWT | WebSocket Support | |||
SSL / TLS | Standard TCP Support | |||
Message Persistence |
To get started, download Android Studio. You will also need to download the Android SDK. Currently you will need the SDK for 24.
The Paho project has been created to provide reliable open-source implementations of open and standard messaging protocols aimed at new, existing, and emerging applications for Machine-to-Machine (M2M) and Internet of Things (IoT). Paho reflects the inherent physical and cost constraints of device connectivity. Its objectives include effective levels of decoupling between devices and applications, designed to keep markets open and encourage the rapid growth of scalable Web and Enterprise middleware and applications.
Eclipse hosts a Nexus repository for those who want to use Maven to manage their dependencies.
Add the repository definition and the dependency definition shown below to your pom.xml.
Replace %REPOURL% with either https://repo.eclipse.org/content/repositories/paho-releases/
for the official releases, or https://repo.eclipse.org/content/repositories/paho-snapshots/
for the nightly snapshots. Replace %VERSION% with the level required .
The latest release version is 1.1.1
and the current snapshot version is 1.1.2-SNAPSHOT
.
<project ...>
<repositories>
<repository>
<id>Eclipse Paho Repo</id>
<url>%REPOURL%</url>
</repository>
</repositories>
...
<dependencies>
<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.android.service</artifactId>
<version>%VERSION%</version>
</dependency>
</dependencies>
</project>
If you are using Android Studio and / or Gradle to manage your application dependencies and build then you can use the same repository to get the Paho Android Service. Add the Eclipse Maven repository to your build.gradle
file and then add the Paho dependency to the dependencies
section.
repositories {
maven {
url "https://repo.eclipse.org/content/repositories/paho-snapshots/"
}
}
dependencies {
compile 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.1.0'
compile 'org.eclipse.paho:org.eclipse.paho.android.service:1.1.1'
}
Note: currently you have to include the org.eclipse.paho:org.eclipse.paho.client.mqttv3
dependency as well. We are attempting to get the build to produce an Android AAR
file that contains both the Android service as well as it's dependencies, however this is still experimental. If you wish to try it, remove the org.eclipse.paho:org.eclipse.paho.client.mqttv3
dependency and append @aar
to the end of the Android Service dependency. E.g. org.eclipse.paho:org.eclipse.paho.android.service:1.1.1@aar
If you find that there is functionality missing or bugs in the release version, you may want to try using the snapshot version to see if this helps before raising a feature request or an issue.
or on Windows:
gradlew.bat clean assemble exportJar`此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。