通过Gradle来添加依赖
在build.gradle中添加如下代码
// https://mvnrepository.com/artifact/com.aliyun/tea-openapi
implementation group: 'com.aliyun', name: 'tea-openapi', version: '0.2.2'
// https://mvnrepository.com/artifact/com.aliyun/iot20180120
implementation group: 'com.aliyun', name: 'iot20180120', version: '3.0.3'
示例代码参考官网的即可:https://help.aliyun.com/document_detail/386373.html
如果要直接运行测试的话,需要在gradle.xml里配置一下,不让gradle接管构建任务,防止当作gradle的task来执行。然后clean project,重新执行main函数,可以正常调用。
测试结果