0

我想在我的 Android 应用程序中使用阿里云消息服务。但我看到没有可用的 Android SDK。我正在尝试使用 JAVA SDK 作为替代方案,但没有运气。

这是使用服务的正确方式还是我必须使用 API 接口作为最后的手段?

4

1 回答 1

1

是的,在这种情况下,您可以使用 JAVA SDK。JAVA SDK 与 Android 兼容,请记住,您可能需要解决上述的依赖关系。

  • 下载aliyun-sdk-mns-1.1.8.jar&jaxb-api-2.2.12.jar并将其放在 app > libs 下
  • 并使用以下几行更新 gradle

packagingOptions { exclude 'META-INF/DEPENDENCIES' } useLibrary 'org.apache.http.legacy' } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:design:26.1.0' compile 'com.android.support:multidex:1.0.2' implementation files('libs/aliyun-sdk-mns-1.1.8.jar') implementation files('libs/jaxb-api-2.2.12.jar') }

以上应该可以解决所有问题。

于 2018-07-29T23:28:55.907 回答