ali_iot_plugin

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

ali iot plugin

ali_iot_plugin #
阿里飞燕平台 (生活物联网平台) Flutter plugin.

基于阿里生活物联网平台的Android和iOS架包实现的Flutter插件,方便开发自有APP

特别注意,本插件不提供飞燕项目中的插件功能,因为插件功能实际上是使用React Native 开发的UI,既然需要使用Flutter开发界面,则无需使用到该功能
Get started #
Add dependency #
dependencies:
ali_iot_plugin: ^0.0.3 #请使用pub上的最新版本
copied to clipboard

Android


AppApplication 需要继承 IotApplication()
按照生活物联网平台 集成安全图片
可能需要集成 implementation 'com.facebook.android:facebook-android-sdk:8.0.0'


iOS


按照生活物联网平台 集成安全图片
添加Pod源

# github 官方 pod 源
source 'https://github.com/CocoaPods/Specs.git'

# 阿里云 pod 源
source 'https://github.com/aliyun/aliyun-specs.git'
copied to clipboard

需要在AppDelegate的application方法中调用ALiAppDelegate.application(application,didFinishLaunchingWithOptions:launchOptions)

@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
ALiAppDelegate.application(application,didFinishLaunchingWithOptions:launchOptions)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
copied to clipboard
What can do #

登录
第三方登录
退出登录
请求API通道接口
配网设备
查看设备属性
设置设备属性

Super simple to use #
import 'package:ali_iot_plugin/index.dart';

CommonAPI.logout();
CommonAPI.authCodeLogin(authCode);

DispatchNetAPI.startDiscovery(callback);
DispatchNetAPI.stopDiscovery();
DispatchNetAPI.startAddDevice(callback);
DispatchNetAPI.stopAddDevice();
DispatchNetAPI.listenGatewayPermit(callback);
DispatchNetAPI.stopListenGatewayPermit();

DevicePanelAPI.getDevicePanelProperties()
DevicePanelAPI.setDevicePanelProperties({"items": params, "iotId": iotId})
DevicePanelAPI.getDevicePanelStatus()

static Future<dynamic> requestApi(
String path,
String apiVersion, {
String scheme,
String host,
String authType,
String mockType,
Map<String, Object> params,
Map<String, Object> addParam,
bool handleTimeOut = true,
}) async {
return await CommonAPI.requestApi(path, apiVersion,
scheme: scheme, host: host, authType: authType, mockType: mockType, params: params, addParam: addParam)
.then((value) => value, onError: (error) {
print(error);
if (handleTimeOut && error is PlatformException) {
if (error.code.contains("timeout") || error.message.contains("timeout") || error.message.contains("Unable to resolve host")) {
//请求超时
}
}
throw e;
});

}
copied to clipboard
This project is a starting point for a Flutter
plug-in package,
阿里飞燕 生活物联网平台 includes platform-specific implementation code for Android and/or iOS.
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.
Todo List #
目前iOS平台只实现了部分功能,后续待完善

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.