我正在尝试在android studio中使用paho Mqtt的android客户端并使用gradle添加依赖项,我在项目build.gradle中使用以下内容:
maven { url "https://repo.eclipse.org/content/repositories/paho-snapshots/" }
并在app build.gradle:
compile('org.eclipse.paho:org.eclipse.paho.android.service:1.0.3-SNAPSHOT') {
exclude module: 'support-v4'
}
然而这让我无法解决错误。我尝试使用发布版本(1.0.2)并且它编译时没有任何错误,所以我必须对SNAPSHOT依赖项做错。我已经尝试了与google搜索一样多的脚本而没有结果。
非常感谢任何帮助。
答案 0 :(得分:1)
在gradle中使用以下代码。
repositories {
maven {
url "https://repo.eclipse.org/content/repositories/paho-snapshots/"
}
}
dependencies {
compile('org.eclipse.paho:org.eclipse.paho.android.service:1.0.3-SNAPSHOT') {
exclude module: 'support-v4'
}
}
参考 http://www.hivemq.com/blog/mqtt-client-library-enyclopedia-paho-android-service