@rentlydev/rently-tuya 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +281 -0
- package/android/build.gradle +182 -0
- package/android/gradle.properties +7 -0
- package/android/libs/airbrake-android-1.4.0.jar +0 -0
- package/android/src/main/AndroidManifest.xml +1 -0
- package/android/src/main/AndroidManifestNew.xml +25 -0
- package/android/src/main/java/com/rentlytuya/RentlyTuyaModule.kt +503 -0
- package/android/src/main/java/com/rentlytuya/RentlyTuyaPackage.kt +18 -0
- package/android/src/main/java/com/rentlytuya/TuyaActivity.kt +45 -0
- package/android/src/main/java/com/rentlytuya/alerts/FormatSDCardAlert.kt +83 -0
- package/android/src/main/java/com/rentlytuya/alerts/PermissionAlert.kt +91 -0
- package/android/src/main/java/com/rentlytuya/alerts/RemoveDoorbellAlert.kt +83 -0
- package/android/src/main/java/com/rentlytuya/alerts/RemoveDoorbellFailureAlert.kt +71 -0
- package/android/src/main/java/com/rentlytuya/alerts/ResetWifiAlert.kt +83 -0
- package/android/src/main/java/com/rentlytuya/alerts/SuccessAlert.kt +74 -0
- package/android/src/main/java/com/rentlytuya/components/Alert.kt +47 -0
- package/android/src/main/java/com/rentlytuya/components/AnchorButton.kt +125 -0
- package/android/src/main/java/com/rentlytuya/components/Button.kt +147 -0
- package/android/src/main/java/com/rentlytuya/components/CustomDatePicker.kt +275 -0
- package/android/src/main/java/com/rentlytuya/components/Divider.kt +53 -0
- package/android/src/main/java/com/rentlytuya/components/EncryptedImageView.kt +59 -0
- package/android/src/main/java/com/rentlytuya/components/Label.kt +155 -0
- package/android/src/main/java/com/rentlytuya/components/LoadingIndicator.kt +75 -0
- package/android/src/main/java/com/rentlytuya/components/Slider.kt +66 -0
- package/android/src/main/java/com/rentlytuya/components/Switch.kt +51 -0
- package/android/src/main/java/com/rentlytuya/components/VideoView.kt +45 -0
- package/android/src/main/java/com/rentlytuya/dashboard/AdvancedSettings.kt +259 -0
- package/android/src/main/java/com/rentlytuya/dashboard/Dashboard.kt +551 -0
- package/android/src/main/java/com/rentlytuya/dashboard/DoorbellSettings.kt +874 -0
- package/android/src/main/java/com/rentlytuya/dashboard/Messages.kt +463 -0
- package/android/src/main/java/com/rentlytuya/dashboard/NavController.kt +358 -0
- package/android/src/main/java/com/rentlytuya/dashboard/OfflineScreen.kt +160 -0
- package/android/src/main/java/com/rentlytuya/dashboard/Playback.kt +685 -0
- package/android/src/main/java/com/rentlytuya/tuya/Messages.kt +234 -0
- package/android/src/main/java/com/rentlytuya/tuya/Playback.kt +385 -0
- package/android/src/main/java/com/rentlytuya/tuya/ScreenCapture.kt +244 -0
- package/android/src/main/java/com/rentlytuya/tuya/Settings.kt +809 -0
- package/android/src/main/java/com/rentlytuya/tuya/Tuya.kt +497 -0
- package/android/src/main/java/com/rentlytuya/ui/theme/LocalColor.kt +80 -0
- package/android/src/main/java/com/rentlytuya/ui/theme/LocalFont.kt +35 -0
- package/android/src/main/java/com/rentlytuya/ui/theme/Theme.kt +34 -0
- package/android/src/main/java/com/rentlytuya/ui/theme/Type.kt +34 -0
- package/android/src/main/java/com/rentlytuya/util/Airbrake.kt +40 -0
- package/android/src/main/java/com/rentlytuya/util/DpConstants.kt +53 -0
- package/android/src/main/java/com/rentlytuya/util/FrescoManager.kt +86 -0
- package/android/src/main/java/com/rentlytuya/util/HeapAnalytics.kt +16 -0
- package/android/src/main/java/com/rentlytuya/util/KeylessModule.kt +81 -0
- package/android/src/main/java/com/rentlytuya/util/PermissionHandler.kt +75 -0
- package/android/src/main/java/com/rentlytuya/util/ReactParamsCheck.kt +152 -0
- package/android/src/main/java/com/rentlytuya/util/Util.kt +128 -0
- package/android/src/main/res/drawable/ic_close.xml +12 -0
- package/android/src/main/res/drawable/ic_launcher_background.xml +170 -0
- package/android/src/main/res/drawable/ic_launcher_foreground.xml +30 -0
- package/android/src/main/res/drawable/img_place_holder.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_action_arrow_backward.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_arrow_backward_white.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_arrow_blue_right.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_calendar.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_camera.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_message.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_pause.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_play.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_play_back.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_record.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_retry.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_setting.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_sound_off.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_sound_on.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_action_arrow_backward.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_arrow_backward_white.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_arrow_blue_right.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_battery_average.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_battery_charging.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_battery_full.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_battery_good.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_battery_low.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_calendar.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_camera.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_message.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_pause.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_play.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_play_back.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_record.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_retry.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_setting.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_sound_off.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_sound_on.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_action_arrow_backward.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_arrow_backward_white.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_arrow_blue_right.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_battery_average.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_battery_charging.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_battery_full.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_battery_good.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_battery_low.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_calendar.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_camera.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_message.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_pause.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_play.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_play_back.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_record.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_retry.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_setting.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_sound_off.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_sound_on.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_action_arrow_backward.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_arrow_backward_white.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_arrow_blue_right.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_battery_average.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_battery_charging.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_battery_full.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_battery_good.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_battery_low.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_calendar.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_camera.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_message.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_pause.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_play.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_play_back.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_record.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_retry.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_setting.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_sound_off.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_sound_on.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_action_arrow_backward.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_arrow_backward_white.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_arrow_blue_right.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_calendar.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_camera.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_message.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_pause.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_play.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_play_back.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_record.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_retry.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_setting.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_sound_off.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_sound_on.png +0 -0
- package/android/src/main/res/font/quicksand_bold.ttf +0 -0
- package/android/src/main/res/font/quicksand_light.ttf +0 -0
- package/android/src/main/res/font/quicksand_medium.ttf +0 -0
- package/android/src/main/res/font/quicksand_regular.ttf +0 -0
- package/android/src/main/res/font/quicksand_semi_bold.ttf +0 -0
- package/android/src/main/res/values/strings.xml +121 -0
- package/android/thingMapping.gradle +200 -0
- package/android/thingMapping.json +2014 -0
- package/ios/components/Alert.swift +54 -0
- package/ios/components/AnchorButton.swift +100 -0
- package/ios/components/Button.swift +118 -0
- package/ios/components/CustomDatePicker.swift +275 -0
- package/ios/components/Divider.swift +28 -0
- package/ios/components/Image.swift +72 -0
- package/ios/components/Label.swift +105 -0
- package/ios/components/Switch.swift +61 -0
- package/ios/dashboard/AdvanceSettings.swift +127 -0
- package/ios/dashboard/Dashboard.swift +354 -0
- package/ios/dashboard/Messages.swift +361 -0
- package/ios/dashboard/NavigationController.swift +173 -0
- package/ios/dashboard/OfflineScreen.swift +109 -0
- package/ios/dashboard/Playback.swift +543 -0
- package/ios/dashboard/PreviewManager.swift +117 -0
- package/ios/dashboard/Settings.swift +672 -0
- package/ios/icons/Charging.png +0 -0
- package/ios/icons/Charging@2x.png +0 -0
- package/ios/icons/Charging@3x.png +0 -0
- package/ios/icons/back_arraow.png +0 -0
- package/ios/icons/back_arraow@2x.png +0 -0
- package/ios/icons/back_arraow@3x.png +0 -0
- package/ios/icons/battery_average.png +0 -0
- package/ios/icons/battery_average@2x.png +0 -0
- package/ios/icons/battery_average@3x.png +0 -0
- package/ios/icons/battery_full.png +0 -0
- package/ios/icons/battery_full@2x.png +0 -0
- package/ios/icons/battery_full@3x.png +0 -0
- package/ios/icons/battery_good.png +0 -0
- package/ios/icons/battery_good@2x.png +0 -0
- package/ios/icons/battery_good@3x.png +0 -0
- package/ios/icons/battery_low.png +0 -0
- package/ios/icons/battery_low@2x.png +0 -0
- package/ios/icons/battery_low@3x.png +0 -0
- package/ios/icons/calendar.png +0 -0
- package/ios/icons/calendar@2x.png +0 -0
- package/ios/icons/calendar@3x.png +0 -0
- package/ios/icons/cloud.png +0 -0
- package/ios/icons/cloud@2x.png +0 -0
- package/ios/icons/cloud@3x.png +0 -0
- package/ios/icons/down_update.png +0 -0
- package/ios/icons/down_update@2x.png +0 -0
- package/ios/icons/down_update@3x.png +0 -0
- package/ios/icons/exit_fullscreen.png +0 -0
- package/ios/icons/exit_fullscreen@2x.png +0 -0
- package/ios/icons/exit_fullscreen@3x.png +0 -0
- package/ios/icons/expand.png +0 -0
- package/ios/icons/fullscreen.png +0 -0
- package/ios/icons/fullscreen@2x.png +0 -0
- package/ios/icons/fullscreen@3x.png +0 -0
- package/ios/icons/image_placeholder.png +0 -0
- package/ios/icons/information.png +0 -0
- package/ios/icons/information@2x.png +0 -0
- package/ios/icons/information@3x.png +0 -0
- package/ios/icons/keyless_Setting.png +0 -0
- package/ios/icons/keyless_Setting@2x.png +0 -0
- package/ios/icons/keyless_Setting@3x.png +0 -0
- package/ios/icons/keyless_back@1x.png +0 -0
- package/ios/icons/keyless_back@2x.png +0 -0
- package/ios/icons/keyless_back@3x.png +0 -0
- package/ios/icons/keyless_filter.png +0 -0
- package/ios/icons/keyless_filter@2x.png +0 -0
- package/ios/icons/keyless_filter@3x.png +0 -0
- package/ios/icons/keyless_message.png +0 -0
- package/ios/icons/keyless_message@2x.png +0 -0
- package/ios/icons/keyless_message@3x.png +0 -0
- package/ios/icons/keyless_pause.png +0 -0
- package/ios/icons/keyless_pause@2x.png +0 -0
- package/ios/icons/keyless_pause@3x.png +0 -0
- package/ios/icons/keyless_photo.png +0 -0
- package/ios/icons/keyless_photo@2x.png +0 -0
- package/ios/icons/keyless_photo@3x.png +0 -0
- package/ios/icons/keyless_play.png +0 -0
- package/ios/icons/keyless_play@2x.png +0 -0
- package/ios/icons/keyless_play@3x.png +0 -0
- package/ios/icons/keyless_play_list.png +0 -0
- package/ios/icons/keyless_play_list@2x.png +0 -0
- package/ios/icons/keyless_play_list@3x.png +0 -0
- package/ios/icons/keyless_play_playback.png +0 -0
- package/ios/icons/keyless_play_playback@2x.png +0 -0
- package/ios/icons/keyless_play_playback@3x.png +0 -0
- package/ios/icons/keyless_record.png +0 -0
- package/ios/icons/keyless_record@2x.png +0 -0
- package/ios/icons/keyless_record@3x.png +0 -0
- package/ios/icons/keyless_record_on.png +0 -0
- package/ios/icons/keyless_record_on@2x.png +0 -0
- package/ios/icons/keyless_record_on@3x.png +0 -0
- package/ios/icons/keyless_sound_off.png +0 -0
- package/ios/icons/keyless_sound_off@2x.png +0 -0
- package/ios/icons/keyless_sound_off@3x.png +0 -0
- package/ios/icons/keyless_sound_on.png +0 -0
- package/ios/icons/keyless_sound_on@2x.png +0 -0
- package/ios/icons/keyless_sound_on@3x.png +0 -0
- package/ios/icons/keyless_speak_off.png +0 -0
- package/ios/icons/keyless_speak_off@2x.png +0 -0
- package/ios/icons/keyless_speak_on.png +0 -0
- package/ios/icons/keyless_speak_on@2x.png +0 -0
- package/ios/icons/keyless_speak_on@3x.png +0 -0
- package/ios/icons/refresh.png +0 -0
- package/ios/icons/refresh@2x.png +0 -0
- package/ios/icons/refresh@3x.png +0 -0
- package/ios/icons/ty_camera_control_hd_normal@2x.png +0 -0
- package/ios/icons/ty_camera_control_hd_normal@3x.png +0 -0
- package/ios/icons/ty_camera_control_sd_normal@2x.png +0 -0
- package/ios/icons/ty_camera_control_sd_normal@3x.png +0 -0
- package/ios/icons/upgrade_success.png +0 -0
- package/ios/icons/upgrade_success@2x.png +0 -0
- package/ios/icons/upgrade_success@3x.png +0 -0
- package/ios/listener/KeylessListener.m +8 -0
- package/ios/listener/KeylessListener.swift +56 -0
- package/ios/listener/RentlyTuya-Bridging-Header.h +5 -0
- package/ios/listener/RentlyTuya.mm +56 -0
- package/ios/listener/RentlyTuya.swift +544 -0
- package/ios/theme/LocalColor.swift +33 -0
- package/ios/theme/LocalFont.swift +32 -0
- package/ios/theme/Theme.swift +71 -0
- package/ios/tuya/CameraManager.swift +296 -0
- package/ios/tuya/SettingsManager.swift +475 -0
- package/ios/tuya/Tuya.swift +570 -0
- package/ios/tuya/TuyaMessages.swift +98 -0
- package/ios/utils/Airbrake.swift +31 -0
- package/ios/utils/AppUtility.swift +76 -0
- package/ios/utils/HeapAnalytics.swift +8 -0
- package/ios/utils/OrientationManager.swift +60 -0
- package/ios/utils/PromiseHandler.swift +36 -0
- package/lib/commonjs/index.js +90 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/module/index.js +83 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +75 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/src/index.d.ts +75 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -0
- package/package.json +188 -0
- package/rently-tuya.podspec +52 -0
- package/src/index.tsx +158 -0
@@ -0,0 +1,2014 @@
|
|
1
|
+
{
|
2
|
+
"importMap": {
|
3
|
+
"com.tuya.smart.demo_login.base.activity.SplashActivity": "com.thingclips.smart.demo_login.base.activity.SplashActivity",
|
4
|
+
"com.tuya.sdk.os.TuyaOSDevice": "com.thingclips.sdk.os.ThingOSDevice",
|
5
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.CreateTempPasswordResponse": "com.thingclips.smart.sdk.optimus.lock.bean.ble.TempPasswordResponse",
|
6
|
+
"com.tuya.smart.sdk.optimus.lock.manager.TuyaBLEExtendManager": "com.thingclips.smart.sdk.optimus.lock.manager.ThingBLEExtendManager",
|
7
|
+
"com.tuya.smart.optimus.lock.api.bean.TempPassword": "com.thingclips.smart.optimus.lock.api.bean.TempPassword",
|
8
|
+
"com.tuya.smart.optimus.lock.api.ITuyaLockManager": "com.thingclips.smart.optimus.lock.api.IThingLockManager",
|
9
|
+
"com.tuya.smart.sdk.optimus.lock.bean.AddUserBean": "com.thingclips.smart.sdk.optimus.lock.bean.AddUserBean",
|
10
|
+
"com.tuya.smart.sdk.optimus.lock.bean.StorageSign3": "com.thingclips.smart.sdk.optimus.lock.bean.StorageSign3",
|
11
|
+
"com.tuya.smart.optimus.lock.api.TempPasswordBuilder": "com.thingclips.smart.optimus.lock.api.TempPasswordBuilder",
|
12
|
+
"com.tuya.smart.sdk.optimus.lock.manager.TuyaBleLockDevice": "com.thingclips.smart.sdk.optimus.lock.manager.ThingBleLockDevice",
|
13
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.AddOpmodeResult": "com.thingclips.smart.sdk.optimus.lock.bean.ble.AddOpmodeResult",
|
14
|
+
"com.tuya.smart.optimus.lock.api.bean.UnlockModeResponse": "com.thingclips.smart.optimus.lock.api.bean.UnlockModeResponse",
|
15
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.UnlockModePreview": "com.thingclips.smart.sdk.optimus.lock.bean.ble.UnlockModePreview",
|
16
|
+
"com.tuya.smart.optimus.lock.api.callback.Callback": "com.thingclips.smart.optimus.lock.api.callback.Callback",
|
17
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.SyncData": "com.thingclips.smart.sdk.optimus.lock.bean.ble.SyncData",
|
18
|
+
"com.tuya.smart.sdk.optimus.lock.bean.WifiLockUserResultBean": "com.thingclips.smart.sdk.optimus.lock.bean.WifiLockUserResultBean",
|
19
|
+
"com.tuya.smart.optimus.lock.api.bean.UnlockRelation": "com.thingclips.smart.optimus.lock.api.bean.UnlockRelation",
|
20
|
+
"com.tuya.smart.optimus.lock.api.ITuyaBleLock": "com.thingclips.smart.optimus.lock.api.IThingBleLock",
|
21
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.TempPasswordBeanV3": "com.thingclips.smart.sdk.optimus.lock.bean.ble.TempPasswordBeanV3",
|
22
|
+
"com.tuya.smart.sdk.optimus.lock.model.BLEModel": "com.thingclips.smart.sdk.optimus.lock.model.BLEModel",
|
23
|
+
"com.tuya.smart.optimus.lock.api.BleLockConstant": "com.thingclips.smart.optimus.lock.api.BleLockConstant",
|
24
|
+
"com.tuya.smart.optimus.lock.api.callback.UnlockModeListener": "com.thingclips.smart.optimus.lock.api.callback.UnlockModeListener",
|
25
|
+
"com.tuya.smart.sdk.optimus.lock.bean.DynamicPasswordBean": "com.thingclips.smart.sdk.optimus.lock.bean.DynamicPasswordBean",
|
26
|
+
"com.tuya.smart.sdk.optimus.lock.network.WifiLockBusiness": "com.thingclips.smart.sdk.optimus.lock.network.WifiLockBusiness",
|
27
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.UnlockMode": "com.thingclips.smart.sdk.optimus.lock.bean.ble.UnlockMode",
|
28
|
+
"com.tuya.smart.optimus.lock.api.IBLEExtendManager": "com.thingclips.smart.optimus.lock.api.IBLEExtendManager",
|
29
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.UnlockModeDetail": "com.thingclips.smart.sdk.optimus.lock.bean.ble.UnlockModeDetail",
|
30
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.ScheduleBean": "com.thingclips.smart.sdk.optimus.lock.bean.ble.ScheduleBean",
|
31
|
+
"com.tuya.smart.optimus.lock.api.callback.RemoteUnlockListener": "com.thingclips.smart.optimus.lock.api.callback.RemoteUnlockListener",
|
32
|
+
"com.tuya.smart.sdk.optimus.lock.bean.UpdateUserRequestBean": "com.thingclips.smart.sdk.optimus.lock.bean.UpdateUserRequestBean",
|
33
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.DataPoint": "com.thingclips.smart.sdk.optimus.lock.bean.ble.DataPoint",
|
34
|
+
"com.tuya.smart.sdk.optimus.lock.utils.LockUtil": "com.thingclips.smart.sdk.optimus.lock.utils.LockUtil",
|
35
|
+
"com.tuya.smart.sdk.optimus.lock.network.ExtendAbilityBusiness": "com.thingclips.smart.sdk.optimus.lock.network.ExtendAbilityBusiness",
|
36
|
+
"com.tuya.smart.sdk.optimus.lock.network.BleLockBusiness": "com.thingclips.smart.sdk.optimus.lock.network.BleLockBusiness",
|
37
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.BLELockUser": "com.thingclips.smart.sdk.optimus.lock.bean.ble.BLELockUser",
|
38
|
+
"com.tuya.smart.sdk.optimus.lock.bean.TempPasswordRequestBean": "com.thingclips.smart.sdk.optimus.lock.bean.TempPasswordRequestBean",
|
39
|
+
"com.tuya.smart.optimus.lock.api.callback.LockStatusListener": "com.thingclips.smart.optimus.lock.api.callback.LockStatusListener",
|
40
|
+
"com.tuya.smart.sdk.optimus.lock.manager.TuyaDeviceWrapper": "com.thingclips.smart.sdk.optimus.lock.manager.ThingDeviceWrapper",
|
41
|
+
"com.tuya.smart.optimus.lock.api.bean.WifiLockUser": "com.thingclips.smart.optimus.lock.api.bean.WifiLockUser",
|
42
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.InnerTempPasswordBean": "com.thingclips.smart.sdk.optimus.lock.bean.ble.InnerTempPasswordBean",
|
43
|
+
"com.tuya.smart.sdk.optimus.lock.bean.TempPasswordResultBean": "com.thingclips.smart.sdk.optimus.lock.bean.TempPasswordResultBean",
|
44
|
+
"com.tuya.smart.sdk.optimus.lock.utils.StandardDpConverter": "com.thingclips.smart.sdk.optimus.lock.utils.StandardDpConverter",
|
45
|
+
"com.tuya.smart.sdk.optimus.lock.network.TuyaLockNetorkApi": "com.thingclips.smart.sdk.optimus.lock.network.ThingLockNetworkApi",
|
46
|
+
"com.tuya.smart.optimus.lock.api.callback.TemporaryPasswordListener": "com.thingclips.smart.optimus.lock.api.callback.TemporaryPasswordListener",
|
47
|
+
"com.tuya.smart.optimus.lock.api.TuyaUnlockType": "com.thingclips.smart.optimus.lock.api.ThingUnlockType",
|
48
|
+
"com.tuya.smart.sdk.optimus.lock.bean.AddUserResultBean": "com.thingclips.smart.sdk.optimus.lock.bean.AddUserResultBean",
|
49
|
+
"com.tuya.smart.sdk.optimus.lock.manager.TuyaLockManager": "com.thingclips.smart.sdk.optimus.lock.manager.ThingLockManager",
|
50
|
+
"com.tuya.smart.sdk.optimus.lock.manager.TuyaWifiLockDevice": "com.thingclips.smart.sdk.optimus.lock.manager.ThingWifiLockDevice",
|
51
|
+
"com.tuya.smart.optimus.lock.api.bean.Record": "com.thingclips.smart.optimus.lock.api.bean.Record",
|
52
|
+
"com.tuya.smart.sdk.optimus.lock.bean.ble.Record": "com.thingclips.smart.sdk.optimus.lock.bean.ble.Record",
|
53
|
+
"com.tuya.smart.optimus.lock.api.ITuyaWifiLock": "com.thingclips.smart.optimus.lock.api.IThingWifiLock",
|
54
|
+
"com.tuya.smart.optimus.lock.api.callback.ConnectListener": "com.thingclips.smart.optimus.lock.api.callback.ConnectListener",
|
55
|
+
"com.tuya.smart.activator.plug.mesosphere.TuyaDeviceActivatorManager": "com.thingclips.smart.activator.plug.mesosphere.ThingDeviceActivatorManager",
|
56
|
+
"com.tuya.smart.activator.plug.mesosphere.api.ITuyaDeviceActiveListener": "com.thingclips.smart.activator.plug.mesosphere.api.IThingDeviceActiveListener",
|
57
|
+
"com.tuya.smart.api.MicroContext": "com.thingclips.smart.api.MicroContext",
|
58
|
+
"com.tuya.smart.api.router.UrlBuilder": "com.thingclips.smart.api.router.UrlBuilder",
|
59
|
+
"com.tuya.smart.api.router.UrlRouter": "com.thingclips.smart.api.router.UrlRouter",
|
60
|
+
"com.tuya.smart.api.service.MicroServiceManager": "com.thingclips.smart.api.service.MicroServiceManager",
|
61
|
+
"com.tuya.smart.bind.TuyaSocialLoginBindManager": "com.thingclips.smart.bind.ThingSocialLoginBindManager",
|
62
|
+
"com.tuya.smart.commonbiz.bizbundle.family.api.AbsBizBundleFamilyService": "com.thingclips.smart.commonbiz.bizbundle.family.api.AbsBizBundleFamilyService",
|
63
|
+
"com.tuya.smart.social.auth.manager.api.AuthorityBean": "com.thingclips.smart.social.auth.manager.api.AuthorityBean",
|
64
|
+
"com.tuya.smart.social.auth.manager.api.ResultCallback": "com.thingclips.smart.social.auth.manager.api.ResultCallback",
|
65
|
+
"com.tuya.smart.social.auth.manager.api.SocialAuthManagerClient": "com.thingclips.smart.social.auth.manager.api.SocialAuthManagerClient",
|
66
|
+
"com.tuya.smart.camera.cloud.purchase.AbsCameraCloudPurchaseService": "com.thingclips.smart.camera.cloud.purchase.AbsCameraCloudPurchaseService",
|
67
|
+
"com.tuya.smart.camera.cloud.purchase.AbsCloudCallback": "com.thingclips.smart.camera.cloud.purchase.AbsCloudCallback",
|
68
|
+
"com.tuya.smart.control.PluginControlService": "com.thingclips.smart.control.PluginControlService",
|
69
|
+
"com.tuya.smart.control.plug.api.IPluginControlService": "com.thingclips.smart.control.plug.api.IPluginControlService",
|
70
|
+
"com.tuya.smart.wrapper.api.TuyaWrapper": "com.thingclips.smart.wrapper.api.ThingWrapper",
|
71
|
+
"com.tuya.smart.archer.api.AbsBaseArcherCell": "com.thingclips.smart.archer.api.AbsBaseArcherCell",
|
72
|
+
"com.tuya.smart.archer.api.bean.ITYBaseData": "com.thingclips.smart.archer.api.bean.IThingBaseData",
|
73
|
+
"com.tuya.smart.device_detail.PluginDeviceDetailInfoService": "com.thingclips.smart.device_detail.PluginDeviceDetailInfoService",
|
74
|
+
"com.tuya.smart.device_detail.viewmodel.DeviceDetailViewModel": "com.thingclips.smart.device_detail.viewmodel.DeviceDetailViewModel",
|
75
|
+
"com.tuya.smart.tuyasmart_device_detail.api.IPluginDeviceDetailInfoService": "com.thingclips.smart.thingsmart_device_detail.api.IPluginDeviceDetailInfoService",
|
76
|
+
"com.tuya.smart.commonbiz.api.infrared.OnInfraredSubDevDisplaySettingsListener": "com.thingclips.smart.commonbiz.api.infrared.OnInfraredSubDevDisplaySettingsListener",
|
77
|
+
"com.tuya.smart.panel.usecase.panelmore.service.PanelMoreItemClickService": "com.thingclips.smart.panel.usecase.panelmore.service.PanelMoreItemClickService",
|
78
|
+
"com.tuya.smart.panel.usecase.panelmore.service.PanelMoreMenuService": "com.thingclips.smart.panel.usecase.panelmore.service.PanelMoreMenuService",
|
79
|
+
"com.tuya.smart.tuyasmart_device_detail.api.IPluginInfraredSubDevDisplayService": "com.thingclips.smart.thingsmart_device_detail.api.IPluginInfraredSubDevDisplayService",
|
80
|
+
"com.tuya.smart.utils.ProgressUtil": "com.thingclips.smart.utils.ProgressUtil",
|
81
|
+
"com.tuya.smart.uispec.list.plug.text.TextBean": "com.thingclips.smart.uispec.list.plug.text.TextBean",
|
82
|
+
"com.tuya.smart.panel.usecase.panelmore.bean.IMenuBean": "com.thingclips.smart.panel.usecase.panelmore.bean.IMenuBean",
|
83
|
+
"com.tuya.smart.panel.usecase.panelmore.service.IMenuItemCallback": "com.thingclips.smart.panel.usecase.panelmore.service.IMenuItemCallback",
|
84
|
+
"com.tuya.smart.family.listener.HomeInviteListener": "com.thingclips.smart.family.listener.HomeInviteListener",
|
85
|
+
"com.tuya.smart.feedback.api.FeedbackService": "com.thingclips.smart.feedback.api.FeedbackService",
|
86
|
+
"com.tuya.group_ui_api.GroupState": "com.thingclips.group_ui_api.GroupState",
|
87
|
+
"com.tuya.group_ui_api.TuyaGroupManager": "com.thingclips.group_ui_api.ThingGroupManager",
|
88
|
+
"com.tuya.smart.panelcaller.api.AbsPanelCallerService": "com.thingclips.smart.panelcaller.api.AbsPanelCallerService",
|
89
|
+
"com.tuya.smart.light.scene.plug.api.AbsLightScenePlugService": "com.thingclips.smart.light.scene.plug.api.AbsLightScenePlugService",
|
90
|
+
"com.tuya.light.android.callback.ITuyaLightResultCallback": "com.thingclips.light.android.callback.IThingLightResultCallback",
|
91
|
+
"com.tuya.light.android.scene.bean.TuyaLightSceneBean": "com.thingclips.light.android.scene.bean.ThingLightSceneBean",
|
92
|
+
"com.tuya.sdk.scene.TuyaLightSceneSdk": "com.thingclips.sdk.scene.ThingLightSceneSdk",
|
93
|
+
"com.tuya.smart.light.scene.api.bean.LightSceneDetailBean": "com.thingclips.smart.light.scene.api.bean.LightSceneDetailBean",
|
94
|
+
"com.tuyasmart.stencil.bean.location.LocationBean": "com.thingclips.stencil.bean.location.LocationBean",
|
95
|
+
"com.tuyasmart.stencil.location.LocationService": "com.thingclips.stencil.location.LocationService",
|
96
|
+
"com.tuya.smart.jsbridge.base.webview.WebViewActivity": "com.thingclips.smart.jsbridge.base.webview.WebViewActivity",
|
97
|
+
"com.tuya.smart.tuyamall.api.IGetMallUrlCallback": "com.thingclips.smart.thingmall.api.IGetMallUrlCallback",
|
98
|
+
"com.tuya.smart.tuyamall.api.TuyaMallService": "com.thingclips.smart.thingmall.api.ThingMallService",
|
99
|
+
"com.tuya.smart.utils.ToastUtil": "com.thingclips.smart.utils.ToastUtil",
|
100
|
+
"com.tuya.smart.jsbridge.base.webview.WebViewFragment": "com.thingclips.smart.jsbridge.base.webview.WebViewFragment",
|
101
|
+
"com.tuya.smart.message.base.activity.message.MessageContainerActivity": "com.thingclips.smart.message.base.activity.message.MessageContainerActivity",
|
102
|
+
"com.tuyasmart.stencil.utils.ActivityUtils": "com.thingclips.stencil.utils.ActivityUtils",
|
103
|
+
"com.tuya.smart.panel.ota.api.IOtaBehaviorListener": "com.thingclips.smart.panel.ota.api.IOtaBehaviorListener",
|
104
|
+
"com.tuya.smart.panel.ota.service.AbsOtaCallerService": "com.thingclips.smart.panel.ota.service.AbsOtaCallerService",
|
105
|
+
"com.tuya.smart.clearcache.api.ClearCacheService": "com.thingclips.smart.clearcache.api.ClearCacheService",
|
106
|
+
"com.tuya.smart.scene.business.api.ITuyaSceneBusinessService": "com.thingclips.smart.scene.business.api.IThingSceneBusinessService",
|
107
|
+
"com.tuya.smart.scene.model.NormalScene": "com.thingclips.smart.scene.model.NormalScene",
|
108
|
+
"com.tuya.smart.sharemanager.api.AbsShareManager": "com.thingclips.smart.sharemanager.api.AbsShareManager",
|
109
|
+
"com.tuya.smart.sharemanager.constant.ShareType": " com.thingclips.smart.sharemanager.constant.ShareType",
|
110
|
+
"com.tuya.smart.speech.api.AbsTuyaAssisantGuideService": "com.thingclips.smart.speech.api.AbsThingAssisantGuideService",
|
111
|
+
"com.tuya.smart.api.service.RedirectService": "com.thingclips.smart.api.service.RedirectService",
|
112
|
+
"com.tuya.smart.api.service.RouteEventListener": "com.thingclips.smart.api.service.RouteEventListener",
|
113
|
+
"com.tuya.smart.api.service.ServiceEventListener": "com.thingclips.smart.api.service.ServiceEventListener",
|
114
|
+
"com.tuya.smart.optimus.sdk.TuyaOptimusSdk": "com.thingclips.smart.optimus.sdk.ThingOptimusSdk",
|
115
|
+
"com.tuya.smart.demo_login.base.utils.LoginHelper": "com.thingclips.smart.demo_login.base.utils.LoginHelper",
|
116
|
+
"com.tuya.smart.api.logger.LogUtil": "com.thingclips.smart.api.logger.LogUtil",
|
117
|
+
"com.tuya.smart.api.module.ModuleApp": "com.thingclips.smart.api.module.ModuleApp",
|
118
|
+
"com.tuya.smart.api.service.SchemeService": "com.thingclips.smart.api.service.SchemeService",
|
119
|
+
"com.tuya.sdk.ble.core.ability.options.BleConnectParams": "com.thingclips.sdk.ble.core.ability.options.BleConnectParams",
|
120
|
+
"com.tuya.smart.android.base.utils.ProcessUtils": "com.thingclips.smart.android.base.utils.ProcessUtils",
|
121
|
+
"com.tuya.smart.sdk.enums.DeviceAccessType": "com.thingclips.smart.sdk.enums.DeviceAccessType",
|
122
|
+
"com.tuya.smart.sdk.api.ITuyaMatterFabricManager": "com.thingclips.smart.sdk.api.IThingMatterFabricManager",
|
123
|
+
"com.tuya.smart.home.sdk.api.IHomePatchCacheManager": "com.thingclips.smart.home.sdk.api.IHomePatchCacheManager",
|
124
|
+
"com.tuya.smart.camera.middleware.p2p.TuyaSmartCameraP2PFactory": "com.thingclips.smart.camera.middleware.p2p.ThingSmartCameraP2PFactory",
|
125
|
+
"com.tuya.smart.android.common.utils.TuyaUtil": "com.thingclips.smart.android.common.utils.ThingUtil",
|
126
|
+
"com.tuya.smart.android.blemesh.api.IMeshManager": "com.thingclips.smart.android.blemesh.api.IMeshManager",
|
127
|
+
"com.tuya.smart.android.ble.api.BluetoothStateChangedListener": "com.thingclips.smart.android.ble.api.BluetoothStateChangedListener",
|
128
|
+
"com.tuya.smart.interior.device.confusebean.MQ_68_GatewaySubDeviceTransfer": "com.thingclips.smart.interior.device.confusebean.MQ_68_GatewaySubDeviceTransfer",
|
129
|
+
"com.tuya.smart.interior.hardware.IHardwareLogEventListener": "com.thingclips.smart.interior.hardware.IHardwareLogEventListener",
|
130
|
+
"com.tuya.smart.sdk.api.ITuyaRouterDiscoverListener": "com.thingclips.smart.sdk.api.IThingRouterDiscoverListener",
|
131
|
+
"com.tuya.smart.interior.enums.FrameTypeEnum": "com.thingclips.smart.interior.enums.FrameTypeEnum",
|
132
|
+
"com.tuya.sdk.matter.api.IBluetoothScanCallback": "com.thingclips.sdk.matter.api.IBluetoothScanCallback",
|
133
|
+
"com.tuya.smart.android.sweeper.bean.SweeperByteData": "com.thingclips.smart.android.sweeper.bean.SweeperByteData",
|
134
|
+
"com.tuya.smart.home.sdk.bean.EnvBean": "com.thingclips.smart.home.sdk.bean.EnvBean",
|
135
|
+
"com.tuya.smart.ipc.camera.autotesting.fragment.AutoTestingProgramsListFragment": "com.thingclips.smart.ipc.camera.autotesting.fragment.AutoTestingProgramsListFragment",
|
136
|
+
"com.tuya.smart.sdk.TuyaSdk": "com.thingclips.smart.sdk.ThingSdk",
|
137
|
+
"com.tuya.smart.ipc.camera.cloudtool.activity.CloudToolSelectDeviceActivityKt": "com.thingclips.smart.ipc.camera.cloudtool.activity.CloudToolSelectDeviceActivityKt",
|
138
|
+
"com.tuya.smart.android.device.bean.StructSchemaBean": "com.thingclips.smart.android.device.bean.StructSchemaBean",
|
139
|
+
"com.tuya.smart.interior.event.SubDeviceRelationUpdateEvent": "com.thingclips.smart.interior.event.SubDeviceRelationUpdateEvent",
|
140
|
+
"com.tuya.smart.sdk.api.wifibackup.api.bean.BaseInfo": "com.thingclips.smart.sdk.api.wifibackup.api.bean.BaseInfo",
|
141
|
+
"com.tuya.sdk.core.a": "com.thingclips.sdk.core.a",
|
142
|
+
"com.tuya.smart.android.blemesh.event.MeshBatchReportEventModel": "com.thingclips.smart.android.blemesh.event.MeshBatchReportEventModel",
|
143
|
+
"com.tuya.smart.android.user.bean.BindResultBean": "com.thingclips.smart.android.user.bean.BindResultBean",
|
144
|
+
"com.tuya.sdk.core.b": "com.thingclips.sdk.core.b",
|
145
|
+
"com.tuya.smart.scene.api.service.IExtService": "com.thingclips.smart.scene.api.service.IExtService",
|
146
|
+
"com.tuya.imagepipeline.okhttp3.DecryptImageRequest": "com.thingclips.imagepipeline.okhttp3.DecryptImageRequest",
|
147
|
+
"com.tuya.smart.camera.utils.chaos.SHA256Utils": "com.thingclips.smart.camera.utils.chaos.SHA256Utils",
|
148
|
+
"com.tuya.smart.ipc.camera.autotesting.model.AutoTestingCaseListModel": "com.thingclips.smart.ipc.camera.autotesting.model.AutoTestingCaseListModel",
|
149
|
+
"com.tuya.smart.interior.device.ITuyaHardwareOnlineStatusListener": "com.thingclips.smart.interior.device.IThingHardwareOnlineStatusListener",
|
150
|
+
"com.tuya.smart.sdk.bean.LocationInfo": "com.thingclips.smart.sdk.bean.LocationInfo",
|
151
|
+
"com.tuya.smart.android.blemesh.api.ITuyaBlueMeshBusiness": "com.thingclips.smart.android.blemesh.api.IThingBlueMeshBusiness",
|
152
|
+
"com.tuya.smart.interior.device.confusebean.MQ_52_DataPushBean": "com.thingclips.smart.interior.device.confusebean.MQ_52_DataPushBean",
|
153
|
+
"com.tuya.smart.android.camera.sdk.bean.CollectionPointBean": "com.thingclips.smart.android.camera.sdk.bean.CollectionPointBean",
|
154
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.ResultDesDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.ResultDesDelegate",
|
155
|
+
"com.tuya.smart.android.camera.sdk.callback.TuyaSmartDoorBellObserver": "com.thingclips.smart.android.camera.sdk.callback.ThingSmartDoorBellObserver",
|
156
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.ToastUtil": "com.thingclips.smart.ipc.camera.autotesting.utils.ToastUtil",
|
157
|
+
"com.tuya.smart.android.common.utils.MainThreadPoster": "com.thingclips.smart.android.common.utils.MainThreadPoster",
|
158
|
+
"com.tuya.smart.android.sweeper.bean.SweeperPathBean": "com.thingclips.smart.android.sweeper.bean.SweeperPathBean",
|
159
|
+
"com.tuya.smart.sdk.api.IDevUpdateListener": "com.thingclips.smart.sdk.api.IDevUpdateListener",
|
160
|
+
"com.tuya.smart.camera.utils.chaos.IntToButeArray": "com.thingclips.smart.camera.utils.chaos.IntToButeArray",
|
161
|
+
"com.tuya.smart.home.sdk.api.ITuyaGroupModel": "com.thingclips.smart.home.sdk.api.IThingGroupModel",
|
162
|
+
"com.tuya.smart.android.config.bean.MqttConnectConfig": "com.thingclips.smart.android.config.bean.MqttConnectConfig",
|
163
|
+
"com.tuya.sdk.ble.core.ability.response.BleGeneralBaseResponse": "com.thingclips.sdk.ble.core.ability.response.BleGeneralBaseResponse",
|
164
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCTool": "com.thingclips.smart.android.camera.sdk.api.IThingIPCTool",
|
165
|
+
"com.tuya.smart.home.sdk.api.IGwSearchListener": "com.thingclips.smart.home.sdk.api.IGwSearchListener",
|
166
|
+
"com.tuya.smart.android.mvp.presenter.BasePresenter": "com.thingclips.smart.android.mvp.presenter.BasePresenter",
|
167
|
+
"com.tuya.sdk.ble.core.ability.model.BleGattServiceData": "com.thingclips.sdk.ble.core.ability.model.BleGattServiceData",
|
168
|
+
"com.tuya.smart.android.device.bean.DeviceMultiControlRelationBean": "com.thingclips.smart.android.device.bean.DeviceMultiControlRelationBean",
|
169
|
+
"com.tuya.smart.interior.event.DpUpdateEvent": "com.thingclips.smart.interior.event.DpUpdateEvent",
|
170
|
+
"com.tuya.smart.android.user.bean.UserToB": "com.thingclips.smart.android.user.bean.UserToB",
|
171
|
+
"com.tuya.smart.sdk.api.IOtaProgressCallback": "com.thingclips.smart.sdk.api.IOtaProgressCallback",
|
172
|
+
"com.tuya.smart.device.bean.DeviceUpgradeBean": "com.thingclips.smart.device.bean.DeviceUpgradeBean",
|
173
|
+
"com.tuya.smart.interior.event.GroupUpdateEventModel": "com.thingclips.smart.interior.event.GroupUpdateEventModel",
|
174
|
+
"com.tuya.smart.android.sweeper.bean.SweeperDataBean": "com.thingclips.smart.android.sweeper.bean.SweeperDataBean",
|
175
|
+
"com.tuya.smart.interior.api.ITuyaUserListenerPlugin": "com.thingclips.smart.interior.api.IThingUserListenerPlugin",
|
176
|
+
"com.tuya.smart.sdk.api.ITuyaWifiGroup": "com.thingclips.smart.sdk.api.IThingWifiGroup",
|
177
|
+
"com.tuya.smart.sdk.bean.OpenFabricInfo": "com.thingclips.smart.sdk.bean.OpenFabricInfo",
|
178
|
+
"com.tuya.smart.interior.device.bean.DpResp": "com.thingclips.smart.interior.device.bean.DpResp",
|
179
|
+
"com.tuya.smart.sdk.bean.TuyaMatterDeviceBean": "com.thingclips.smart.sdk.bean.ThingMatterDeviceBean",
|
180
|
+
"com.tuya.smart.home.sdk.bean.scene.LocalSceneBean": "com.thingclips.smart.home.sdk.bean.scene.LocalSceneBean",
|
181
|
+
"com.tuya.smart.ipc.camera.autotesting.activity.AutoCameraTestingExecuteActivity": "com.thingclips.smart.ipc.camera.autotesting.activity.AutoCameraTestingExecuteActivity",
|
182
|
+
"com.tuya.smart.android.config.api.IBaseConfig": "com.thingclips.smart.android.config.api.IBaseConfig",
|
183
|
+
"com.tuya.smart.android.ble.api.BleLogCallback": "com.thingclips.smart.android.ble.api.BleLogCallback",
|
184
|
+
"com.tuya.smart.android.sweeper.ITuyaSweeperDataListener": "com.thingclips.smart.android.sweeper.IThingSweeperDataListener",
|
185
|
+
"com.tuya.smart.android.common.utils.AESUtil": "com.thingclips.smart.android.common.utils.AESUtil",
|
186
|
+
"com.tuya.smart.camera.ipccamerasdk.business.CameraBusiness": "com.thingclips.smart.camera.ipccamerasdk.business.CameraBusiness",
|
187
|
+
"com.tuya.smart.android.device.bean.AlarmTimerBean": "com.thingclips.smart.android.device.bean.AlarmTimerBean",
|
188
|
+
"com.tuya.smart.interior.bean.DomainExBean": "com.thingclips.smart.interior.bean.DomainExBean",
|
189
|
+
"com.tuya.smart.interior.mqtt.IMqttServerStatusCallback": "com.thingclips.smart.interior.mqtt.IMqttServerStatusCallback",
|
190
|
+
"com.tuya.sdk.ble.core.protocol.entity.ConnectRsp": "com.thingclips.sdk.ble.core.protocol.entity.ConnectRsp",
|
191
|
+
"com.tuya.smart.android.user.api.IHighwayTokenCallback": "com.thingclips.smart.android.user.api.IHighwayTokenCallback",
|
192
|
+
"com.tuya.smart.android.ble.api.OnBleIoTChannelListener": "com.thingclips.smart.android.ble.api.OnBleIoTChannelListener",
|
193
|
+
"com.tuya.smart.camera.middleware.p2p.TuyaSmartNvrP2P": "com.thingclips.smart.camera.middleware.p2p.ThingSmartNvrP2P",
|
194
|
+
"com.tuya.smart.sdk.api.bluemesh.IAddSubDevCallback": "com.thingclips.smart.sdk.api.bluemesh.IAddSubDevCallback",
|
195
|
+
"com.tuya.smart.sdk.bean.ProductStandardConfig": "com.thingclips.smart.sdk.bean.ProductStandardConfig",
|
196
|
+
"com.tuya.smart.sdk.api.IDiscoveryServiceListener": "com.thingclips.smart.sdk.api.IDiscoveryServiceListener",
|
197
|
+
"com.tuya.smart.android.device.bean.BoolSchemaBean": "com.thingclips.smart.android.device.bean.BoolSchemaBean",
|
198
|
+
"com.tuya.smart.camera.ipccamerasdk.cloud.TYCloudCamera": "com.thingclips.smart.camera.ipccamerasdk.cloud.ThingCloudCamera",
|
199
|
+
"com.tuya.smart.camera.ipccamerasdk.cloud.ITYCloudCamera": "com.thingclips.smart.camera.ipccamerasdk.cloud.IThingCloudCamera",
|
200
|
+
"com.tuya.smart.camera.ipccamerasdk.IPCTuyaP2PCamera": "com.thingclips.smart.camera.ipccamerasdk.IPCThingP2PCamera",
|
201
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.TitleDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.TitleDelegate",
|
202
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.rule.ValueRule": "com.thingclips.smart.home.sdk.bean.scene.condition.rule.ValueRule",
|
203
|
+
"com.tuya.smart.android.ble.builder.BleConnectBuilder": "com.thingclips.smart.android.ble.builder.BleConnectBuilder",
|
204
|
+
"com.tuya.smart.ipc.camera.cloudtool.activity.CloudToolImageContentActivity": "com.thingclips.smart.ipc.camera.cloudtool.activity.CloudToolImageContentActivity",
|
205
|
+
"com.tuya.smart.camera.nvrsdk.INvrP2P": "com.thingclips.smart.camera.nvrsdk.INvrP2P",
|
206
|
+
"com.tuya.smart.android.base.event.TuyaEventBus": "com.thingclips.smart.android.base.event.ThingEventBus",
|
207
|
+
"com.tuya.sdk.ble.core.ability.response.BleConfigMtuBaseResponse": "com.thingclips.sdk.ble.core.ability.response.BleConfigMtuBaseResponse",
|
208
|
+
"com.tuya.smart.interior.device.ITuyaDeviceOnlineStatusListener": "com.thingclips.smart.interior.device.IThingDeviceOnlineStatusListener",
|
209
|
+
"com.tuya.smart.camera.middleware.cloud.bean.CloudDayBean": "com.thingclips.smart.camera.middleware.cloud.bean.CloudDayBean",
|
210
|
+
"com.tuya.smart.sdk.enums.DeviceActiveEnum": "com.thingclips.smart.sdk.enums.DeviceActiveEnum",
|
211
|
+
"com.tuya.smart.android.common.utils.ByteUtils": "com.thingclips.smart.android.common.utils.ByteUtils",
|
212
|
+
"com.tuya.smart.interior.hardware.ITuyaAPConfig": "com.thingclips.smart.interior.hardware.IThingAPConfig",
|
213
|
+
"com.tuya.smart.android.blemesh.api.ITuyaBlueMeshOta": "com.thingclips.smart.android.blemesh.api.IThingBlueMeshOta",
|
214
|
+
"com.tuya.smart.sdk.bean.ConnectTypeBean": "com.thingclips.smart.sdk.bean.ConnectTypeBean",
|
215
|
+
"com.tuya.smart.sdk.bean.TuyaMatterDataPoint": "com.thingclips.smart.sdk.bean.ThingMatterDataPoint",
|
216
|
+
"com.tuya.smart.android.device.bean.DataPointBean": "com.thingclips.smart.android.device.bean.DataPointBean",
|
217
|
+
"com.tuya.smart.interior.api.ITuyaUserPlugin": "com.thingclips.smart.interior.api.IThingUserPlugin",
|
218
|
+
"com.tuya.smart.sdk.api.WifiSignalListener": "com.thingclips.smart.sdk.api.WifiSignalListener",
|
219
|
+
"com.tuya.sdk.ble.core.protocol.api.ProtocolActivatorDelegate": "com.thingclips.sdk.ble.core.protocol.api.ProtocolActivatorDelegate",
|
220
|
+
"com.tuya.smart.ipc.messagecenter.bean.CameraMessageBean": "com.thingclips.smart.ipc.messagecenter.bean.CameraMessageBean",
|
221
|
+
"com.tuya.sdk.eventbus.util.HasExecutionScope": "com.thingclips.sdk.eventbus.util.HasExecutionScope",
|
222
|
+
"com.tuya.smart.home.sdk.api.config.IBaseConnectListener": "com.thingclips.smart.home.sdk.api.config.IBaseConnectListener",
|
223
|
+
"com.tuya.smart.interior.hardware.ITuyaHardwareResultCallback": "com.thingclips.smart.interior.hardware.IThingHardwareResultCallback",
|
224
|
+
"com.tuya.smart.camera.utils.chaos.DensityUtil": "com.thingclips.smart.camera.utils.chaos.DensityUtil",
|
225
|
+
"com.tuya.sdk.ble.core.protocol.entity.DeviceActivatorStatus": "com.thingclips.sdk.ble.core.protocol.entity.DeviceActivatorStatus",
|
226
|
+
"com.tuya.smart.android.ble.api.ChannelDataConstants": "com.thingclips.smart.android.ble.api.ChannelDataConstants",
|
227
|
+
"com.tuya.smart.android.user.api.IWhiteListCallback": "com.thingclips.smart.android.user.api.IWhiteListCallback",
|
228
|
+
"com.tuya.smart.sdk.api.cache.ISmartStatusManager": "com.thingclips.smart.sdk.api.cache.ISmartStatusManager",
|
229
|
+
"com.tuya.smart.home.sdk.constant.TimerUpdateEnum": "com.thingclips.smart.home.sdk.constant.TimerUpdateEnum",
|
230
|
+
"com.tuya.smart.home.sdk.callback.ITuyaMemberResultCallback": "com.thingclips.smart.home.sdk.callback.IThingMemberResultCallback",
|
231
|
+
"com.tuya.sdk.ble.core.ability.ITuyaBleAbility": "com.thingclips.sdk.ble.core.ability.IThingBleAbility",
|
232
|
+
"com.tuya.smart.bluet.api.BeaconFilterSetting": "com.thingclips.smart.bluet.api.BeaconFilterSetting",
|
233
|
+
"com.tuya.smart.camera.ipccamerasdk.bean.AudioParams": "com.thingclips.smart.camera.ipccamerasdk.bean.AudioParams",
|
234
|
+
"com.tuya.smart.scene.lib.util.DeviceUtil": "com.thingclips.smart.scene.lib.util.DeviceUtil",
|
235
|
+
"com.tuya.smart.android.base.utils.PreferencesUtil": "com.thingclips.smart.android.base.utils.PreferencesUtil",
|
236
|
+
"com.tuya.smart.android.common.utils.StringUtils": "com.thingclips.smart.android.common.utils.StringUtils",
|
237
|
+
"com.tuya.smart.home.sdk.bean.PersonBean": "com.thingclips.smart.home.sdk.bean.PersonBean",
|
238
|
+
"com.tuya.smart.interior.device.confusebean.MQ_308_DataBean": "com.thingclips.smart.interior.device.confusebean.MQ_308_DataBean",
|
239
|
+
"com.tuya.smart.interior.device.ITuyaDeviceDataCacheManager": "com.thingclips.smart.interior.device.IThingDeviceDataCacheManager",
|
240
|
+
"com.tuya.sdk.ble.core.ability.response.BleBaseResponse": "com.thingclips.sdk.ble.core.ability.response.BleBaseResponse",
|
241
|
+
"com.tuya.smart.interior.device.bean.DevResp": "com.thingclips.smart.interior.device.bean.DevResp",
|
242
|
+
"com.tuya.smart.camera.middleware.nvr.NvrDeviceIndex": "com.thingclips.smart.camera.middleware.nvr.NvrDeviceIndex",
|
243
|
+
"com.tuya.sdk.ble.core.bean.BLEDpBean": "com.thingclips.sdk.ble.core.bean.BLEDpBean",
|
244
|
+
"com.tuya.smart.android.blemesh.event.BlueMeshQueryGroupDevEvent": "com.thingclips.smart.android.blemesh.event.BlueMeshQueryGroupDevEvent",
|
245
|
+
"com.tuya.smart.android.device.bean.BitmapSchemaBean": "com.thingclips.smart.android.device.bean.BitmapSchemaBean",
|
246
|
+
"com.tuya.smart.android.camera.sdk.callback.OnDeviceChangedListener": "com.thingclips.smart.android.camera.sdk.callback.OnDeviceChangedListener",
|
247
|
+
"com.tuya.sdk.ble.core.protocol.entity.OtaExtChannel": "com.thingclips.sdk.ble.core.protocol.entity.OtaExtChannel",
|
248
|
+
"com.tuya.smart.camera.middleware.cloud.bean.CloudUrlBean": "com.thingclips.smart.camera.middleware.cloud.bean.CloudUrlBean",
|
249
|
+
"com.tuya.smart.android.user.api.ICommonConfigCallback": "com.thingclips.smart.android.user.api.ICommonConfigCallback",
|
250
|
+
"com.tuya.smart.sdk.enums.TYDevicePublishModeEnum": "com.thingclips.smart.sdk.enums.ThingDevicePublishModeEnum",
|
251
|
+
"com.tuya.smart.android.user.api.IUidLoginCallback": "com.thingclips.smart.android.user.api.IUidLoginCallback",
|
252
|
+
"com.tuya.sdk.eventbus.EventBus": "com.thingclips.sdk.eventbus.EventBus",
|
253
|
+
"com.tuya.sdk.ble.core.protocol.entity.ConnectParam": "com.thingclips.sdk.ble.core.protocol.entity.ConnectParam",
|
254
|
+
"com.tuya.smart.ipc.camera.autotesting.activity.AutoCameraTestProgramEditActivity": "com.thingclips.smart.ipc.camera.autotesting.activity.AutoCameraTestProgramEditActivity",
|
255
|
+
"com.tuya.smart.home.sdk.builder.TuyaQRCodeActivatorBuilder": "com.thingclips.smart.home.sdk.builder.ThingQRCodeActivatorBuilder",
|
256
|
+
"com.tuya.sdk.ble.core.ability.response.BleNotifyAbilityResponse": "com.thingclips.sdk.ble.core.ability.response.BleNotifyAbilityResponse",
|
257
|
+
"com.tuya.smart.sdk.api.bluemesh.IRequestUpgradeInfoCallback": "com.thingclips.smart.sdk.api.bluemesh.IRequestUpgradeInfoCallback",
|
258
|
+
"com.tuya.smart.android.user.api.ICheckAccountCallback": "com.thingclips.smart.android.user.api.ICheckAccountCallback",
|
259
|
+
"com.tuya.smart.interior.hardware.IGwBleConnectStatusListener": "com.thingclips.smart.interior.hardware.IGwBleConnectStatusListener",
|
260
|
+
"com.tuya.smart.sdk.api.ITuyaDataCallback": "com.thingclips.smart.sdk.api.IThingDataCallback",
|
261
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.DeviceItemDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.DeviceItemDelegate",
|
262
|
+
"com.tuya.smart.sdk.api.bluemesh.ITuyaBlueMeshActivator": "com.thingclips.smart.sdk.api.bluemesh.IThingBlueMeshActivator",
|
263
|
+
"com.tuya.smart.ipc.debugtool.api.IPCP2PDebugToolService": "com.thingclips.smart.ipc.debugtool.api.IPCP2PDebugToolService",
|
264
|
+
"com.tuya.smart.sdk.bean.feedback.FeedbackBean": "com.thingclips.smart.sdk.bean.feedback.FeedbackBean",
|
265
|
+
"com.tuya.smart.camera.ipccamerasdk.monitor.AbsMonitorViewProxy": "com.thingclips.smart.camera.ipccamerasdk.monitor.AbsMonitorViewProxy",
|
266
|
+
"com.tuya.smart.android.blemesh.event.MeshUpdateEvent": "com.thingclips.smart.android.blemesh.event.MeshUpdateEvent",
|
267
|
+
"com.tuya.sdk.device.presenter.IHardwareUpdateAction": "com.thingclips.sdk.device.presenter.IHardwareUpdateAction",
|
268
|
+
"com.tuya.smart.ipc.camera.cloudtool.activity.CloudToolBaseActivity": "com.thingclips.smart.ipc.camera.cloudtool.activity.CloudToolBaseActivity",
|
269
|
+
"com.tuya.smart.sdk.api.ITuyaFeedbackMag": "com.thingclips.smart.sdk.api.IThingFeedbackMag",
|
270
|
+
"com.tuya.smart.interior.device.confusebean.MQ_63_ScanBean": "com.thingclips.smart.interior.device.confusebean.MQ_63_ScanBean",
|
271
|
+
"com.tuya.smart.sdk.api.IBleActivator": "com.thingclips.smart.sdk.api.IBleActivator",
|
272
|
+
"com.tuya.smart.sdk.bean.BlueMeshGroupBean": "com.thingclips.smart.sdk.bean.BlueMeshGroupBean",
|
273
|
+
"com.tuya.smart.sdk.api.bluemesh.IAddRoomCallback": "com.thingclips.smart.sdk.api.bluemesh.IAddRoomCallback",
|
274
|
+
"com.tuya.smart.interior.event.DeviceDpsUpdateEventModel": "com.thingclips.smart.interior.event.DeviceDpsUpdateEventModel",
|
275
|
+
"com.tuya.smart.ipc.camera.autotesting.model.IAutoTestingListModel": "com.thingclips.smart.ipc.camera.autotesting.model.IAutoTestingListModel",
|
276
|
+
"com.tuya.smart.sdk.bean.TimerTaskStatus": "com.thingclips.smart.sdk.bean.TimerTaskStatus",
|
277
|
+
"com.tuya.smart.sdk.enums.DiscoveryCapability": "com.thingclips.smart.sdk.enums.DiscoveryCapability",
|
278
|
+
"com.tuya.sdk.matter.api.IDiscoverBonjourService": "com.thingclips.sdk.matter.api.IDiscoverBonjourService",
|
279
|
+
"com.tuya.smart.sdk.api.ITuyaGateway": "com.thingclips.smart.sdk.api.IThingGateway",
|
280
|
+
"com.tuya.smart.android.ble.api.DeviceDataBean": "com.thingclips.smart.android.ble.api.DeviceDataBean",
|
281
|
+
"com.tuya.smart.android.blemesh.bean.BlueMeshLinkageBean": "com.thingclips.smart.android.blemesh.bean.BlueMeshLinkageBean",
|
282
|
+
"com.tuya.smart.android.device.enums.TuyaSmartThingMessageType": "com.thingclips.smart.android.device.enums.ThingSmartThingMessageType",
|
283
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.Task": "com.thingclips.smart.ipc.camera.autotesting.bean.Task",
|
284
|
+
"com.tuya.smart.android.blemesh.api.ITuyaBlueMeshDevice": "com.thingclips.smart.android.blemesh.api.IThingBlueMeshDevice",
|
285
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.IPCCameraService": "com.thingclips.smart.ipc.camera.autotesting.excute.IPCCameraService",
|
286
|
+
"com.tuya.smart.android.base.event.BaseEventSender": "com.thingclips.smart.android.base.event.BaseEventSender",
|
287
|
+
"com.tuya.smart.android.blemesh.event.MeshOnlineStatusUpdateEventModel": "com.thingclips.smart.android.blemesh.event.MeshOnlineStatusUpdateEventModel",
|
288
|
+
"com.tuya.sdk.device.bean.OtaUpdateEventBean": "com.thingclips.sdk.device.bean.OtaUpdateEventBean",
|
289
|
+
"com.tuya.smart.android.ble.api.TyBleScanResponse": "com.thingclips.smart.android.ble.api.ThingBleScanResponse",
|
290
|
+
"com.tuya.smart.sdk.bean.TimerControlBean": "com.thingclips.smart.sdk.bean.TimerControlBean",
|
291
|
+
"com.tuya.smart.android.ble.api.audio.LEAudioRequest": "com.thingclips.smart.android.ble.api.audio.LEAudioRequest",
|
292
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.rule.Rule": "com.thingclips.smart.home.sdk.bean.scene.condition.rule.Rule",
|
293
|
+
"com.tuya.smart.ipc.camera.cloudtool.activity.CloudToolSelectDeviceActivity": "com.thingclips.smart.ipc.camera.cloudtool.activity.CloudToolSelectDeviceActivity",
|
294
|
+
"com.tuya.smart.home.sdk.builder.TuyaAutoConfigActivatorBuilder": "com.thingclips.smart.home.sdk.builder.ThingAutoConfigActivatorBuilder",
|
295
|
+
"com.tuya.smart.android.push.bean.enums.PushAlarmType": "com.thingclips.smart.android.push.bean.enums.PushAlarmType",
|
296
|
+
"com.tuya.smart.android.user.bean.Region": "com.thingclips.smart.android.user.bean.Region",
|
297
|
+
"com.tuya.smart.android.device.utils.TuyaActivityLifecycleCallback": "com.thingclips.smart.android.device.utils.ThingActivityLifecycleCallback",
|
298
|
+
"com.tuya.smart.interior.device.confusebean.MQ_501_TTSMsgBean": "com.thingclips.smart.interior.device.confusebean.MQ_501_TTSMsgBean",
|
299
|
+
"com.tuya.smart.sdk.bean.privacy.AuthorizationType": "com.thingclips.smart.sdk.bean.privacy.AuthorizationType",
|
300
|
+
"com.tuya.smart.home.sdk.bean.scene.SceneCondition": "com.thingclips.smart.home.sdk.bean.scene.SceneCondition",
|
301
|
+
"com.tuya.sdk.eventbus.SubscriberMethod": "com.thingclips.sdk.eventbus.SubscriberMethod",
|
302
|
+
"com.tuya.smart.android.blemesh.event.MqttConnectStatusEvent": "com.thingclips.smart.android.blemesh.event.MqttConnectStatusEvent",
|
303
|
+
"com.tuya.smart.android.common.utils.PhoneUtil": "com.thingclips.smart.android.common.utils.PhoneUtil",
|
304
|
+
"com.tuya.smart.android.blemesh.bean.MeshLogUploadDataBean": "com.thingclips.smart.android.blemesh.bean.MeshLogUploadDataBean",
|
305
|
+
"com.tuya.smart.sdk.bean.TuyaGeoFence": "com.thingclips.smart.sdk.bean.ThingGeoFence",
|
306
|
+
"com.tuya.smart.android.ble.api.ExtModuleStatusListener": "com.thingclips.smart.android.ble.api.ExtModuleStatusListener",
|
307
|
+
"com.tuya.smart.sdk.api.IRequestCallback": "com.thingclips.smart.sdk.api.IRequestCallback",
|
308
|
+
"com.tuya.smart.sdk.api.ITuyaDevDirectActivatorListener": "com.thingclips.smart.sdk.api.IThingDevDirectActivatorListener",
|
309
|
+
"com.tuya.smart.android.ble.api.IGetLocationWeather": "com.thingclips.smart.android.ble.api.IGetLocationWeather",
|
310
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeRoomInfoChangeExListener": "com.thingclips.smart.home.sdk.api.IThingHomeRoomInfoChangeExListener",
|
311
|
+
"com.tuya.smart.android.ble.api.ScanDeviceBean": "com.thingclips.smart.android.ble.api.ScanDeviceBean",
|
312
|
+
"com.tuya.smart.cache.bean.CacheType": "com.thingclips.smart.cache.bean.CacheType",
|
313
|
+
"com.tuya.smart.home.sdk.builder.TuyaCameraActivatorBuilder": "com.thingclips.smart.home.sdk.builder.ThingCameraActivatorBuilder",
|
314
|
+
"com.tuya.smart.sdk.enums.OptionalQRCodeInfoTypeEnum": "com.thingclips.smart.sdk.enums.OptionalQRCodeInfoTypeEnum",
|
315
|
+
"com.tuya.smart.ipc.camera.autotesting.cache.ManbaCacheManager": "com.thingclips.smart.ipc.camera.autotesting.cache.ManbaCacheManager",
|
316
|
+
"com.tuya.smart.home.sdk.bean.scene.FunctionListBean": "com.thingclips.smart.home.sdk.bean.scene.FunctionListBean",
|
317
|
+
"com.tuya.smart.sdk.api.IMatterDevicePairCallback": "com.thingclips.smart.sdk.api.IMatterDevicePairCallback",
|
318
|
+
"com.tuya.smart.ipc.camera.autotesting.cache.FileManager": "com.thingclips.smart.ipc.camera.autotesting.cache.FileManager",
|
319
|
+
"com.tuya.smart.android.sweeper.ITuyaSweeperNameUpdateCallback": "com.thingclips.smart.android.sweeper.IThingSweeperNameUpdateCallback",
|
320
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCDevice": "com.thingclips.smart.android.camera.sdk.api.IThingIPCDevice",
|
321
|
+
"com.tuya.smart.sdk.api.IMultiModeActivatorListener": "com.thingclips.smart.sdk.api.IMultiModeActivatorListener",
|
322
|
+
"com.tuya.smart.sdk.bean.TuyaSmartThingModel": "com.thingclips.smart.sdk.bean.ThingSmartThingModel",
|
323
|
+
"com.tuya.smart.sdk.api.bluemesh.IBlueMeshActivatorListener": "com.thingclips.smart.sdk.api.bluemesh.IBlueMeshActivatorListener",
|
324
|
+
"com.tuya.smart.camera.middleware.p2p.TuyaSmartCameraP2PSync": "com.thingclips.smart.camera.middleware.p2p.ThingSmartCameraP2PSync",
|
325
|
+
"com.tuya.smart.interior.config.bean.ConfigDevResp": "com.thingclips.smart.interior.config.bean.ConfigDevResp",
|
326
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.RemoveCaseDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.RemoveCaseDelegate",
|
327
|
+
"com.tuya.smart.android.device.api.ITuyaDeviceMultiControl": "com.thingclips.smart.android.device.api.IThingDeviceMultiControl",
|
328
|
+
"com.tuya.smart.android.ble.api.ThirdBleScanDeviceBuilder": "com.thingclips.smart.android.ble.api.ThirdBleScanDeviceBuilder",
|
329
|
+
"com.tuya.smart.android.device.bean.SchemaBean": "com.thingclips.smart.android.device.bean.SchemaBean",
|
330
|
+
"com.tuya.smart.android.camera.timeline.TuyaTimelineView": "com.thingclips.smart.android.camera.timeline.ThingTimelineView",
|
331
|
+
"com.tuya.smart.camera.annotation.MuteStatus": "com.thingclips.smart.camera.annotation.MuteStatus",
|
332
|
+
"com.tuya.sdk.user.model.IUser": "com.thingclips.sdk.user.model.IUser",
|
333
|
+
"com.tuya.smart.sdk.bean.ResumeActivatorBean": "com.thingclips.smart.sdk.bean.ResumeActivatorBean",
|
334
|
+
"com.tuya.smart.interior.device.confusebean.MQ_35_MeshUpdateBean": "com.thingclips.smart.interior.device.confusebean.MQ_35_MeshUpdateBean",
|
335
|
+
"com.tuya.smart.interior.event.GroupDpsUpdateEvent": "com.thingclips.smart.interior.event.GroupDpsUpdateEvent",
|
336
|
+
"com.tuya.sdk.ble.core.ability.response.BleReadAbilityBaseResponse": "com.thingclips.sdk.ble.core.ability.response.BleReadAbilityBaseResponse",
|
337
|
+
"com.tuya.smart.sdk.api.IGetDevsFromGroupByPidCallback": "com.thingclips.smart.sdk.api.IGetDevsFromGroupByPidCallback",
|
338
|
+
"com.tuya.smart.home.sdk.api.ITuyaDeviceActivator": "com.thingclips.smart.home.sdk.api.IThingDeviceActivator",
|
339
|
+
"com.tuya.smart.sdk.api.ITuyaDevActivatorListener": "com.thingclips.smart.sdk.api.IThingDevActivatorListener",
|
340
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeSpeech": "com.thingclips.smart.home.sdk.api.IThingHomeSpeech",
|
341
|
+
"com.tuya.smart.android.common.utils.LogBean": "com.thingclips.smart.android.common.utils.LogBean",
|
342
|
+
"com.tuya.smart.sdk.api.IDevListener": "com.thingclips.smart.sdk.api.IDevListener",
|
343
|
+
"com.tuya.sdk.ble.core.protocol.api.OnMultiModeDevStatusListener": "com.thingclips.sdk.ble.core.protocol.api.OnMultiModeDevStatusListener",
|
344
|
+
"com.tuya.smart.camera.annotation.AudioEffect": "com.thingclips.smart.camera.annotation.AudioEffect",
|
345
|
+
"com.tuya.smart.android.mvp.view.IView": "com.thingclips.smart.android.mvp.view.IView",
|
346
|
+
"com.tuya.smart.camera.middleware.cloud.CameraCloudSDK": "com.thingclips.smart.camera.middleware.cloud.CameraCloudSDK",
|
347
|
+
"com.tuya.smart.android.blemesh.event.MeshDpUpdateEvent": "com.thingclips.smart.android.blemesh.event.MeshDpUpdateEvent",
|
348
|
+
"com.tuya.smart.interior.bean.UserRespBean": "com.thingclips.smart.interior.bean.UserRespBean",
|
349
|
+
"com.tuya.smart.interior.device.confusebean.MQ_39_40_HomeChanged": "com.thingclips.smart.interior.device.confusebean.MQ_39_40_HomeChanged",
|
350
|
+
"com.tuya.smart.sdk.api.IGetDeviceTimerStatusCallback": "com.thingclips.smart.sdk.api.IGetDeviceTimerStatusCallback",
|
351
|
+
"com.tuya.smart.android.mqtt.ITuyaMqttInterceptListener": "com.thingclips.smart.android.mqtt.IThingMqttInterceptListener",
|
352
|
+
"com.tuya.smart.android.mvp.presenter.IPresenter": "com.thingclips.smart.android.mvp.presenter.IPresenter",
|
353
|
+
"com.tuya.smart.android.camera.api.ITuyaHomeCamera": "com.thingclips.smart.android.camera.api.IThingHomeCamera",
|
354
|
+
"com.tuya.smart.interior.event.GroupUpdateEvent": "com.thingclips.smart.interior.event.GroupUpdateEvent",
|
355
|
+
"com.tuya.smart.home.sdk.bean.scene.ConditionAllBean": "com.thingclips.smart.home.sdk.bean.scene.ConditionAllBean",
|
356
|
+
"com.tuya.smart.sdk.enums.ActivatorMeshStepCode": "com.thingclips.smart.sdk.enums.ActivatorMeshStepCode",
|
357
|
+
"com.tuya.smart.home.sdk.callback.ITuyaSingleTransfer": "com.thingclips.smart.home.sdk.callback.IThingSingleTransfer",
|
358
|
+
"com.tuya.smart.home.sdk.bean.DeviceType": "com.thingclips.smart.home.sdk.bean.DeviceType",
|
359
|
+
"com.tuya.smart.android.device.enums.DataPointTypeEnum": "com.thingclips.smart.android.device.enums.DataPointTypeEnum",
|
360
|
+
"com.tuya.smart.android.device.bean.DeviceInfoBean": "com.thingclips.smart.android.device.bean.DeviceInfoBean",
|
361
|
+
"com.tuya.smart.home.sdk.api.ITuyaLightningActivator": "com.thingclips.smart.home.sdk.api.IThingLightningActivator",
|
362
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.bean.TimePieceBean": "com.thingclips.smart.ipc.camera.autotesting.excute.bean.TimePieceBean",
|
363
|
+
"com.tuya.smart.sdk.api.bluemesh.IRequestSigMeshListCallback": "com.thingclips.smart.sdk.api.bluemesh.IRequestSigMeshListCallback",
|
364
|
+
"com.tuya.smart.android.config.TuyaBaseConfigManager": "com.thingclips.smart.android.config.ThingBaseConfigManager",
|
365
|
+
"com.tuya.sdk.ble.core.protocol.api.ConnectActionResponse": "com.thingclips.sdk.ble.core.protocol.api.ConnectActionResponse",
|
366
|
+
"com.tuya.smart.android.device.bean.MultiControlLinkBean": "com.thingclips.smart.android.device.bean.MultiControlLinkBean",
|
367
|
+
"com.tuya.smart.android.device.bean.MultiControlDataPointsBean": "com.thingclips.smart.android.device.bean.MultiControlDataPointsBean",
|
368
|
+
"com.tuya.smart.sdk.bean.feedback.FeedbackMsgBean": "com.thingclips.smart.sdk.bean.feedback.FeedbackMsgBean",
|
369
|
+
"com.tuya.smart.android.common.utils.RSAUtil": "com.thingclips.smart.android.common.utils.RSAUtil",
|
370
|
+
"com.tuya.smart.interior.api.ITuyaDevicePlugin": "com.thingclips.smart.interior.api.IThingDevicePlugin",
|
371
|
+
"com.tuya.smart.interior.device.confusebean.MQ_9_16_DeviceUpgradeBean": "com.thingclips.smart.interior.device.confusebean.MQ_9_16_DeviceUpgradeBean",
|
372
|
+
"com.tuya.smart.sdk.api.IResultStatusCallback": "com.thingclips.smart.sdk.api.IResultStatusCallback",
|
373
|
+
"com.tuya.smart.android.camera.sdk.api.ICameraSp": "com.thingclips.smart.android.camera.sdk.api.ICameraSp",
|
374
|
+
"com.tuya.smart.android.camera.sdk.api.ICameraStatusUpdateCallback": "com.thingclips.smart.android.camera.sdk.api.ICameraStatusUpdateCallback",
|
375
|
+
"com.tuya.smart.ipc.camera.autotesting.base.BasePresenter": "com.thingclips.smart.ipc.camera.autotesting.base.BasePresenter",
|
376
|
+
"com.tuya.smart.home.sdk.bean.scene.PreConditionExpr": "com.thingclips.smart.home.sdk.bean.scene.PreConditionExpr",
|
377
|
+
"com.tuya.smart.interior.api.ITuyaGroupPlugin": "com.thingclips.smart.interior.api.IThingGroupPlugin",
|
378
|
+
"com.tuya.smart.sdk.enums.MatterDeviceTypeEnum": "com.thingclips.smart.sdk.enums.MatterDeviceTypeEnum",
|
379
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeChangeListener": "com.thingclips.smart.home.sdk.api.IThingHomeChangeListener",
|
380
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.AddCaseDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.AddCaseDelegate",
|
381
|
+
"com.tuya.smart.sdk.api.IDeviceListener": "com.thingclips.smart.sdk.api.IDeviceListener",
|
382
|
+
"com.tuya.sdk.ble.core.bean.BleOtaType": "com.thingclips.sdk.ble.core.bean.BleOtaType",
|
383
|
+
"com.tuya.smart.camera.ipccamerasdk.utils.P2PConstant": "com.thingclips.smart.camera.ipccamerasdk.utils.P2PConstant",
|
384
|
+
"com.tuya.smart.sdk.api.IMeshRegister": "com.thingclips.smart.sdk.api.IMeshRegister",
|
385
|
+
"com.tuya.smart.home.sdk.anntation.PanelType": "com.thingclips.smart.home.sdk.anntation.PanelType",
|
386
|
+
"com.tuya.smart.interior.api.ITuyaTimerPlugin": "com.thingclips.smart.interior.api.IThingTimerPlugin",
|
387
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.ExecuteStep": "com.thingclips.smart.ipc.camera.autotesting.excute.ExecuteStep",
|
388
|
+
"com.tuya.smart.sdk.bean.UiInfo": "com.thingclips.smart.sdk.bean.UiInfo",
|
389
|
+
"com.tuya.sdk.device.bean.OtaProgressEventBean": "com.thingclips.sdk.device.bean.OtaProgressEventBean",
|
390
|
+
"com.tuya.smart.interior.config.ICheckDevActiveStatusByTokenListener": "com.thingclips.smart.interior.config.ICheckDevActiveStatusByTokenListener",
|
391
|
+
"com.tuya.smart.sdk.bean.MatterDiscoveryInfo": "com.thingclips.smart.sdk.bean.MatterDiscoveryInfo",
|
392
|
+
"com.tuya.smart.cache.bean.CacheObj": "com.thingclips.smart.cache.bean.CacheObj",
|
393
|
+
"com.tuya.smart.sdk.bean.BlueMeshBean": "com.thingclips.smart.sdk.bean.BlueMeshBean",
|
394
|
+
"com.tuya.sdk.device.bean.RomUpdateProgressEventBean": "com.thingclips.sdk.device.bean.RomUpdateProgressEventBean",
|
395
|
+
"com.tuya.smart.interior.device.ITuyaDeviceOperate": "com.thingclips.smart.interior.device.IThingDeviceOperate",
|
396
|
+
"com.tuya.smart.sdk.api.ITuyaSmartQRCodeActivatorListener": "com.thingclips.smart.sdk.api.IThingSmartQRCodeActivatorListener",
|
397
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.FamilyUtils": "com.thingclips.smart.ipc.camera.autotesting.utils.FamilyUtils",
|
398
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.ApiProgramDetailBean": "com.thingclips.smart.ipc.camera.autotesting.bean.ApiProgramDetailBean",
|
399
|
+
"com.tuya.smart.home.sdk.bean.scene.dev.TaskListBean": "com.thingclips.smart.home.sdk.bean.scene.dev.TaskListBean",
|
400
|
+
"com.tuya.smart.camera.utils.chaos.JsonUtil": "com.thingclips.smart.camera.utils.chaos.JsonUtil",
|
401
|
+
"com.tuya.smart.sdk.constant.ServiceNotification": "com.thingclips.smart.sdk.constant.ServiceNotification",
|
402
|
+
"com.tuya.smart.home.sdk.callback.ITuyaRoomResultCallback": "com.thingclips.smart.home.sdk.callback.IThingRoomResultCallback",
|
403
|
+
"com.tuya.smart.android.camera.sdk.callback.IQueryDpsCallback": "com.thingclips.smart.android.camera.sdk.callback.IQueryDpsCallback",
|
404
|
+
"com.tuya.smart.android.device.bean.HardwareUpgradeBean": "com.thingclips.smart.android.device.bean.HardwareUpgradeBean",
|
405
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.TestInfoDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.TestInfoDelegate",
|
406
|
+
"com.tuya.smart.sdk.api.ITuyaGetBeanCallback": "com.thingclips.smart.sdk.api.IThingGetBeanCallback",
|
407
|
+
"com.tuya.smart.android.mvp.model.IModel": "com.thingclips.smart.android.mvp.model.IModel",
|
408
|
+
"com.tuya.smart.scene.api.service.ILogService": "com.thingclips.smart.scene.api.service.ILogService",
|
409
|
+
"com.tuya.smart.android.common.utils.ValidatorUtil": "com.thingclips.smart.android.common.utils.ValidatorUtil",
|
410
|
+
"com.tuya.smart.sdk.bean.SigMeshBean": "com.thingclips.smart.sdk.bean.SigMeshBean",
|
411
|
+
"com.tuya.smart.android.device.bean.MultiControlBean": "com.thingclips.smart.android.device.bean.MultiControlBean",
|
412
|
+
"com.tuya.smart.interior.device.bean.BlueMeshBatchReportBean": "com.thingclips.smart.interior.device.bean.BlueMeshBatchReportBean",
|
413
|
+
"com.tuya.smart.camera.annotation.SDCardState": "com.thingclips.smart.camera.annotation.SDCardState",
|
414
|
+
"com.tuya.smart.home.sdk.callback.ITuyaGetHomeListCallback": "com.thingclips.smart.home.sdk.callback.IThingGetHomeListCallback",
|
415
|
+
"com.tuya.smart.scene.api.service.IConditionService": "com.thingclips.smart.scene.api.service.IConditionService",
|
416
|
+
"com.tuya.smart.interior.device.confusebean.MQ_Link_DeviceMessageBean": "com.thingclips.smart.interior.device.confusebean.MQ_Link_DeviceMessageBean",
|
417
|
+
"com.tuya.smart.android.base.mmkv.util.GlobalMMKVManager": "com.thingclips.smart.android.base.mmkv.util.GlobalMMKVManager",
|
418
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.ProgressUtils": "com.thingclips.smart.ipc.camera.autotesting.utils.ProgressUtils",
|
419
|
+
"com.tuya.smart.sdk.api.OnTuyaGeoFencesListener": "com.thingclips.smart.sdk.api.OnThingGeoFencesListener",
|
420
|
+
"com.tuya.sdk.ble.core.BluetoothBondCode": "com.thingclips.sdk.ble.core.BluetoothBondCode",
|
421
|
+
"com.tuya.smart.sdk.bean.push.MQCompensationBean": "com.thingclips.smart.sdk.bean.push.MQCompensationBean",
|
422
|
+
"com.tuya.smart.android.camera.timeline.OnBarScaledListener": "com.thingclips.smart.android.camera.timeline.OnBarScaledListener",
|
423
|
+
"com.tuya.smart.home.sdk.builder.TuyaBroadbandActivatorBuilder": "com.thingclips.smart.home.sdk.builder.ThingBroadbandActivatorBuilder",
|
424
|
+
"com.tuya.smart.ipc.camera.cloudtool.activity.CloudToolHomeActivity": "com.thingclips.smart.ipc.camera.cloudtool.activity.CloudToolHomeActivity",
|
425
|
+
"com.tuya.smart.android.blemesh.event.BlueMeshGroupUpdateEvent": "com.thingclips.smart.android.blemesh.event.BlueMeshGroupUpdateEvent",
|
426
|
+
"com.tuya.smart.home.sdk.api.ITuyaHome": "com.thingclips.smart.home.sdk.api.IThingHome",
|
427
|
+
"com.tuya.smart.interior.hardware.IParsePkgFrameListener": "com.thingclips.smart.interior.hardware.IParsePkgFrameListener",
|
428
|
+
"com.tuya.smart.android.ble.api.OnBleConnectListener": "com.thingclips.smart.android.ble.api.OnBleConnectListener",
|
429
|
+
"com.tuya.smart.android.blemesh.event.BlueMeshGroupUpdateEventModel": "com.thingclips.smart.android.blemesh.event.BlueMeshGroupUpdateEventModel",
|
430
|
+
"com.tuya.smart.home.sdk.bean.scene.SceneAppearance": "com.thingclips.smart.home.sdk.bean.scene.SceneAppearance",
|
431
|
+
"com.tuya.smart.interior.callback.ICancelAccountListener": "com.thingclips.smart.interior.callback.ICancelAccountListener",
|
432
|
+
"com.tuya.smart.home.sdk.bean.ShareReceivedUserDetailBean": "com.thingclips.smart.home.sdk.bean.ShareReceivedUserDetailBean",
|
433
|
+
"com.tuya.smart.android.blemesh.api.MeshLinkageOperator": "com.thingclips.smart.android.blemesh.api.MeshLinkageOperator",
|
434
|
+
"com.tuya.smart.home.sdk.api.ITuyaZigBeeConfigLocalSceneCallback": "com.thingclips.smart.home.sdk.api.IThingZigBeeConfigLocalSceneCallback",
|
435
|
+
"com.tuya.smart.sdk.api.ITuyaActivatorCreateToken": "com.thingclips.smart.sdk.api.IThingActivatorCreateToken",
|
436
|
+
"com.tuya.smart.sdk.api.ITuyaGroup": "com.thingclips.smart.sdk.api.IThingGroup",
|
437
|
+
"com.tuya.smart.sdk.bean.StandSchema": "com.thingclips.smart.sdk.bean.StandSchema",
|
438
|
+
"com.tuya.smart.interior.hardware.ILocalDpMessageRespListener": "com.thingclips.smart.interior.hardware.ILocalDpMessageRespListener",
|
439
|
+
"com.tuya.smart.android.camera.sdk.bean.CameraStatus": "com.thingclips.smart.android.camera.sdk.bean.CameraStatus",
|
440
|
+
"com.tuya.smart.home.sdk.constant.TimerTypeEnum": "com.thingclips.smart.home.sdk.constant.TimerTypeEnum",
|
441
|
+
"com.tuya.smart.camera.ipccamerasdk.virtual.TuyaVirtualCamera": "com.thingclips.smart.camera.ipccamerasdk.virtual.ThingVirtualCamera",
|
442
|
+
"com.tuya.smart.camera.middleware.widget.TuyaCameraView": "com.thingclips.smart.camera.middleware.widget.ThingCameraView",
|
443
|
+
"com.tuya.smart.interior.device.confusebean.Protocol_4_Bean": "com.thingclips.smart.interior.device.confusebean.Protocol_4_Bean",
|
444
|
+
"com.tuya.smart.sdk.builder.MatterCommissionBuilder": "com.thingclips.smart.sdk.builder.MatterCommissionBuilder",
|
445
|
+
"com.tuya.sdk.ble.core.protocol.api.ActionProgressResponse": "com.thingclips.sdk.ble.core.protocol.api.ActionProgressResponse",
|
446
|
+
"com.tuya.smart.sdk.api.IGetGroupAlarmCallback": "com.thingclips.smart.sdk.api.IGetGroupAlarmCallback",
|
447
|
+
"com.tuya.smart.home.sdk.callback.ITuyaGetMemberListCallback": "com.thingclips.smart.home.sdk.callback.IThingGetMemberListCallback",
|
448
|
+
"com.tuya.smart.android.mvp.bean.IBean": "com.thingclips.smart.android.mvp.bean.IBean",
|
449
|
+
"com.tuya.smart.camera.utils.chaos.thread.IPCThreadFactory": "com.thingclips.smart.camera.utils.chaos.thread.IPCThreadFactory",
|
450
|
+
"com.tuya.sdk.ble.core.protocol.api.CommonConstant": "com.thingclips.sdk.ble.core.protocol.api.CommonConstant",
|
451
|
+
"com.tuya.smart.sdk.api.bluemesh.IMeshDevListener": "com.thingclips.smart.sdk.api.bluemesh.IMeshDevListener",
|
452
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.TestCase": "com.thingclips.smart.ipc.camera.autotesting.bean.TestCase",
|
453
|
+
"com.tuya.smart.android.blemesh.api.ITuyaBlueMeshConfig": "com.thingclips.smart.android.blemesh.api.IThingBlueMeshConfig",
|
454
|
+
"com.tuya.smart.home.sdk.bean.ProductVerBean": "com.thingclips.smart.home.sdk.bean.ProductVerBean",
|
455
|
+
"com.tuya.sdk.device.event.RomUpdateEvent": "com.thingclips.sdk.device.event.RomUpdateEvent",
|
456
|
+
"com.tuya.smart.interior.device.confusebean.MQ_803_TuyaPushBean": "com.thingclips.smart.interior.device.confusebean.MQ_803_ThingPushBean",
|
457
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.ICaseParser": "com.thingclips.smart.ipc.camera.autotesting.excute.ICaseParser",
|
458
|
+
"com.tuya.smart.android.ble.bean.QueryWifiSetting": "com.thingclips.smart.android.ble.bean.QueryWifiSetting",
|
459
|
+
"com.tuya.smart.android.sweeper.bean.CloudConfigBean": "com.thingclips.smart.android.sweeper.bean.CloudConfigBean",
|
460
|
+
"com.tuya.smart.interior.event.SubDevCorrectEventModel": "com.thingclips.smart.interior.event.SubDevCorrectEventModel",
|
461
|
+
"com.tuya.smart.android.blemesh.event.MeshPassThroughEventModel": "com.thingclips.smart.android.blemesh.event.MeshPassThroughEventModel",
|
462
|
+
"com.tuya.smart.ipc.camera.autotesting.adapter.AutoTestingLogsAdapter": "com.thingclips.smart.ipc.camera.autotesting.adapter.AutoTestingLogsAdapter",
|
463
|
+
"com.tuya.smart.camera.chaos.middleware.Constants": "com.thingclips.smart.camera.chaos.middleware.Constants",
|
464
|
+
"com.tuya.sdk.ble.core.protocol.entity.BleOtaParam": "com.thingclips.sdk.ble.core.protocol.entity.BleOtaParam",
|
465
|
+
"com.tuya.smart.sdk.api.ITuyaDeviceOperator": "com.thingclips.smart.sdk.api.IThingDeviceOperator",
|
466
|
+
"com.tuya.smart.sdk.bean.MultiModeActivatorBean": "com.thingclips.smart.sdk.bean.MultiModeActivatorBean",
|
467
|
+
"com.tuya.smart.interior.event.DeviceOnlineStatusEventModel": "com.thingclips.smart.interior.event.DeviceOnlineStatusEventModel",
|
468
|
+
"com.tuya.smart.ipc.camera.autotesting.data.Repo": "com.thingclips.smart.ipc.camera.autotesting.data.Repo",
|
469
|
+
"com.tuya.smart.sdk.bean.message.MessageAttach": "com.thingclips.smart.sdk.bean.message.MessageAttach",
|
470
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomePatch": "com.thingclips.smart.home.sdk.api.IThingHomePatch",
|
471
|
+
"com.tuya.smart.camera.middleware.service.TuyaIPCPlugin": "com.thingclips.smart.camera.middleware.service.ThingIPCPlugin",
|
472
|
+
"com.tuya.smart.sdk.api.IGroupListener": "com.thingclips.smart.sdk.api.IGroupListener",
|
473
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.ApiCaseDetailBean": "com.thingclips.smart.ipc.camera.autotesting.bean.ApiCaseDetailBean",
|
474
|
+
"com.tuya.smart.sdk.api.ITuyaOtaPlugin": "com.thingclips.smart.sdk.api.IThingOtaPlugin",
|
475
|
+
"com.tuya.smart.interior.api.ITuyaScenePlugin": "com.thingclips.smart.interior.api.IThingScenePlugin",
|
476
|
+
"com.tuya.smart.sdk.api.ITuyaCommonTimer": "com.thingclips.smart.sdk.api.IThingCommonTimer",
|
477
|
+
"com.tuya.smart.android.user.api.IValidateCallback": "com.thingclips.smart.android.user.api.IValidateCallback",
|
478
|
+
"com.tuya.sdk.eventbus.EventBusException": "com.thingclips.sdk.eventbus.EventBusException",
|
479
|
+
"com.tuya.smart.android.ble.api.IGetHomeWeather": "com.thingclips.smart.android.ble.api.IGetHomeWeather",
|
480
|
+
"com.tuya.smart.android.blemesh.api.ITuyaBlueMeshInit": "com.thingclips.smart.android.blemesh.api.IThingBlueMeshInit",
|
481
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.bean.RecordInfoBean": "com.thingclips.smart.ipc.camera.autotesting.excute.bean.RecordInfoBean",
|
482
|
+
"com.tuya.smart.android.common.utils.FileUtil": "com.thingclips.smart.android.common.utils.FileUtil",
|
483
|
+
"com.tuya.smart.android.mvp.bean.IRequest": "com.thingclips.smart.android.mvp.bean.IRequest",
|
484
|
+
"com.tuya.smart.sdk.api.wifibackup.api.ITuyaWifiBackup": "com.thingclips.smart.sdk.api.wifibackup.api.IThingWifiBackup",
|
485
|
+
"com.tuya.smart.sdk.enums.TempUnitEnum": "com.thingclips.smart.sdk.enums.TempUnitEnum",
|
486
|
+
"com.tuya.smart.sdk.TuyaBaseSdk": "com.thingclips.smart.sdk.ThingBaseSdk",
|
487
|
+
"com.tuya.smart.android.ble.api.OnMultiModeActivatorStatusListener": "com.thingclips.smart.android.ble.api.OnMultiModeActivatorStatusListener",
|
488
|
+
"com.tuya.smart.android.sweeper.bean.SweeperHistory": "com.thingclips.smart.android.sweeper.bean.SweeperHistory",
|
489
|
+
"com.tuya.smart.sdk.bean.TimerTask": "com.thingclips.smart.sdk.bean.TimerTask",
|
490
|
+
"com.tuya.smart.ipc.camera.autotesting.view.IAutoTestingCaseCreateTaskLinkView": "com.thingclips.smart.ipc.camera.autotesting.view.IAutoTestingCaseCreateTaskLinkView",
|
491
|
+
"com.tuya.smart.sdk.bean.push.PushType": "com.thingclips.smart.sdk.bean.push.PushType",
|
492
|
+
"com.tuya.sdk.eventbus.AsyncPoster": "com.thingclips.sdk.eventbus.AsyncPoster",
|
493
|
+
"com.tuya.sdk.ble.core.bean.SecurityCertBean": "com.thingclips.sdk.ble.core.bean.SecurityCertBean",
|
494
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.ProgramDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.ProgramDelegate",
|
495
|
+
"com.tuya.smart.sdk.bean.ProductCloudFileBean": "com.thingclips.smart.sdk.bean.ProductCloudFileBean",
|
496
|
+
"com.tuya.smart.android.ble.api.OnBleActivatorListener": "com.thingclips.smart.android.ble.api.OnBleActivatorListener",
|
497
|
+
"com.tuya.smart.sdk.bean.message.DeviceAlarmNotDisturbVO": "com.thingclips.smart.sdk.bean.message.DeviceAlarmNotDisturbVO",
|
498
|
+
"com.tuya.smart.android.blemesh.builder.SearchBuilder": "com.thingclips.smart.android.blemesh.builder.SearchBuilder",
|
499
|
+
"com.tuya.smart.sdk.bean.MatterQrCodeInfo": "com.thingclips.smart.sdk.bean.MatterQrCodeInfo",
|
500
|
+
"com.tuya.smart.sdk.bean.privacy.PrivacyAuthorizationBean": "com.thingclips.smart.sdk.bean.privacy.PrivacyAuthorizationBean",
|
501
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.ExecuteStatus": "com.thingclips.smart.ipc.camera.autotesting.bean.ExecuteStatus",
|
502
|
+
"com.tuya.smart.interior.device.confusebean.MQ_47_GroupDpsUpdateBean": "com.thingclips.smart.interior.device.confusebean.MQ_47_GroupDpsUpdateBean",
|
503
|
+
"com.tuya.smart.interior.device.confusebean.MQ_25_MeshOnlineStatusUpdateBean": "com.thingclips.smart.interior.device.confusebean.MQ_25_MeshOnlineStatusUpdateBean",
|
504
|
+
"com.tuya.smart.home.sdk.api.IActivator": "com.thingclips.smart.home.sdk.api.IActivator",
|
505
|
+
"com.tuya.smart.android.base.TuyaSmartSdk": "com.thingclips.smart.android.base.ThingSmartSdk",
|
506
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.CaseResultBean": "com.thingclips.smart.ipc.camera.autotesting.bean.CaseResultBean",
|
507
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.TaskLink": "com.thingclips.smart.ipc.camera.autotesting.bean.TaskLink",
|
508
|
+
"com.tuya.smart.interior.hardware.ITuyaAPSLConfigListener": "com.thingclips.smart.interior.hardware.IThingAPSLConfigListener",
|
509
|
+
"com.tuya.smart.interior.api.ITuyaPersonalCenterPlugin": "com.thingclips.smart.interior.api.IThingPersonalCenterPlugin",
|
510
|
+
"com.tuya.smart.android.blemesh.builder.TuyaBlueMeshActivatorBuilder": "com.thingclips.smart.android.blemesh.builder.ThingBlueMeshActivatorBuilder",
|
511
|
+
"com.tuya.smart.interior.device.bean.GroupRespBean": "com.thingclips.smart.interior.device.bean.GroupRespBean",
|
512
|
+
"com.tuya.smart.interior.event.ZigbeeSubDevDpUpdateEvent": "com.thingclips.smart.interior.event.ZigbeeSubDevDpUpdateEvent",
|
513
|
+
"com.tuya.smart.home.sdk.builder.TuyaGwActivatorBuilder": "com.thingclips.smart.home.sdk.builder.ThingGwActivatorBuilder",
|
514
|
+
"com.tuya.smart.android.common.task.TuyaExecutor": "com.thingclips.smart.android.common.task.ThingExecutor",
|
515
|
+
"com.tuya.smart.android.ble.api.OnBleDataTransferListener": "com.thingclips.smart.android.ble.api.OnBleDataTransferListener",
|
516
|
+
"com.tuya.smart.ipc.debugtool.api.OperationDebugAPICallBack": "com.thingclips.smart.ipc.debugtool.api.OperationDebugAPICallBack",
|
517
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeScene": "com.thingclips.smart.home.sdk.api.IThingHomeScene",
|
518
|
+
"com.tuya.smart.android.blemesh.IMeshCommonControl": "com.thingclips.smart.android.blemesh.IMeshCommonControl",
|
519
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.rule.EnumRule": "com.thingclips.smart.home.sdk.bean.scene.condition.rule.EnumRule",
|
520
|
+
"com.tuya.smart.sdk.api.bluemesh.IAddGroupCallback": "com.thingclips.smart.sdk.api.bluemesh.IAddGroupCallback",
|
521
|
+
"com.tuya.smart.home.sdk.api.ITuyaZigBeeLocalScene": "com.thingclips.smart.home.sdk.api.IThingZigBeeLocalScene",
|
522
|
+
"com.tuya.smart.sdk.bean.BlueMeshShareBean": "com.thingclips.smart.sdk.bean.BlueMeshShareBean",
|
523
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.AutoTestExcuteManagement": "com.thingclips.smart.ipc.camera.autotesting.excute.AutoTestExcuteManagement",
|
524
|
+
"com.tuya.smart.android.camera.sdk.TuyaIPCSdk": "com.thingclips.smart.android.camera.sdk.ThingIPCSdk",
|
525
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.TestProgram": "com.thingclips.smart.ipc.camera.autotesting.bean.TestProgram",
|
526
|
+
"com.tuya.sdk.matter.bean.FabricInfo": "com.thingclips.sdk.matter.bean.FabricInfo",
|
527
|
+
"com.tuya.smart.android.common.utils.StorageUtil": "com.thingclips.smart.android.common.utils.StorageUtil",
|
528
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.ApiProgramListBean": "com.thingclips.smart.ipc.camera.autotesting.bean.ApiProgramListBean",
|
529
|
+
"com.tuya.smart.android.camera.sdk.api.ICameraFactory": "com.thingclips.smart.android.camera.sdk.api.ICameraFactory",
|
530
|
+
"com.tuya.smart.android.device.bean.DataPointStatBean": "com.thingclips.smart.android.device.bean.DataPointStatBean",
|
531
|
+
"com.tuya.smart.android.hardware.IUDPBroadcastAidlInterface": "com.thingclips.smart.android.hardware.IUDPBroadcastAidlInterface",
|
532
|
+
"com.tuya.smart.sdk.api.ITuyaMatterDevicePlugin": "com.thingclips.smart.sdk.api.IThingMatterDevicePlugin",
|
533
|
+
"com.tuya.smart.camera.utils.chaos.BitmapUtils": "com.thingclips.smart.camera.utils.chaos.BitmapUtils",
|
534
|
+
"com.tuya.smart.sdk.api.ISubDevListener": "com.thingclips.smart.sdk.api.ISubDevListener",
|
535
|
+
"com.tuya.smart.android.blemesh.api.ITuyaBlueMeshActivatorListener": "com.thingclips.smart.android.blemesh.api.IThingBlueMeshActivatorListener",
|
536
|
+
"com.tuya.smart.android.camera.sdk.bean.IPCRecordConfig": "com.thingclips.smart.android.camera.sdk.bean.IPCRecordConfig",
|
537
|
+
"com.tuya.smart.home.sdk.bean.scene.ConditionExtraInfoBean": "com.thingclips.smart.home.sdk.bean.scene.ConditionExtraInfoBean",
|
538
|
+
"com.tuya.smart.android.base.event.NetWorkStatusEvent": "com.thingclips.smart.android.base.event.NetWorkStatusEvent",
|
539
|
+
"com.tuya.smart.interior.device.config.DevErrorCode": "com.thingclips.smart.interior.device.config.DevErrorCode",
|
540
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.ErrorCode": "com.thingclips.smart.ipc.camera.autotesting.utils.ErrorCode",
|
541
|
+
"com.tuya.smart.android.blemesh.bean.DpsParseBean": "com.thingclips.smart.android.blemesh.bean.DpsParseBean",
|
542
|
+
"com.tuya.smart.android.blemesh.api.IMeshEventHandler": "com.thingclips.smart.android.blemesh.api.IMeshEventHandler",
|
543
|
+
"com.tuya.smart.sdk.builder.ConnectStrategy": "com.thingclips.smart.sdk.builder.ConnectStrategy",
|
544
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCPTZ": "com.thingclips.smart.android.camera.sdk.api.IThingIPCPTZ",
|
545
|
+
"com.tuya.smart.ipc.camera.autotesting.view.IAutoCameraTestingProgramView": "com.thingclips.smart.ipc.camera.autotesting.view.IAutoCameraTestingProgramView",
|
546
|
+
"com.tuya.smart.sdk.api.OnTuyaGeoFenceStatusListener": "com.thingclips.smart.sdk.api.OnThingGeoFenceStatusListener",
|
547
|
+
"com.tuya.smart.android.ble.bean.ThirdDpsUpdate": "com.thingclips.smart.android.ble.bean.ThirdDpsUpdate",
|
548
|
+
"com.tuya.smart.bluet.api.BeaconScanFilterReceiveListener": "com.thingclips.smart.bluet.api.BeaconScanFilterReceiveListener",
|
549
|
+
"com.tuya.smart.sdk.api.ITuyaDevice": "com.thingclips.smart.sdk.api.IThingDevice",
|
550
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.impl.IPCP2PDebugToolServiceImpl": "com.thingclips.smart.ipc.camera.autotesting.excute.impl.IPCP2PDebugToolServiceImpl",
|
551
|
+
"com.tuya.smart.camera.middleware.cloud.bean.TimeRangeBean": "com.thingclips.smart.camera.middleware.cloud.bean.TimeRangeBean",
|
552
|
+
"com.tuya.smart.android.blemesh.event.MeshLocalOnlineStatusUpdateEvent": "com.thingclips.smart.android.blemesh.event.MeshLocalOnlineStatusUpdateEvent",
|
553
|
+
"com.tuya.smart.android.common.utils.TuyaConcurrentList": "com.thingclips.smart.android.common.utils.ThingConcurrentList",
|
554
|
+
"com.tuya.smart.android.mvp.bean.IResponse": "com.thingclips.smart.android.mvp.bean.IResponse",
|
555
|
+
"com.tuya.smart.ipc.camera.autotesting.activity.AutoCameraTestCaseDetailActivity": "com.thingclips.smart.ipc.camera.autotesting.activity.AutoCameraTestCaseDetailActivity",
|
556
|
+
"com.tuya.sdk.user.api.ITuyaUserAggregationPlugin": "com.thingclips.sdk.user.api.IThingUserAggregationPlugin",
|
557
|
+
"com.tuya.smart.android.ble.api.ITuyaBluetoothFlow": "com.thingclips.smart.android.ble.api.IThingBluetoothFlow",
|
558
|
+
"com.tuya.sdk.ble.core.protocol.api.OnBleConnectStatusListener": "com.thingclips.sdk.ble.core.protocol.api.OnBleConnectStatusListener",
|
559
|
+
"com.tuya.smart.android.camera.sdk.bean.CameraMessageClassifyBean": "com.thingclips.smart.android.camera.sdk.bean.CameraMessageClassifyBean",
|
560
|
+
"com.tuya.sdk.core.InitCallback": "com.thingclips.sdk.core.InitCallback",
|
561
|
+
"com.tuya.smart.camera.utils.chaos.CRC32": "com.thingclips.smart.camera.utils.chaos.CRC32",
|
562
|
+
"com.tuya.smart.android.user.api.IGetQRDeviceInfoCallBack": "com.thingclips.smart.android.user.api.IGetQRDeviceInfoCallBack",
|
563
|
+
"com.tuya.smart.home.sdk.callback.ITuyaDeviceUpgradeStatusCallback": "com.thingclips.smart.home.sdk.callback.IThingDeviceUpgradeStatusCallback",
|
564
|
+
"com.tuya.smart.android.camera.sdk.bean.CloudStatusBean": "com.thingclips.smart.android.camera.sdk.bean.CloudStatusBean",
|
565
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.property.BoolProperty": "com.thingclips.smart.home.sdk.bean.scene.condition.property.BoolProperty",
|
566
|
+
"com.tuya.smart.android.sweeper.bean.PathConfig": "com.thingclips.smart.android.sweeper.bean.PathConfig",
|
567
|
+
"com.tuya.smart.camera.ipccamerasdk.dp.DpStaticHelper": "com.thingclips.smart.camera.ipccamerasdk.dp.DpStaticHelper",
|
568
|
+
"com.tuya.smart.interior.device.confusebean.MQ_203_DataReceivedBean": "com.thingclips.smart.interior.device.confusebean.MQ_203_DataReceivedBean",
|
569
|
+
"com.tuya.smart.ipc.camera.autotesting.view.IAutoTestingListView": "com.thingclips.smart.ipc.camera.autotesting.view.IAutoTestingListView",
|
570
|
+
"com.tuya.sdk.device.bean.ProductUpgradeEventBean": "com.thingclips.sdk.device.bean.ProductUpgradeEventBean",
|
571
|
+
"com.tuya.smart.sdk.api.IOtaListener": "com.thingclips.smart.sdk.api.IOtaListener",
|
572
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.CaseListDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.CaseListDelegate",
|
573
|
+
"com.tuya.sdk.matter.api.MatterConnectCallback": "com.thingclips.sdk.matter.api.MatterConnectCallback",
|
574
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCDoorbell": "com.thingclips.smart.android.camera.sdk.api.IThingIPCDoorbell",
|
575
|
+
"com.tuya.smart.interior.device.ITuyaDevListCacheManager": "com.thingclips.smart.interior.device.IThingDevListCacheManager",
|
576
|
+
"com.tuya.smart.interior.api.ITuyaBlueMeshPlugin": "com.thingclips.smart.interior.api.IThingBlueMeshPlugin",
|
577
|
+
"com.tuya.smart.interior.device.bean.OtaAutoUpgradeRespBean": "com.thingclips.smart.interior.device.bean.OtaAutoUpgradeRespBean",
|
578
|
+
"com.tuya.smart.android.sweeper.bean.SweeperHistoryBean": "com.thingclips.smart.android.sweeper.bean.SweeperHistoryBean",
|
579
|
+
"com.tuya.smart.android.blemesh.builder.TuyaSigMeshActivatorBuilder": "com.thingclips.smart.android.blemesh.builder.ThingSigMeshActivatorBuilder",
|
580
|
+
"com.tuya.smart.sdk.bean.BlueMeshRelationDevBean": "com.thingclips.smart.sdk.bean.BlueMeshRelationDevBean",
|
581
|
+
"com.tuya.smart.android.blemesh.ITuyaMeshControl": "com.thingclips.smart.android.blemesh.IThingMeshControl",
|
582
|
+
"com.tuya.smart.camera.middleware.cloud.bean.CloudUrlsBean": "com.thingclips.smart.camera.middleware.cloud.bean.CloudUrlsBean",
|
583
|
+
"com.tuya.smart.sdk.api.ITuyaFeedbackManager": "com.thingclips.smart.sdk.api.IThingFeedbackManager",
|
584
|
+
"com.tuya.smart.sdk.api.ITuyaDirectlyDeviceActivatorListener": "com.thingclips.smart.sdk.api.IThingDirectlyDeviceActivatorListener",
|
585
|
+
"com.tuya.smart.interior.callback.ILogoutSuccessListener": "com.thingclips.smart.interior.callback.ILogoutSuccessListener",
|
586
|
+
"com.tuya.smart.android.blemesh.api.ITuyaBlueMeshClient": "com.thingclips.smart.android.blemesh.api.IThingBlueMeshClient",
|
587
|
+
"com.tuya.smart.android.hardware.ITransferServiceAidlInterface": "com.thingclips.smart.android.hardware.ITransferServiceAidlInterface",
|
588
|
+
"com.tuya.smart.sdk.bean.BluetoothStatusBean": "com.thingclips.smart.sdk.bean.BluetoothStatusBean",
|
589
|
+
"com.tuya.smart.android.hardware.bean.TuyaFrame": "com.thingclips.smart.android.hardware.bean.ThingFrame",
|
590
|
+
"com.tuya.smart.android.camera.sdk.api.ICameraBuilder": "com.thingclips.smart.android.camera.sdk.api.ICameraBuilder",
|
591
|
+
"com.tuya.smart.interior.config.ICheckDevAcitveStatusByToken": "com.thingclips.smart.interior.config.ICheckDevAcitveStatusByToken",
|
592
|
+
"com.tuya.smart.interior.event.DevUpdateEventModel": "com.thingclips.smart.interior.event.DevUpdateEventModel",
|
593
|
+
"com.tuya.smart.interior.hardware.IDeviceHardwareConfigListener": "com.thingclips.smart.interior.hardware.IDeviceHardwareConfigListener",
|
594
|
+
"com.tuya.smart.interior.mqtt.MqttErrorCode": "com.thingclips.smart.interior.mqtt.MqttErrorCode",
|
595
|
+
"com.tuya.smart.sdk.builder.MeshConnectBuilder": "com.thingclips.smart.sdk.builder.MeshConnectBuilder",
|
596
|
+
"com.tuya.sdk.ble.core.protocol.entity.SupportType": "com.thingclips.sdk.ble.core.protocol.entity.SupportType",
|
597
|
+
"com.tuya.smart.sdk.bean.PushBean": "com.thingclips.smart.sdk.bean.PushBean",
|
598
|
+
"com.tuya.smart.android.ble.api.OnBleRevChannelListener": "com.thingclips.smart.android.ble.api.OnBleRevChannelListener",
|
599
|
+
"com.tuya.smart.android.common.utils.CRC32Utils": "com.thingclips.smart.android.common.utils.CRC32Utils",
|
600
|
+
"com.tuya.smart.android.blemesh.event.BlueMeshQueryGroupDevEventModel": "com.thingclips.smart.android.blemesh.event.BlueMeshQueryGroupDevEventModel",
|
601
|
+
"com.tuya.smart.interior.hardware.IDeviceActivatorConfigListener": "com.thingclips.smart.interior.hardware.IDeviceActivatorConfigListener",
|
602
|
+
"com.tuya.smart.scene.api.service.SceneChangeCallback": "com.thingclips.smart.scene.api.service.SceneChangeCallback",
|
603
|
+
"com.tuya.smart.android.hardware.bean.TlsChannelResponse": "com.thingclips.smart.android.hardware.bean.TlsChannelResponse",
|
604
|
+
"com.tuya.smart.sdk.api.IDevSceneListUpdateListener": "com.thingclips.smart.sdk.api.IDevSceneListUpdateListener",
|
605
|
+
"com.tuya.smart.android.blemesh.bean.SendCommandParams": "com.thingclips.smart.android.blemesh.bean.SendCommandParams",
|
606
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.PlatformCaseBean": "com.thingclips.smart.ipc.camera.autotesting.bean.PlatformCaseBean",
|
607
|
+
"com.tuya.smart.home.sdk.api.IHomeCacheManager": "com.thingclips.smart.home.sdk.api.IHomeCacheManager",
|
608
|
+
"com.tuya.smart.interior.device.confusebean.MQ_203_AddZigbeeGroupBean": "com.thingclips.smart.interior.device.confusebean.MQ_203_AddZigbeeGroupBean",
|
609
|
+
"com.tuya.smart.interior.api.ITuyaDeviceActivatorPlugin": "com.thingclips.smart.interior.api.IThingDeviceActivatorPlugin",
|
610
|
+
"com.tuya.smart.home.sdk.bean.ShareInfoFromDevBean": "com.thingclips.smart.home.sdk.bean.ShareInfoFromDevBean",
|
611
|
+
"com.tuya.smart.sdk.bean.TuyaSmartThingEvent": "com.thingclips.smart.sdk.bean.ThingSmartThingEvent",
|
612
|
+
"com.tuya.smart.android.ble.api.OnDeviceAttributeListener": "com.thingclips.smart.android.ble.api.OnDeviceAttributeListener",
|
613
|
+
"com.tuya.smart.cache.api.ICacheStore": "com.thingclips.smart.cache.api.ICacheStore",
|
614
|
+
"com.tuya.smart.android.blemesh.api.ITuyaBlueMeshSearchListener": "com.thingclips.smart.android.blemesh.api.IThingBlueMeshSearchListener",
|
615
|
+
"com.tuya.smart.android.camera.sdk.callback.ProgressCallback": "com.thingclips.smart.android.camera.sdk.callback.ProgressCallback",
|
616
|
+
"com.tuya.smart.android.blemesh.ITuyaMeshService": "com.thingclips.smart.android.blemesh.IThingMeshService",
|
617
|
+
"com.tuya.smart.camera.utils.chaos.TimeZoneUtils": "com.thingclips.smart.camera.utils.chaos.TimeZoneUtils",
|
618
|
+
"com.tuya.smart.interior.mqtt.PublishAndDeliveryCallback": "com.thingclips.smart.interior.mqtt.PublishAndDeliveryCallback",
|
619
|
+
"com.tuya.smart.camera.ipccamerasdk.bean.CameraInfoBean": "com.thingclips.smart.camera.ipccamerasdk.bean.CameraInfoBean",
|
620
|
+
"com.tuya.sdk.device.api.IOtaMqttListener": "com.thingclips.sdk.device.api.IOtaMqttListener",
|
621
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.OnP2PCameraListener": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.OnP2PCameraListener",
|
622
|
+
"com.tuya.smart.android.mvp.bean.Result": "com.thingclips.smart.android.mvp.bean.Result",
|
623
|
+
"com.tuya.smart.android.ble.api.audio.LEAudioResult": "com.thingclips.smart.android.ble.api.audio.LEAudioResult",
|
624
|
+
"com.tuya.smart.cache.api.ICacheManager": "com.thingclips.smart.cache.api.ICacheManager",
|
625
|
+
"com.tuya.smart.interior.device.ITuyaDeviceDpChangeListener": "com.thingclips.smart.interior.device.IThingDeviceDpChangeListener",
|
626
|
+
"com.tuya.smart.scene.api.service.IExecuteService": "com.thingclips.smart.scene.api.service.IExecuteService",
|
627
|
+
"com.tuya.sdk.ble.core.protocol.api.Protocol4RequestDelegate": "com.thingclips.sdk.ble.core.protocol.api.Protocol4RequestDelegate",
|
628
|
+
"com.tuya.sdk.matter.bean.FabricAllocBean": "com.thingclips.sdk.matter.bean.FabricAllocBean",
|
629
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCCount": "com.thingclips.smart.android.camera.sdk.api.IThingIPCCount",
|
630
|
+
"com.tuya.sdk.ble.core.protocol.api.OnBleDeviceRequestListener": "com.thingclips.sdk.ble.core.protocol.api.OnBleDeviceRequestListener",
|
631
|
+
"com.tuya.smart.android.ble.api.audio.AudioCommonCommand": "com.thingclips.smart.android.ble.api.audio.AudioCommonCommand",
|
632
|
+
"com.tuya.smart.home.sdk.callback.ITuyaDeviceUpgradeStatusExtCallback": "com.thingclips.smart.home.sdk.callback.IThingDeviceUpgradeStatusExtCallback",
|
633
|
+
"com.tuya.smart.interior.hardware.TuyaLocalControlBean": "com.thingclips.smart.interior.hardware.ThingLocalControlBean",
|
634
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.ResultReportTitleBean": "com.thingclips.smart.ipc.camera.autotesting.bean.ResultReportTitleBean",
|
635
|
+
"com.tuya.smart.ipc.camera.cloudtool.utils.DownloadManager": "com.thingclips.smart.ipc.camera.cloudtool.utils.DownloadManager",
|
636
|
+
"com.tuya.smart.home.sdk.bean.scene.SceneTask": "com.thingclips.smart.home.sdk.bean.scene.SceneTask",
|
637
|
+
"com.tuya.smart.ipc.camera.cloudtool.bean.CloudToolTimeRangeBeanKt": "com.thingclips.smart.ipc.camera.cloudtool.bean.CloudToolTimeRangeBeanKt",
|
638
|
+
"com.tuya.smart.android.camera.sdk.constant.PTZDPModel": "com.thingclips.smart.android.camera.sdk.constant.PTZDPModel",
|
639
|
+
"com.tuya.smart.android.camera.sdk.api.ILog": "com.thingclips.smart.android.camera.sdk.api.ILog",
|
640
|
+
"com.tuya.smart.android.ble.api.audio.TuyaLEAudioStartArgs": "com.thingclips.smart.android.ble.api.audio.ThingLEAudioStartArgs",
|
641
|
+
"com.tuya.smart.sdk.bean.IsSupportOffLineBean": "com.thingclips.smart.sdk.bean.IsSupportOffLineBean",
|
642
|
+
"com.tuya.smart.sdk.bean.ShortCutBean": "com.thingclips.smart.sdk.bean.ShortCutBean",
|
643
|
+
"com.tuya.sdk.ble.core.ability.model.BleGattCharacterData": "com.thingclips.sdk.ble.core.ability.model.BleGattCharacterData",
|
644
|
+
"com.tuya.smart.interior.device.ITuyaSubDeviceOnlineStatusListener": "com.thingclips.smart.interior.device.IThingSubDeviceOnlineStatusListener",
|
645
|
+
"com.tuya.smart.android.camera.timeline.OnBarMoveListener": "com.thingclips.smart.android.camera.timeline.OnBarMoveListener",
|
646
|
+
"com.tuya.smart.home.sdk.bean.DeviceAndGroupInHomeBean": "com.thingclips.smart.home.sdk.bean.DeviceAndGroupInHomeBean",
|
647
|
+
"com.tuya.smart.android.ble.ITuyaThirdProtocolDelegate": "com.thingclips.smart.android.ble.IThingThirdProtocolDelegate",
|
648
|
+
"com.tuya.smart.sdk.api.IFirmwareUpgradeListener": "com.thingclips.smart.sdk.api.IFirmwareUpgradeListener",
|
649
|
+
"com.tuya.smart.interior.bean.UserExBean": "com.thingclips.smart.interior.bean.UserExBean",
|
650
|
+
"com.tuya.smart.android.device.bean.GroupDeviceRespBean": "com.thingclips.smart.android.device.bean.GroupDeviceRespBean",
|
651
|
+
"com.tuya.smart.android.camera.sdk.api.ICameraStatEvent": "com.thingclips.smart.android.camera.sdk.api.ICameraStatEvent",
|
652
|
+
"com.tuya.smart.components.annotation.TuyaComponentsService": "com.thingclips.smart.components.annotation.ThingComponentsService",
|
653
|
+
"com.tuya.smart.android.user.api.IGetRegionCallback": "com.thingclips.smart.android.user.api.IGetRegionCallback",
|
654
|
+
"com.tuya.smart.sdk.api.ITuyaQRCodeDevActivator": "com.thingclips.smart.sdk.api.IThingQRCodeDevActivator",
|
655
|
+
"com.tuya.smart.camera.ipccamerasdk.monitor.IMonitorView": "com.thingclips.smart.camera.ipccamerasdk.monitor.IMonitorView",
|
656
|
+
"com.tuya.smart.android.ble.api.IGetCustomLocationWeather": "com.thingclips.smart.android.ble.api.IGetCustomLocationWeather",
|
657
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.AbsP2pCameraListener": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.AbsP2pCameraListener",
|
658
|
+
"com.tuya.smart.home.sdk.api.IWarningMsgListener": "com.thingclips.smart.home.sdk.api.IWarningMsgListener",
|
659
|
+
"com.tuya.sdk.eventbus.EventBusBuilder": "com.thingclips.sdk.eventbus.EventBusBuilder",
|
660
|
+
"com.tuya.smart.sdk.api.IOperationalDeviceDiscoveryListener": "com.thingclips.smart.sdk.api.IOperationalDeviceDiscoveryListener",
|
661
|
+
"com.tuya.smart.interior.enums.BizParentTypeEnum": "com.thingclips.smart.interior.enums.BizParentTypeEnum",
|
662
|
+
"com.tuya.smart.interior.event.DeviceUpdateEventModel": "com.thingclips.smart.interior.event.DeviceUpdateEventModel",
|
663
|
+
"com.tuya.smart.home.sdk.bean.LightningSearchBean": "com.thingclips.smart.home.sdk.bean.LightningSearchBean",
|
664
|
+
"com.tuya.smart.scene.api.IResultCallback": "com.thingclips.smart.scene.api.IResultCallback",
|
665
|
+
"com.tuya.smart.home.sdk.bean.VoiceCommandBean": "com.thingclips.smart.home.sdk.bean.VoiceCommandBean",
|
666
|
+
"com.tuya.smart.home.sdk.callback.ITuyaGetRoomListCallback": "com.thingclips.smart.home.sdk.callback.IThingGetRoomListCallback",
|
667
|
+
"com.tuya.smart.sdk.api.ITuyaOTAService": "com.thingclips.smart.sdk.api.IThingOTAService",
|
668
|
+
"com.tuya.smart.android.blemesh.api.MeshLinkageActionType": "com.thingclips.smart.android.blemesh.api.MeshLinkageActionType",
|
669
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.PlatformProgramBean": "com.thingclips.smart.ipc.camera.autotesting.bean.PlatformProgramBean",
|
670
|
+
"com.tuya.smart.android.common.utils.FixedSecureRandom": "com.thingclips.smart.android.common.utils.FixedSecureRandom",
|
671
|
+
"com.tuya.smart.camera.ipccamerasdk.p2p.AbsTutkCameraP2P": "com.thingclips.smart.camera.ipccamerasdk.p2p.AbsTutkCameraP2P",
|
672
|
+
"com.tuya.smart.sdk.api.bluemesh.IRequestMeshListCallback": "com.thingclips.smart.sdk.api.bluemesh.IRequestMeshListCallback",
|
673
|
+
"com.tuya.smart.ipc.camera.autotesting.muitltype.MultiTypeAdapter": "com.thingclips.smart.ipc.camera.autotesting.muitltype.MultiTypeAdapter",
|
674
|
+
"com.tuya.sdk.device.presenter.IHardwareUpdateInfo": "com.thingclips.sdk.device.presenter.IHardwareUpdateInfo",
|
675
|
+
"com.tuya.smart.scene.api.service.IRecommendService": "com.thingclips.smart.scene.api.service.IRecommendService",
|
676
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.OnCameraGestureListener": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.OnCameraGestureListener",
|
677
|
+
"com.tuya.smart.sdk.bean.Timer": "com.thingclips.smart.sdk.bean.Timer",
|
678
|
+
"com.tuya.smart.camera.annotation.PlayBackSpeed": "com.thingclips.smart.camera.annotation.PlayBackSpeed",
|
679
|
+
"com.tuya.smart.sdk.api.IMultiModeActivator": "com.thingclips.smart.sdk.api.IMultiModeActivator",
|
680
|
+
"com.tuya.smart.sdk.api.ITuyaBroadbandConnectTypeListener": "com.thingclips.smart.sdk.api.IThingBroadbandConnectTypeListener",
|
681
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeMember": "com.thingclips.smart.home.sdk.api.IThingHomeMember",
|
682
|
+
"com.tuya.smart.sdk.bean.OffLineStatusBean": "com.thingclips.smart.sdk.bean.OffLineStatusBean",
|
683
|
+
"com.tuya.smart.sdk.enums.FirmwareUpgradeEnum": "com.thingclips.smart.sdk.enums.FirmwareUpgradeEnum",
|
684
|
+
"com.tuya.sdk.ble.core.protocol.api.ProtocolAccessRequest": "com.thingclips.sdk.ble.core.protocol.api.ProtocolAccessRequest",
|
685
|
+
"com.tuya.smart.sdk.bean.message.MessageType": "com.thingclips.smart.sdk.bean.message.MessageType",
|
686
|
+
"com.tuya.smart.interior.device.confusebean.DpPublish": "com.thingclips.smart.interior.device.confusebean.DpPublish",
|
687
|
+
"com.tuya.smart.ipc.camera.autotesting.AutoTestingApp": "com.thingclips.smart.ipc.camera.autotesting.AutoTestingApp",
|
688
|
+
"com.tuya.smart.interior.home.ITuyaHomeDataLocalCache": "com.thingclips.smart.interior.home.IThingHomeDataLocalCache",
|
689
|
+
"com.tuya.smart.sdk.api.ITuyaOTACenter": "com.thingclips.smart.sdk.api.IThingOTACenter",
|
690
|
+
"com.tuya.smart.camera.ipccamerasdk.dp.DpHelper": "com.thingclips.smart.camera.ipccamerasdk.dp.DpHelper",
|
691
|
+
"com.tuya.smart.interior.device.confusebean.Protocol_32_Bean": "com.thingclips.smart.interior.device.confusebean.Protocol_32_Bean",
|
692
|
+
"com.tuya.smart.camera.utils.MediaScannerUtils": "com.thingclips.smart.camera.utils.MediaScannerUtils",
|
693
|
+
"com.tuya.smart.android.ble.api.CombosFlagCapability": "com.thingclips.smart.android.ble.api.CombosFlagCapability",
|
694
|
+
"com.tuya.smart.camera.middleware.cloud.ICloudCacheManagerCallback": "com.thingclips.smart.camera.middleware.cloud.ICloudCacheManagerCallback",
|
695
|
+
"com.tuya.smart.sdk.api.ITuyaOta": "com.thingclips.smart.sdk.api.IThingOta",
|
696
|
+
"com.tuya.smart.sdk.api.ITuyaMatterDevActivator": "com.thingclips.smart.sdk.api.IThingMatterDevActivator",
|
697
|
+
"com.tuya.smart.android.device.bean.ValueSchemaBean": "com.thingclips.smart.android.device.bean.ValueSchemaBean",
|
698
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeDataManager": "com.thingclips.smart.home.sdk.api.IThingHomeDataManager",
|
699
|
+
"com.tuya.sdk.matter.api.IMatterModel": "com.thingclips.sdk.matter.api.IMatterModel",
|
700
|
+
"com.tuya.sdk.eventbus.HandlerPoster": "com.thingclips.sdk.eventbus.HandlerPoster",
|
701
|
+
"com.tuya.smart.sdk.SaasSdkType": "com.thingclips.smart.sdk.SaasSdkType",
|
702
|
+
"com.tuya.smart.interior.api.ITuyaSweeperPlugin": "com.thingclips.smart.interior.api.IThingSweeperPlugin",
|
703
|
+
"com.tuya.smart.android.base.event.NetWorkStatusEventModel": "com.thingclips.smart.android.base.event.NetWorkStatusEventModel",
|
704
|
+
"com.tuya.smart.android.blemesh.api.ITuyaSigMeshClient": "com.thingclips.smart.android.blemesh.api.IThingSigMeshClient",
|
705
|
+
"com.tuya.smart.android.common.utils.MD5": "com.thingclips.smart.android.common.utils.MD5",
|
706
|
+
"com.tuya.smart.android.blemesh.bean.DevSceneDataBean": "com.thingclips.smart.android.blemesh.bean.DevSceneDataBean",
|
707
|
+
"com.tuya.smart.sdk.api.INeedLoginListener": "com.thingclips.smart.sdk.api.INeedLoginListener",
|
708
|
+
"com.tuya.smart.android.ble.api.DataChannelListener": "com.thingclips.smart.android.ble.api.DataChannelListener",
|
709
|
+
"com.tuya.smart.android.user.bean.CommonConfigBean": "com.thingclips.smart.android.user.bean.CommonConfigBean",
|
710
|
+
"com.tuya.smart.bluet.api.ITuyaBlueServicePlugin": "com.thingclips.smart.bluet.api.IThingBlueServicePlugin",
|
711
|
+
"com.tuya.sdk.eventbus.PendingPostQueue": "com.thingclips.sdk.eventbus.PendingPostQueue",
|
712
|
+
"com.tuya.smart.android.blemesh.api.MeshConnectStatus": "com.thingclips.smart.android.blemesh.api.MeshConnectStatus",
|
713
|
+
"com.tuya.smart.camera.middleware.widget.AbsVideoViewCallback": "com.thingclips.smart.camera.middleware.widget.AbsVideoViewCallback",
|
714
|
+
"com.tuya.smart.ipc.camera.autotesting.cache.ICache": "com.thingclips.smart.ipc.camera.autotesting.cache.ICache",
|
715
|
+
"com.tuya.smart.sdk.api.bluemesh.ISigMeshManager": "com.thingclips.smart.sdk.api.bluemesh.ISigMeshManager",
|
716
|
+
"com.tuya.smart.interior.api.IUserHighwayPlugin": "com.thingclips.smart.interior.api.IUserHighwayPlugin",
|
717
|
+
"com.tuya.smart.sdk.api.cache.ITuyaCachePlugin": "com.thingclips.smart.sdk.api.cache.IThingCachePlugin",
|
718
|
+
"com.tuya.smart.android.camera.timeline.TimelineViewImpl": "com.thingclips.smart.android.camera.timeline.TimelineViewImpl",
|
719
|
+
"com.tuya.smart.ipc.camera.autotesting.model.AutoTestingProgramListModel": "com.thingclips.smart.ipc.camera.autotesting.model.AutoTestingProgramListModel",
|
720
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCHomeProxy": "com.thingclips.smart.android.camera.sdk.api.IThingIPCHomeProxy",
|
721
|
+
"com.tuya.smart.sdk.bean.OTAErrorMessageBean": "com.thingclips.smart.sdk.bean.OTAErrorMessageBean",
|
722
|
+
"com.tuya.smart.android.ble.api.BeaconAuthBean": "com.thingclips.smart.android.ble.api.BeaconAuthBean",
|
723
|
+
"com.tuya.smart.home.sdk.TuyaHomeSdk": "com.thingclips.smart.home.sdk.ThingHomeSdk",
|
724
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.LogDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.LogDelegate",
|
725
|
+
"com.tuya.smart.camera.ipccamerasdk.bean.CloudFrameInfoBean": "com.thingclips.smart.camera.ipccamerasdk.bean.CloudFrameInfoBean",
|
726
|
+
"com.tuya.smart.home.sdk.bean.WeatherBean": "com.thingclips.smart.home.sdk.bean.WeatherBean",
|
727
|
+
"com.tuya.smart.sdk.api.IGetOtaInfoCallback": "com.thingclips.smart.sdk.api.IGetOtaInfoCallback",
|
728
|
+
"com.tuya.smart.android.user.bean.HighwayTokenBean": "com.thingclips.smart.android.user.bean.HighwayTokenBean",
|
729
|
+
"com.tuya.smart.interior.device.confusebean.MQ_43_DataPushBean": "com.thingclips.smart.interior.device.confusebean.MQ_43_DataPushBean",
|
730
|
+
"com.tuya.smart.sdk.api.bluemesh.IMeshDevListenerV3": "com.thingclips.smart.sdk.api.bluemesh.IMeshDevListenerV3",
|
731
|
+
"com.tuya.smart.sdk.api.bluemesh.IMeshDevListenerV2": "com.thingclips.smart.sdk.api.bluemesh.IMeshDevListenerV2",
|
732
|
+
"com.tuya.smart.android.ble.api.audio.TuyaLEAudioEnum": "com.thingclips.smart.android.ble.api.audio.ThingLEAudioEnum",
|
733
|
+
"com.tuya.sdk.ble.core.bean.RequestPackage": "com.thingclips.sdk.ble.core.bean.RequestPackage",
|
734
|
+
"com.tuya.smart.interior.hardware.ITuyaHardwareBusiness": "com.thingclips.smart.interior.hardware.IThingHardwareBusiness",
|
735
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCDpHelper": "com.thingclips.smart.android.camera.sdk.api.IThingIPCDpHelper",
|
736
|
+
"com.tuya.smart.sdk.bean.push.TuyaPushBean": "com.thingclips.smart.sdk.bean.push.ThingPushBean",
|
737
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.AssetsCaseBean": "com.thingclips.smart.ipc.camera.autotesting.bean.AssetsCaseBean",
|
738
|
+
"com.tuya.smart.ipc.camera.autotesting.callback.AutoTestOnItemClickListener": "com.thingclips.smart.ipc.camera.autotesting.callback.AutoTestOnItemClickListener",
|
739
|
+
"com.tuya.smart.android.blemesh.api.ITuyaExtBlueMeshOta": "com.thingclips.smart.android.blemesh.api.IThingExtBlueMeshOta",
|
740
|
+
"com.tuya.smart.interior.device.IDevCloudControl": "com.thingclips.smart.interior.device.IDevCloudControl",
|
741
|
+
"com.tuya.smart.interior.callback.ILoginSuccessListener": "com.thingclips.smart.interior.callback.ILoginSuccessListener",
|
742
|
+
"com.tuya.smart.sdk.bean.SubDevInstallBean": "com.thingclips.smart.sdk.bean.SubDevInstallBean",
|
743
|
+
"com.tuya.smart.android.user.api.IQurryDomainCallback": "com.thingclips.smart.android.user.api.IQurryDomainCallback",
|
744
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.IRegistorTalkListener": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.IRegistorTalkListener",
|
745
|
+
"com.tuya.smart.sdk.bean.DeviceBean": "com.thingclips.smart.sdk.bean.DeviceBean",
|
746
|
+
"com.tuya.smart.ipc.camera.autotesting.presenter.AutoTestingProgramListPresenter": "com.thingclips.smart.ipc.camera.autotesting.presenter.AutoTestingProgramListPresenter",
|
747
|
+
"com.tuya.smart.home.sdk.bean.scene.SceneLogResBean": "com.thingclips.smart.home.sdk.bean.scene.SceneLogResBean",
|
748
|
+
"com.tuya.smart.ipc.camera.autotesting.data.LocalRepo": "com.thingclips.smart.ipc.camera.autotesting.data.LocalRepo",
|
749
|
+
"com.tuya.smart.android.sweeper.ITuyaSweeperByteDataListener": "com.thingclips.smart.android.sweeper.IThingSweeperByteDataListener",
|
750
|
+
"com.tuya.smart.android.config.bean.BaseConfigInfo": "com.thingclips.smart.android.config.bean.BaseConfigInfo",
|
751
|
+
"com.tuya.smart.interior.log.ITuyaLogPlugin": "com.thingclips.smart.interior.log.IThingLogPlugin",
|
752
|
+
"com.tuya.smart.sdk.api.ICreateGroupAlarmCallback": "com.thingclips.smart.sdk.api.ICreateGroupAlarmCallback",
|
753
|
+
"com.tuya.smart.android.common.utils.L": "com.thingclips.smart.android.common.utils.L",
|
754
|
+
"com.tuya.smart.camera.middleware.p2p.TuyaSmartNvrSubCameraP2P": "com.thingclips.smart.camera.middleware.p2p.ThingSmartNvrSubCameraP2P",
|
755
|
+
"com.tuya.smart.interior.hardware.IDeviceHardwareResultListener": "com.thingclips.smart.interior.hardware.IDeviceHardwareResultListener",
|
756
|
+
"com.tuya.smart.ipc.camera.autotesting.muitltype.DefaultLinker": "com.thingclips.smart.ipc.camera.autotesting.muitltype.DefaultLinker",
|
757
|
+
"com.tuya.smart.sdk.api.ITuyaSmartAPSendInfoListener": "com.thingclips.smart.sdk.api.IThingSmartAPSendInfoListener",
|
758
|
+
"com.tuya.smart.home.sdk.bean.scene.SceneAuthBean": "com.thingclips.smart.home.sdk.bean.scene.SceneAuthBean",
|
759
|
+
"com.tuya.smart.android.common.utils.Base64": "com.thingclips.smart.android.common.utils.Base64",
|
760
|
+
"com.tuya.smart.android.device.bean.EnumSchemaBean": "com.thingclips.smart.android.device.bean.EnumSchemaBean",
|
761
|
+
"com.tuya.smart.home.sdk.bean.DeviceAndGroupInRoomBean": "com.thingclips.smart.home.sdk.bean.DeviceAndGroupInRoomBean",
|
762
|
+
"com.tuya.smart.camera.utils.chaos.MD5Utils": "com.thingclips.smart.camera.utils.chaos.MD5Utils",
|
763
|
+
"com.tuya.smart.ipc.camera.cloudtool.optimus.IPCCloudTool": "com.thingclips.smart.ipc.camera.cloudtool.optimus.IPCCloudTool",
|
764
|
+
"com.tuya.smart.home.sdk.bean.scene.SceneTaskGroupDevice": "com.thingclips.smart.home.sdk.bean.scene.SceneTaskGroupDevice",
|
765
|
+
"com.tuya.sdk.ble.core.bean.WiFiDevInfo": "com.thingclips.sdk.ble.core.bean.WiFiDevInfo",
|
766
|
+
"com.tuya.smart.sdk.api.IGetAllTimerWithDevIdCallback": "com.thingclips.smart.sdk.api.IGetAllTimerWithDevIdCallback",
|
767
|
+
"com.tuya.smart.interior.api.ITuyaHomePlugin": "com.thingclips.smart.interior.api.IThingHomePlugin",
|
768
|
+
"com.tuya.smart.interior.device.ITuyaMeshBatchDpUpdateListener": "com.thingclips.smart.interior.device.IThingMeshBatchDpUpdateListener",
|
769
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.OnRenderZoomListener": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.OnRenderZoomListener",
|
770
|
+
"com.tuya.smart.sdk.api.bluemesh.IGetMeshRoomAndGroupListCallback": "com.thingclips.smart.sdk.api.bluemesh.IGetMeshRoomAndGroupListCallback",
|
771
|
+
"com.tuya.smart.android.hardware.service.DevTransferService": "com.thingclips.smart.android.hardware.service.DevTransferService",
|
772
|
+
"com.tuya.smart.sdk.bean.ThreadNetworkInfoBean": "com.thingclips.smart.sdk.bean.ThreadNetworkInfoBean",
|
773
|
+
"com.tuya.smart.android.device.bean.MultiControlDevInfoBean": "com.thingclips.smart.android.device.bean.MultiControlDevInfoBean",
|
774
|
+
"com.tuya.smart.ipc.camera.autotesting.cache.AutoTestCaseTaskLinksManagement": "com.thingclips.smart.ipc.camera.autotesting.cache.AutoTestCaseTaskLinksManagement",
|
775
|
+
"com.tuya.smart.home.sdk.anntation.MemberRole": "com.thingclips.smart.home.sdk.anntation.MemberRole",
|
776
|
+
"com.tuya.smart.android.common.task.SaturativeExecutor": "com.thingclips.smart.android.common.task.SaturativeExecutor",
|
777
|
+
"com.tuya.smart.camera.middleware.nvr.NvrP2PManager": "com.thingclips.smart.camera.middleware.nvr.NvrP2PManager",
|
778
|
+
"com.tuya.smart.interior.device.confusebean.MQ_205_AddZigbeeSceneBean": "com.thingclips.smart.interior.device.confusebean.MQ_205_AddZigbeeSceneBean",
|
779
|
+
"com.tuya.smart.android.ble.bean.ThirdConnectInfoBean": "com.thingclips.smart.android.ble.bean.ThirdConnectInfoBean",
|
780
|
+
"com.tuya.smart.sdk.api.bluemesh.IMeshStatusListener": "com.thingclips.smart.sdk.api.bluemesh.IMeshStatusListener",
|
781
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCCloud": "com.thingclips.smart.android.camera.sdk.api.IThingIPCCloud",
|
782
|
+
"com.tuya.smart.android.user.api.IReNickNameCallback": "com.thingclips.smart.android.user.api.IReNickNameCallback",
|
783
|
+
"com.tuya.smart.camera.ipccamerasdk.http.IHttpProxyResultCallback": "com.thingclips.smart.camera.ipccamerasdk.http.IHttpProxyResultCallback",
|
784
|
+
"com.tuya.smart.android.blemesh.event.MeshDeviceRelationUpdateEventModel": "com.thingclips.smart.android.blemesh.event.MeshDeviceRelationUpdateEventModel",
|
785
|
+
"com.tuya.smart.android.blemesh.bean.MeshConditionLinkageData": "com.thingclips.smart.android.blemesh.bean.MeshConditionLinkageData",
|
786
|
+
"com.tuya.smart.interior.api.ITuyaMqttPlugin": "com.thingclips.smart.interior.api.IThingMqttPlugin",
|
787
|
+
"com.tuya.smart.sdk.api.IResultCallback": "com.thingclips.smart.sdk.api.IResultCallback",
|
788
|
+
"com.tuya.smart.android.ble.api.WatchWeatherBean": "com.thingclips.smart.android.ble.api.WatchWeatherBean",
|
789
|
+
"com.tuya.smart.camera.camerasdk.bean.TuyaAudioFrameInfo": "com.thingclips.smart.camera.camerasdk.bean.ThingAudioFrameInfo",
|
790
|
+
"com.tuya.smart.home.sdk.bean.TransferDataBean": "com.thingclips.smart.home.sdk.bean.TransferDataBean",
|
791
|
+
"com.tuya.smart.sdk.api.wifibackup.api.bean.BackupWifiBean": "com.thingclips.smart.sdk.api.wifibackup.api.bean.BackupWifiBean",
|
792
|
+
"com.tuya.imagepipeline.okhttp3.OkHttpNetworkFetcher": "com.thingclips.imagepipeline.okhttp3.OkHttpNetworkFetcher",
|
793
|
+
"com.tuya.smart.camera.middleware.cloud.bean.TimePieceBean": "com.thingclips.smart.camera.middleware.cloud.bean.TimePieceBean",
|
794
|
+
"com.tuya.sdk.device.enums.RomUpgradeTypeEnum": "com.thingclips.sdk.device.enums.RomUpgradeTypeEnum",
|
795
|
+
"com.tuya.smart.camera.ipccamerasdk.nvr.TuyaNvrSDKImpl": "com.thingclips.smart.camera.ipccamerasdk.nvr.ThingNvrSDKImpl",
|
796
|
+
"com.tuya.smart.sdk.api.IDevOTAListener": "com.thingclips.smart.sdk.api.IDevOTAListener",
|
797
|
+
"com.tuya.smart.android.ble.api.WiFiInfo": "com.thingclips.smart.android.ble.api.WiFiInfo",
|
798
|
+
"com.tuya.smart.android.camera.timeline.TimelineTickBean": "com.thingclips.smart.android.camera.timeline.TimelineTickBean",
|
799
|
+
"com.tuya.smart.scene.api.util.DevGroupUtil": "com.thingclips.smart.scene.api.util.DevGroupUtil",
|
800
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.ConfigCmdType": "com.thingclips.smart.ipc.camera.autotesting.excute.ConfigCmdType",
|
801
|
+
"com.tuya.smart.android.user.bean.Domain": "com.thingclips.smart.android.user.bean.Domain",
|
802
|
+
"com.tuya.smart.scene.api.service.IAtopUrlConfig": "com.thingclips.smart.scene.api.service.IAtopUrlConfig",
|
803
|
+
"com.tuya.smart.android.device.enums.ModeEnum": "com.thingclips.smart.android.device.enums.ModeEnum",
|
804
|
+
"com.tuya.smart.sdk.bean.BleActivatorBean": "com.thingclips.smart.sdk.bean.BleActivatorBean",
|
805
|
+
"com.tuya.smart.android.mqtt.ITuyaMqttRetainChannelListener": "com.thingclips.smart.android.mqtt.IThingMqttRetainChannelListener",
|
806
|
+
"com.tuya.smart.android.ble.api.ITuyaBleGateway": "com.thingclips.smart.android.ble.api.IThingBleGateway",
|
807
|
+
"com.tuya.smart.ipc.camera.autotesting.activity.AutoCameraTestingChoiceDeviceActivity": "com.thingclips.smart.ipc.camera.autotesting.activity.AutoCameraTestingChoiceDeviceActivity",
|
808
|
+
"com.tuya.smart.android.camera.sdk.bean.TYDoorBellCallModel": "com.thingclips.smart.android.camera.sdk.bean.ThingDoorBellCallModel",
|
809
|
+
"com.tuya.smart.sdk.bean.ZigbeeGroupCreateResultBean": "com.thingclips.smart.sdk.bean.ZigbeeGroupCreateResultBean",
|
810
|
+
"com.tuya.sdk.core.AbstractComponentService": "com.thingclips.sdk.core.AbstractComponentService",
|
811
|
+
"com.tuya.smart.home.sdk.bean.RoomAuthBean": "com.thingclips.smart.home.sdk.bean.RoomAuthBean",
|
812
|
+
"com.tuya.sdk.matter.api.ConnectedDeviceCallback": "com.thingclips.sdk.matter.api.ConnectedDeviceCallback",
|
813
|
+
"com.tuya.smart.sdk.api.IMatterAttributeCallback": "com.thingclips.smart.sdk.api.IMatterAttributeCallback",
|
814
|
+
"com.tuya.sdk.ble.core.bean.FileTransferInfo": "com.thingclips.sdk.ble.core.bean.FileTransferInfo",
|
815
|
+
"com.tuya.smart.android.ble.api.ScanType": "com.thingclips.smart.android.ble.api.ScanType",
|
816
|
+
"com.tuya.smart.android.blemesh.bean.MeshActionLinkageData": "com.thingclips.smart.android.blemesh.bean.MeshActionLinkageData",
|
817
|
+
"com.tuya.smart.home.sdk.api.ITuyaServer": "com.thingclips.smart.home.sdk.api.IThingServer",
|
818
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.ResultDesBean": "com.thingclips.smart.ipc.camera.autotesting.bean.ResultDesBean",
|
819
|
+
"com.tuya.smart.ipc.camera.autotesting.view.IAutoTestTaskLinksChoiceView": "com.thingclips.smart.ipc.camera.autotesting.view.IAutoTestTaskLinksChoiceView",
|
820
|
+
"com.tuya.smart.bluet.api.ScanDeviceResult": "com.thingclips.smart.bluet.api.ScanDeviceResult",
|
821
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.impl.IPCCameraServiceImpl": "com.thingclips.smart.ipc.camera.autotesting.excute.impl.IPCCameraServiceImpl",
|
822
|
+
"com.tuya.smart.scene.api.service.IBaseService": "com.thingclips.smart.scene.api.service.IBaseService",
|
823
|
+
"com.tuya.smart.sdk.bean.message.MessageListBean": "com.thingclips.smart.sdk.bean.message.MessageListBean",
|
824
|
+
"com.tuya.smart.android.camera.sdk.annotation.OpenApi": "com.thingclips.smart.android.camera.sdk.annotation.OpenApi",
|
825
|
+
"com.tuya.smart.interior.event.DeviceDpsUpdateEvent": "com.thingclips.smart.interior.event.DeviceDpsUpdateEvent",
|
826
|
+
"com.tuya.smart.android.blemesh.bean.SceneType": "com.thingclips.smart.android.blemesh.bean.SceneType",
|
827
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.CaseResultDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.CaseResultDelegate",
|
828
|
+
"com.tuya.smart.sdk.api.bluemesh.IGetGroupAndDevListCallback": "com.thingclips.smart.sdk.api.bluemesh.IGetGroupAndDevListCallback",
|
829
|
+
"com.tuya.smart.interior.device.confusebean.MQ_29_MeshRawReportBean": "com.thingclips.smart.interior.device.confusebean.MQ_29_MeshRawReportBean",
|
830
|
+
"com.tuya.sdk.ble.core.GattCode": "com.thingclips.sdk.ble.core.GattCode",
|
831
|
+
"com.tuya.smart.ipc.camera.cloudtool.bean.CloudToolConstants": "com.thingclips.smart.ipc.camera.cloudtool.bean.CloudToolConstants",
|
832
|
+
"com.tuya.smart.android.blemesh.callback.ILocalQueryGroupDevCallback": "com.thingclips.smart.android.blemesh.callback.ILocalQueryGroupDevCallback",
|
833
|
+
"com.tuya.sdk.core.PluginManager": "com.thingclips.sdk.core.PluginManager",
|
834
|
+
"com.tuya.smart.sdk.bean.push.PushStatusBean": "com.thingclips.smart.sdk.bean.push.PushStatusBean",
|
835
|
+
"com.tuya.sdk.device.OTACode": "com.thingclips.sdk.device.OTACode",
|
836
|
+
"com.tuya.smart.interior.hardware.ITuyaHardwareQueryManager": "com.thingclips.smart.interior.hardware.IThingHardwareQueryManager",
|
837
|
+
"com.tuya.smart.camera.ipccamerasdk.p2p.ICameraP2P": "com.thingclips.smart.camera.ipccamerasdk.p2p.ICameraP2P",
|
838
|
+
"com.tuya.smart.sdk.bean.BlueMeshWifiStatusBean": "com.thingclips.smart.sdk.bean.BlueMeshWifiStatusBean",
|
839
|
+
"com.tuya.sdk.ble.core.protocol.entity.ConnectOpt": "com.thingclips.sdk.ble.core.protocol.entity.ConnectOpt",
|
840
|
+
"com.tuya.sdk.ble.core.protocol.api.IP4SuperSecurityAction": "com.thingclips.sdk.ble.core.protocol.api.IP4SuperSecurityAction",
|
841
|
+
"com.tuya.smart.android.blemesh.builder.MeshLocalGroupBuilder": "com.thingclips.smart.android.blemesh.builder.MeshLocalGroupBuilder",
|
842
|
+
"com.tuya.smart.interior.mqtt.MqttMessageRespParseListener": "com.thingclips.smart.interior.mqtt.MqttMessageRespParseListener",
|
843
|
+
"com.tuya.smart.sdk.bean.cache.IGroupProperty": "com.thingclips.smart.sdk.bean.cache.IGroupProperty",
|
844
|
+
"com.tuya.smart.ipc.camera.cloudtool.CloudToolApp": "com.thingclips.smart.ipc.camera.cloudtool.CloudToolApp",
|
845
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.ExecuteCaseBean": "com.thingclips.smart.ipc.camera.autotesting.bean.ExecuteCaseBean",
|
846
|
+
"com.tuya.smart.android.camera.sdk.callback.ITuyaIPCPTZListener": "com.thingclips.smart.android.camera.sdk.callback.IThingIPCPTZListener",
|
847
|
+
"com.tuya.smart.sdk.api.ISmartUpdateListener": "com.thingclips.smart.sdk.api.ISmartUpdateListener",
|
848
|
+
"com.tuya.smart.sdk.bean.ProductBean": "com.thingclips.smart.sdk.bean.ProductBean",
|
849
|
+
"com.tuya.smart.sdk.bean.PauseStateData": "com.thingclips.smart.sdk.bean.PauseStateData",
|
850
|
+
"com.tuya.smart.android.device.bean.DateSchemaBean": "com.thingclips.smart.android.device.bean.DateSchemaBean",
|
851
|
+
"com.tuya.smart.interior.device.confusebean.MQ_54_MeshRelationUpdateBean": "com.thingclips.smart.interior.device.confusebean.MQ_54_MeshRelationUpdateBean",
|
852
|
+
"com.tuya.smart.android.camera.sdk.constant.TuyaIPCConstant": "com.thingclips.smart.android.camera.sdk.constant.ThingIPCConstant",
|
853
|
+
"com.tuya.smart.android.device.api.IGetDataPointStatCallback": "com.thingclips.smart.android.device.api.IGetDataPointStatCallback",
|
854
|
+
"com.tuya.sdk.device.enums.RomUpdateEnum": "com.thingclips.sdk.device.enums.RomUpdateEnum",
|
855
|
+
"com.tuya.sdk.util.OptimusUtil": "com.thingclips.sdk.util.OptimusUtil",
|
856
|
+
"com.tuya.smart.android.blemesh.event.MeshRawReportEvent": "com.thingclips.smart.android.blemesh.event.MeshRawReportEvent",
|
857
|
+
"com.tuya.smart.android.ble.api.IGetWeather": "com.thingclips.smart.android.ble.api.IGetWeather",
|
858
|
+
"com.tuya.smart.sdk.api.ITuyaDirectActivator": "com.thingclips.smart.sdk.api.IThingDirectActivator",
|
859
|
+
"com.tuya.sdk.eventbus.NoSubscriberEvent": "com.thingclips.sdk.eventbus.NoSubscriberEvent",
|
860
|
+
"com.tuya.smart.scene.api.ISceneService": "com.thingclips.smart.scene.api.ISceneService",
|
861
|
+
"com.tuya.smart.home.sdk.callback.IIGetHomeWetherSketchCallBack": "com.thingclips.smart.home.sdk.callback.IIGetHomeWetherSketchCallBack",
|
862
|
+
"com.tuya.smart.interior.device.confusebean.MQ_4_MeshDpUpdateBean": "com.thingclips.smart.interior.device.confusebean.MQ_4_MeshDpUpdateBean",
|
863
|
+
"com.tuya.smart.sdk.api.wifibackup.api.bean.SwitchWifiResultBean": "com.thingclips.smart.sdk.api.wifibackup.api.bean.SwitchWifiResultBean",
|
864
|
+
"com.tuya.smart.android.ble.api.ITuyaBleConfigListener": "com.thingclips.smart.android.ble.api.IThingBleConfigListener",
|
865
|
+
"com.tuya.smart.android.base.database.StorageHelper": "com.thingclips.smart.android.base.database.StorageHelper",
|
866
|
+
"com.tuya.smart.sdk.api.ITuyaMatterActivatorCallback": "com.thingclips.smart.sdk.api.IThingMatterActivatorCallback",
|
867
|
+
"com.tuya.smart.android.config.api.ITuyaGetBaseConfig": "com.thingclips.smart.android.config.api.IThingGetBaseConfig",
|
868
|
+
"com.tuya.smart.android.user.api.IGetQRCodeTokenCallback": "com.thingclips.smart.android.user.api.IGetQRCodeTokenCallback",
|
869
|
+
"com.tuya.smart.interior.device.confusebean.Protocol_16_Bean": "com.thingclips.smart.interior.device.confusebean.Protocol_16_Bean",
|
870
|
+
"com.tuya.smart.home.sdk.bean.DeviceLogBean": "com.thingclips.smart.home.sdk.bean.DeviceLogBean",
|
871
|
+
"com.tuya.smart.camera.middleware.service.TuyaIPCCount": "com.thingclips.smart.camera.middleware.service.ThingIPCCount",
|
872
|
+
"com.tuya.smart.android.base.broadcast.NetworkBroadcastReceiver": "com.thingclips.smart.android.base.broadcast.NetworkBroadcastReceiver",
|
873
|
+
"com.tuya.smart.sdk.bean.CloudZigbeeGroupCreateBean": "com.thingclips.smart.sdk.bean.CloudZigbeeGroupCreateBean",
|
874
|
+
"com.tuya.smart.interior.device.confusebean.MQ_401_SmartEnableUpdate": "com.thingclips.smart.interior.device.confusebean.MQ_401_SmartEnableUpdate",
|
875
|
+
"com.tuya.smart.ipc.camera.autotesting.muitltype.ItemViewDelegate": "com.thingclips.smart.ipc.camera.autotesting.muitltype.ItemViewDelegate",
|
876
|
+
"com.tuya.smart.home.sdk.bean.DeviceShareBean": "com.thingclips.smart.home.sdk.bean.DeviceShareBean",
|
877
|
+
"com.tuya.smart.interior.hardware.TuyaLocalNormalControlBean": "com.thingclips.smart.interior.hardware.ThingLocalNormalControlBean",
|
878
|
+
"com.tuya.sdk.ble.core.ability.response.BleConnectStatusResponse": "com.thingclips.sdk.ble.core.ability.response.BleConnectStatusResponse",
|
879
|
+
"com.tuya.smart.android.base.BaseConfig": "com.thingclips.smart.android.base.BaseConfig",
|
880
|
+
"com.tuya.smart.ipc.camera.autotesting.muitltype.Linker": "com.thingclips.smart.ipc.camera.autotesting.muitltype.Linker",
|
881
|
+
"com.tuya.sdk.ble.core.ability.model.BleGattProfileData": "com.thingclips.sdk.ble.core.ability.model.BleGattProfileData",
|
882
|
+
"com.tuya.smart.camera.ipccamerasdk.monitor.Monitor": "com.thingclips.smart.camera.ipccamerasdk.monitor.Monitor",
|
883
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.IAutoTestNotifyEvent": "com.thingclips.smart.ipc.camera.autotesting.utils.IAutoTestNotifyEvent",
|
884
|
+
"com.tuya.smart.sdk.enums.ActivatorModelEnum": "com.thingclips.smart.sdk.enums.ActivatorModelEnum",
|
885
|
+
"com.tuya.smart.interior.event.GroupDpsUpdateEventModel": "com.thingclips.smart.interior.event.GroupDpsUpdateEventModel",
|
886
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.rule.TimerRule": "com.thingclips.smart.home.sdk.bean.scene.condition.rule.TimerRule",
|
887
|
+
"com.tuya.smart.android.user.api.IRegisterCallback": "com.thingclips.smart.android.user.api.IRegisterCallback",
|
888
|
+
"com.tuya.smart.interior.device.confusebean.MQ_30_MeshBatchReportBean": "com.thingclips.smart.interior.device.confusebean.MQ_30_MeshBatchReportBean",
|
889
|
+
"com.tuya.smart.android.blemesh.event.MeshDpUpdateEventModel": "com.thingclips.smart.android.blemesh.event.MeshDpUpdateEventModel",
|
890
|
+
"com.tuya.smart.interior.hardware.ITuyaRouterConfigListener": "com.thingclips.smart.interior.hardware.IThingRouterConfigListener",
|
891
|
+
"com.tuya.smart.home.sdk.bean.scene.SceneIdBean": "com.thingclips.smart.home.sdk.bean.scene.SceneIdBean",
|
892
|
+
"com.tuya.smart.android.ble.api.DataCustom2ChannelListener": "com.thingclips.smart.android.ble.api.DataCustom2ChannelListener",
|
893
|
+
"com.tuya.smart.interior.hardware.ILogEventListener": "com.thingclips.smart.interior.hardware.ILogEventListener",
|
894
|
+
"com.tuya.smart.home.sdk.anntation.HomeStatus": "com.thingclips.smart.home.sdk.anntation.HomeStatus",
|
895
|
+
"com.tuya.smart.interior.device.ITuyaGroupCache": "com.thingclips.smart.interior.device.IThingGroupCache",
|
896
|
+
"com.tuya.sdk.ble.core.protocol.api.OnBleRetReceiveListener": "com.thingclips.sdk.ble.core.protocol.api.OnBleRetReceiveListener",
|
897
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCDoorBellMsgIntercept": "com.thingclips.smart.android.camera.sdk.api.IThingIPCDoorBellMsgIntercept",
|
898
|
+
"com.tuya.smart.camera.chaos.middleware.StateServiceUtil": "com.thingclips.smart.camera.chaos.middleware.StateServiceUtil",
|
899
|
+
"com.tuya.smart.android.ble.api.OnThirdConnectListener": "com.thingclips.smart.android.ble.api.OnThirdConnectListener",
|
900
|
+
"com.tuya.smart.sdk.api.IMatterConnectedCallback": "com.thingclips.smart.sdk.api.IMatterConnectedCallback",
|
901
|
+
"com.tuya.smart.sdk.bean.cache.IBlueMeshProperty": "com.thingclips.smart.sdk.bean.cache.IBlueMeshProperty",
|
902
|
+
"com.tuya.smart.sdk.api.IGetSubDevListCallback": "com.thingclips.smart.sdk.api.IGetSubDevListCallback",
|
903
|
+
"com.tuya.smart.sdk.api.bluemesh.ITuyaRoomManager": "com.thingclips.smart.sdk.api.bluemesh.IThingRoomManager",
|
904
|
+
"com.tuya.smart.sdk.bean.SubDeviceDpEvent": "com.thingclips.smart.sdk.bean.SubDeviceDpEvent",
|
905
|
+
"com.tuya.smart.android.ble.api.audio.LEAudioAlarmClockRequest": "com.thingclips.smart.android.ble.api.audio.LEAudioAlarmClockRequest",
|
906
|
+
"com.tuya.smart.android.ble.api.TuyaBleScanResponse": "com.thingclips.smart.android.ble.api.ThingBleScanResponse",
|
907
|
+
"com.tuya.smart.android.user.api.IBooleanCallback": "com.thingclips.smart.android.user.api.IBooleanCallback",
|
908
|
+
"com.tuya.smart.android.ble.api.audio.AudioNoramlResult": "com.thingclips.smart.android.ble.api.audio.AudioNoramlResult",
|
909
|
+
"com.tuya.sdk.ble.core.protocol.entity.ActivatorResultParam": "com.thingclips.sdk.ble.core.protocol.entity.ActivatorResultParam",
|
910
|
+
"com.tuya.smart.bluet.api.ITuyaBleConnectService": "com.thingclips.smart.bluet.api.IThingBleConnectService",
|
911
|
+
"com.tuya.smart.sdk.bean.message.MessageBean": "com.thingclips.smart.sdk.bean.message.MessageBean",
|
912
|
+
"com.tuya.smart.android.sweeper.ITuyaCloudConfigCallback": "com.thingclips.smart.android.sweeper.IThingCloudConfigCallback",
|
913
|
+
"com.tuya.smart.interior.device.ITuyaDeviceCommunicationListener": "com.thingclips.smart.interior.device.IThingDeviceCommunicationListener",
|
914
|
+
"com.tuya.smart.sdk.bean.ShareIdBean": "com.thingclips.smart.sdk.bean.ShareIdBean",
|
915
|
+
"com.tuya.smart.android.ble.api.BleControllerUpdateBean": "com.thingclips.smart.android.ble.api.BleControllerUpdateBean",
|
916
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.StabilityBean": "com.thingclips.smart.ipc.camera.autotesting.bean.StabilityBean",
|
917
|
+
"com.tuya.smart.android.common.utils.HaffmanTree": "com.thingclips.smart.android.common.utils.HaffmanTree",
|
918
|
+
"com.tuya.sdk.ble.core.ability.response.BluetoothStateChangedReponse": "com.thingclips.sdk.ble.core.ability.response.BluetoothStateChangedReponse",
|
919
|
+
"com.tuya.smart.android.push.bean.SecurityAlermBean": "com.thingclips.smart.android.push.bean.SecurityAlermBean",
|
920
|
+
"com.tuya.smart.sdk.api.ITuyaSearchDeviceListener": "com.thingclips.smart.sdk.api.IThingSearchDeviceListener",
|
921
|
+
"com.tuya.smart.sdk.api.wifibackup.api.ITuyaWifiSwitch": "com.thingclips.smart.sdk.api.wifibackup.api.IThingWifiSwitch",
|
922
|
+
"com.tuya.smart.ipc.camera.autotesting.business.PlatformBusiness": "com.thingclips.smart.ipc.camera.autotesting.business.PlatformBusiness",
|
923
|
+
"com.tuya.smart.interior.api.ITuyaHardwarePlugin": "com.thingclips.smart.interior.api.IThingHardwarePlugin",
|
924
|
+
"com.tuya.smart.sdk.api.ITuyaDeviceListManager": "com.thingclips.smart.sdk.api.IThingDeviceListManager",
|
925
|
+
"com.tuya.smart.home.sdk.bean.scene.FunctionDataPoint": "com.thingclips.smart.home.sdk.bean.scene.FunctionDataPoint",
|
926
|
+
"com.tuya.smart.ipc.camera.autotesting.cache.StorageUtils": "com.thingclips.smart.ipc.camera.autotesting.cache.StorageUtils",
|
927
|
+
"com.tuya.smart.android.sweeper.ITuyaByteDataListener": "com.thingclips.smart.android.sweeper.IThingByteDataListener",
|
928
|
+
"com.tuya.smart.camera.ipccamerasdk.bean.ConfigCameraBean": "com.thingclips.smart.camera.ipccamerasdk.bean.ConfigCameraBean",
|
929
|
+
"com.tuya.smart.android.blemesh.bean.MeshDeviceOperationType": "com.thingclips.smart.android.blemesh.bean.MeshDeviceOperationType",
|
930
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.Time": "com.thingclips.smart.ipc.camera.autotesting.bean.Time",
|
931
|
+
"com.tuya.smart.ipc.camera.cloudtool.extension.StringExtensionKt": "com.thingclips.smart.ipc.camera.cloudtool.extension.StringExtensionKt",
|
932
|
+
"com.tuya.smart.sdk.api.ITuyaActivator": "com.thingclips.smart.sdk.api.IThingActivator",
|
933
|
+
"com.tuya.smart.android.ble.api.OnBleMultiModeDevStatusListener": "com.thingclips.smart.android.ble.api.OnBleMultiModeDevStatusListener",
|
934
|
+
"com.tuya.smart.sdk.api.ITuyaDeviceBizPropBeanListManager": "com.thingclips.smart.sdk.api.IThingDeviceBizPropBeanListManager",
|
935
|
+
"com.tuya.sdk.matter.bean.MatterNocSignBean": "com.thingclips.sdk.matter.bean.MatterNocSignBean",
|
936
|
+
"com.tuya.sdk.ble.core.protocol.api.OnBleDpsReceiveListener": "com.thingclips.sdk.ble.core.protocol.api.OnBleDpsReceiveListener",
|
937
|
+
"com.tuya.smart.android.user.bean.QRDeviceInfoBean": "com.thingclips.smart.android.user.bean.QRDeviceInfoBean",
|
938
|
+
"com.tuya.smart.android.common.utils.NetworkUtil": "com.thingclips.smart.android.common.utils.NetworkUtil",
|
939
|
+
"com.tuya.smart.android.blemesh.builder.TuyaBlueMeshOtaBuilder": "com.thingclips.smart.android.blemesh.builder.ThingBlueMeshOtaBuilder",
|
940
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.ViewTypeKt": "com.thingclips.smart.ipc.camera.autotesting.utils.ViewTypeKt",
|
941
|
+
"com.tuya.smart.android.device.utils.WiFiUtil": "com.thingclips.smart.android.device.utils.WiFiUtil",
|
942
|
+
"com.tuya.sdk.device.bean.RomUpdateBean": "com.thingclips.sdk.device.bean.RomUpdateBean",
|
943
|
+
"com.tuya.smart.android.ble.ITuyaBeaconManager": "com.thingclips.smart.android.ble.IThingBeaconManager",
|
944
|
+
"com.tuya.smart.android.blemesh.api.MeshConnectStatusListener": "com.thingclips.smart.android.blemesh.api.MeshConnectStatusListener",
|
945
|
+
"com.tuya.smart.home.sdk.api.config.IGwConfigListener": "com.thingclips.smart.home.sdk.api.config.IGwConfigListener",
|
946
|
+
"com.tuya.smart.android.ble.api.audio.AudioTokenBean": "com.thingclips.smart.android.ble.api.audio.AudioTokenBean",
|
947
|
+
"com.tuya.smart.android.ble.ITuyaBleOperator": "com.thingclips.smart.android.ble.IThingBleOperator",
|
948
|
+
"com.tuya.smart.android.user.api.IThirdBindCallback": "com.thingclips.smart.android.user.api.IThirdBindCallback",
|
949
|
+
"com.tuya.smart.android.user.bean.User": "com.thingclips.smart.android.user.bean.User",
|
950
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCExtPlugin": "com.thingclips.smart.android.camera.sdk.api.IThingIPCExtPlugin",
|
951
|
+
"com.tuya.smart.android.sweeper.ITuyaDelHistoryCallback": "com.thingclips.smart.android.sweeper.IThingDelHistoryCallback",
|
952
|
+
"com.tuya.sdk.ble.core.ability.response.BleTBaseResponse": "com.thingclips.sdk.ble.core.ability.response.BleTBaseResponse",
|
953
|
+
"com.tuya.smart.android.camera.timeline.TimeBean": "com.thingclips.smart.android.camera.timeline.TimeBean",
|
954
|
+
"com.tuya.smart.camera.middleware.p2p.ITuyaSmartNvrP2P": "com.thingclips.smart.camera.middleware.p2p.IThingSmartNvrP2P",
|
955
|
+
"com.tuya.smart.android.blemesh.bean.SearchDeviceBean": "com.thingclips.smart.android.blemesh.bean.SearchDeviceBean",
|
956
|
+
"com.tuya.sdk.ble.core.protocol.api.ProtocolRequestDelegate": "com.thingclips.sdk.ble.core.protocol.api.ProtocolRequestDelegate",
|
957
|
+
"com.tuya.smart.android.ble.api.DataCustomChannelListener": "com.thingclips.smart.android.ble.api.DataCustomChannelListener",
|
958
|
+
"com.tuya.smart.sdk.api.IExtDevListener": "com.thingclips.smart.sdk.api.IExtDevListener",
|
959
|
+
"com.tuya.smart.sdk.api.bluemesh.ISigMeshCreateCallback": "com.thingclips.smart.sdk.api.bluemesh.ISigMeshCreateCallback",
|
960
|
+
"com.tuya.smart.sdk.api.ITuyaZigbeeGroup": "com.thingclips.smart.sdk.api.IThingZigbeeGroup",
|
961
|
+
"com.tuya.smart.camera.camerasdk.bean.TuyaIOTCameraInfo": "com.thingclips.smart.camera.camerasdk.bean.ThingIOTCameraInfo",
|
962
|
+
"com.tuya.smart.sdk.bean.BlueMeshRoomBean": "com.thingclips.smart.sdk.bean.BlueMeshRoomBean",
|
963
|
+
"com.tuya.smart.sdk.bean.GroupDeviceBean": "com.thingclips.smart.sdk.bean.GroupDeviceBean",
|
964
|
+
"com.tuya.smart.sdk.bean.DpsInfoBean": "com.thingclips.smart.sdk.bean.DpsInfoBean",
|
965
|
+
"com.tuya.smart.home.sdk.builder.GroupCreateBuilder": "com.thingclips.smart.home.sdk.builder.GroupCreateBuilder",
|
966
|
+
"com.tuya.smart.sdk.api.ITuyaLinkDeviceListener": "com.thingclips.smart.sdk.api.IThingLinkDeviceListener",
|
967
|
+
"com.tuya.smart.android.blemesh.IMeshLocalController": "com.thingclips.smart.android.blemesh.IMeshLocalController",
|
968
|
+
"com.tuya.smart.sdk.bean.TuyaSmartThingServiceModel": "com.thingclips.smart.sdk.bean.ThingSmartThingServiceModel",
|
969
|
+
"com.tuya.smart.sdk.api.ITuyaUser": "com.thingclips.smart.sdk.api.IThingUser",
|
970
|
+
"com.tuya.smart.android.blemesh.bean.BLEUpgradeInfoBean": "com.thingclips.smart.android.blemesh.bean.BLEUpgradeInfoBean",
|
971
|
+
"com.tuya.smart.android.device.enums.DataTypeEnum": "com.thingclips.smart.android.device.enums.DataTypeEnum",
|
972
|
+
"com.tuya.smart.android.camera.timeline.TimelineUnitMode": "com.thingclips.smart.android.camera.timeline.TimelineUnitMode",
|
973
|
+
"com.tuya.smart.android.blemesh.api.MeshUpgradeListener": "com.thingclips.smart.android.blemesh.api.MeshUpgradeListener",
|
974
|
+
"com.tuya.sdk.ble.core.ability.model.BleGattDescriptorData": "com.thingclips.sdk.ble.core.ability.model.BleGattDescriptorData",
|
975
|
+
"com.tuya.smart.interior.hardware.IDeviceHardwareFindListener": "com.thingclips.smart.interior.hardware.IDeviceHardwareFindListener",
|
976
|
+
"com.tuya.smart.sdk.api.IMatterDeviceNetworkCallback": "com.thingclips.smart.sdk.api.IMatterDeviceNetworkCallback",
|
977
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeStatusListener": "com.thingclips.smart.home.sdk.api.IThingHomeStatusListener",
|
978
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.impl.DataBox": "com.thingclips.smart.ipc.camera.autotesting.excute.impl.DataBox",
|
979
|
+
"com.tuya.smart.ipc.camera.autotesting.muitltype.MutableTypes": "com.thingclips.smart.ipc.camera.autotesting.muitltype.MutableTypes",
|
980
|
+
"com.tuya.smart.ipc.camera.autotesting.cache.AutoTestcaseProgramsManagement": "com.thingclips.smart.ipc.camera.autotesting.cache.AutoTestcaseProgramsManagement",
|
981
|
+
"com.tuya.smart.android.device.bean.StructPropertyBean": "com.thingclips.smart.android.device.bean.StructPropertyBean",
|
982
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCMsg": "com.thingclips.smart.android.camera.sdk.api.IThingIPCMsg",
|
983
|
+
"com.tuya.smart.interior.device.confusebean.Protocol_33_Bean": "com.thingclips.smart.interior.device.confusebean.Protocol_33_Bean",
|
984
|
+
"com.tuya.smart.ipc.camera.autotesting.adapter.AutoTestingProgramListViewPagerAdapter": "com.thingclips.smart.ipc.camera.autotesting.adapter.AutoTestingProgramListViewPagerAdapter",
|
985
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeManager": "com.thingclips.smart.home.sdk.api.IThingHomeManager",
|
986
|
+
"com.tuya.smart.sdk.bean.BlueMeshSubDevBean": "com.thingclips.smart.sdk.bean.BlueMeshSubDevBean",
|
987
|
+
"com.tuya.smart.android.ble.bean.ThirdConstant": "com.thingclips.smart.android.ble.bean.ThirdConstant",
|
988
|
+
"com.tuya.smart.interior.device.bean.SubDeviceCorrectModel": "com.thingclips.smart.interior.device.bean.SubDeviceCorrectModel",
|
989
|
+
"com.tuya.sdk.eventbus.util.AsyncExecutor": "com.thingclips.sdk.eventbus.util.AsyncExecutor",
|
990
|
+
"com.tuya.smart.android.base.ApiParams": "com.thingclips.smart.android.base.ApiParams",
|
991
|
+
"com.tuya.smart.interior.event.MeshRelationUpdateEvent": "com.thingclips.smart.interior.event.MeshRelationUpdateEvent",
|
992
|
+
"com.tuya.smart.home.sdk.bean.scene.SceneBean": "com.thingclips.smart.home.sdk.bean.scene.SceneBean",
|
993
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.TopMarginDecoration": "com.thingclips.smart.ipc.camera.autotesting.utils.TopMarginDecoration",
|
994
|
+
"com.tuya.smart.interior.device.ITuyaDpsUpdateManager": "com.thingclips.smart.interior.device.IThingDpsUpdateManager",
|
995
|
+
"com.tuya.smart.android.camera.sdk.callback.DefaultImplDeviceChangedListener": "com.thingclips.smart.android.camera.sdk.callback.DefaultImplDeviceChangedListener",
|
996
|
+
"com.tuya.smart.interior.event.DevUpdateEvent": "com.thingclips.smart.interior.event.DevUpdateEvent",
|
997
|
+
"com.tuya.smart.android.blemesh.ISigMeshControl": "com.thingclips.smart.android.blemesh.ISigMeshControl",
|
998
|
+
"com.tuya.smart.android.blemesh.api.BusinessResultListener": "com.thingclips.smart.android.blemesh.api.BusinessResultListener",
|
999
|
+
"com.tuya.smart.android.blemesh.event.MeshBatchReportEvent": "com.thingclips.smart.android.blemesh.event.MeshBatchReportEvent",
|
1000
|
+
"com.tuya.smart.android.common.task.SafeAsyncTask": "com.thingclips.smart.android.common.task.SafeAsyncTask",
|
1001
|
+
"com.tuya.smart.ipc.camera.autotesting.cache.MemoryCache": "com.thingclips.smart.ipc.camera.autotesting.cache.MemoryCache",
|
1002
|
+
"com.tuya.smart.home.sdk.anntation.MemberStatus": "com.thingclips.smart.home.sdk.anntation.MemberStatus",
|
1003
|
+
"com.tuya.smart.android.ble.bean.ThirdConnectErrorBean": "com.thingclips.smart.android.ble.bean.ThirdConnectErrorBean",
|
1004
|
+
"com.tuya.smart.home.sdk.bean.SharedUserInfoBean": "com.thingclips.smart.home.sdk.bean.SharedUserInfoBean",
|
1005
|
+
"com.tuya.smart.interior.hardware.ITuyaWiredConfig": "com.thingclips.smart.interior.hardware.IThingWiredConfig",
|
1006
|
+
"com.tuya.smart.android.ble.api.BleConnectStatusListener": "com.thingclips.smart.android.ble.api.BleConnectStatusListener",
|
1007
|
+
"com.tuya.smart.home.sdk.bean.MessageHasNew": "com.thingclips.smart.home.sdk.bean.MessageHasNew",
|
1008
|
+
"com.tuya.smart.android.blemesh.event.MqttConnectStatusEventModel": "com.thingclips.smart.android.blemesh.event.MqttConnectStatusEventModel",
|
1009
|
+
"com.tuya.smart.sdk.api.ITuyaSmartRequest": "com.thingclips.smart.sdk.api.IThingSmartRequest",
|
1010
|
+
"com.tuya.smart.interior.api.ITuyaGeoFenceOperatePlugin": "com.thingclips.smart.interior.api.IThingGeoFenceOperatePlugin",
|
1011
|
+
"com.tuya.smart.android.ble.api.audio.TuyaLEAudioDataArgs": "com.thingclips.smart.android.ble.api.audio.ThingLEAudioDataArgs",
|
1012
|
+
"com.tuya.smart.home.sdk.api.config.IApConnectListener": "com.thingclips.smart.home.sdk.api.config.IApConnectListener",
|
1013
|
+
"com.tuya.sdk.ble.core.bean.BLEDpResponseBean": "com.thingclips.sdk.ble.core.bean.BLEDpResponseBean",
|
1014
|
+
"com.tuya.smart.sdk.bean.feedback.FeedbackTypeRespBean": "com.thingclips.smart.sdk.bean.feedback.FeedbackTypeRespBean",
|
1015
|
+
"com.tuya.smart.home.sdk.bean.scene.ActionBean": "com.thingclips.smart.home.sdk.bean.scene.ActionBean",
|
1016
|
+
"com.tuya.sdk.ble.core.bean.DpsCombine": "com.thingclips.sdk.ble.core.bean.DpsCombine",
|
1017
|
+
"com.tuya.smart.interior.device.confusebean.MQ_9_DeviceUpgradeStatusBean": "com.thingclips.smart.interior.device.confusebean.MQ_9_DeviceUpgradeStatusBean",
|
1018
|
+
"com.tuya.smart.android.hardware.IUDPMonitorAidlInterface": "com.thingclips.smart.android.hardware.IUDPMonitorAidlInterface",
|
1019
|
+
"com.tuya.smart.tuyaapicheckannotation.TuyaHide": "com.thingclips.smart.thingapicheckannotation.ThingHide",
|
1020
|
+
"com.tuya.sdk.ble.core.protocol.entity.DevRequest": "com.thingclips.sdk.ble.core.protocol.entity.DevRequest",
|
1021
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.property.ValueProperty": "com.thingclips.smart.home.sdk.bean.scene.condition.property.ValueProperty",
|
1022
|
+
"com.tuya.smart.home.sdk.bean.ShareSentUserDetailBean": "com.thingclips.smart.home.sdk.bean.ShareSentUserDetailBean",
|
1023
|
+
"com.tuya.smart.android.ble.api.OnBleUpgradeListener": "com.thingclips.smart.android.ble.api.OnBleUpgradeListener",
|
1024
|
+
"com.tuya.sdk.ble.core.ability.response.BleConnectAbilityResponse": "com.thingclips.sdk.ble.core.ability.response.BleConnectAbilityResponse",
|
1025
|
+
"com.tuya.smart.bluet.api.IBeaconFilterManager": "com.thingclips.smart.bluet.api.IBeaconFilterManager",
|
1026
|
+
"com.tuya.smart.cache.api.ICacheKey": "com.thingclips.smart.cache.api.ICacheKey",
|
1027
|
+
"com.tuya.smart.sdk.api.IGetTimerWithTaskCallback": "com.thingclips.smart.sdk.api.IGetTimerWithTaskCallback",
|
1028
|
+
"com.tuya.sdk.device.bean.OtaUpgradeTriggerEventBean": "com.thingclips.sdk.device.bean.OtaUpgradeTriggerEventBean",
|
1029
|
+
"com.tuya.smart.android.device.bean.CommonSpecParamsBean": "com.thingclips.smart.android.device.bean.CommonSpecParamsBean",
|
1030
|
+
"com.tuya.smart.home.sdk.bean.MemberBean": "com.thingclips.smart.home.sdk.bean.MemberBean",
|
1031
|
+
"com.tuya.sdk.eventbus.ThreadMode": "com.thingclips.sdk.eventbus.ThreadMode",
|
1032
|
+
"com.tuya.sdk.ble.core.protocol.entity.AuthKeyParam": "com.thingclips.sdk.ble.core.protocol.entity.AuthKeyParam",
|
1033
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeDeviceStatusListener": "com.thingclips.smart.home.sdk.api.IThingHomeDeviceStatusListener",
|
1034
|
+
"com.tuya.smart.android.camera.sdk.annotation.BuildForOpen": "com.thingclips.smart.android.camera.sdk.annotation.BuildForOpen",
|
1035
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.TaskResult": "com.thingclips.smart.ipc.camera.autotesting.bean.TaskResult",
|
1036
|
+
"com.tuya.smart.home.sdk.builder.APSLActivatorBuilder": "com.thingclips.smart.home.sdk.builder.APSLActivatorBuilder",
|
1037
|
+
"com.tuya.sdk.eventbus.Subscription": "com.thingclips.sdk.eventbus.Subscription",
|
1038
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.ConditionListBean": "com.thingclips.smart.home.sdk.bean.scene.condition.ConditionListBean",
|
1039
|
+
"com.tuya.smart.home.sdk.bean.ActiveDmDeviceBean": "com.thingclips.smart.home.sdk.bean.ActiveDmDeviceBean",
|
1040
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.rule.Arithmetic": "com.thingclips.smart.home.sdk.bean.scene.condition.rule.Arithmetic",
|
1041
|
+
"com.tuya.smart.sdk.api.IEventCenter": "com.thingclips.smart.sdk.api.IEventCenter",
|
1042
|
+
"com.tuya.smart.interior.api.IUserGeneralBusiness": "com.thingclips.smart.interior.api.IUserGeneralBusiness",
|
1043
|
+
"com.tuya.smart.ipc.camera.autotesting.activity.AutoCameraResultReportActivity": "com.thingclips.smart.ipc.camera.autotesting.activity.AutoCameraResultReportActivity",
|
1044
|
+
"com.tuya.smart.interior.config.bean.ActiveTokenBean": "com.thingclips.smart.interior.config.bean.ActiveTokenBean",
|
1045
|
+
"com.tuya.smart.sdk.api.ITuyaSmartBroadbandActivator": "com.thingclips.smart.sdk.api.IThingSmartBroadbandActivator",
|
1046
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeSceneManager": "com.thingclips.smart.home.sdk.api.IThingHomeSceneManager",
|
1047
|
+
"com.tuya.smart.android.common.utils.WiFiUtil": "com.thingclips.smart.android.common.utils.WiFiUtil",
|
1048
|
+
"com.tuya.sdk.device.enums.RomUpgradeStatusEnum": "com.thingclips.sdk.device.enums.RomUpgradeStatusEnum",
|
1049
|
+
"com.tuya.smart.android.device.bean.ArraySchemaBean": "com.thingclips.smart.android.device.bean.ArraySchemaBean",
|
1050
|
+
"com.tuya.sdk.device.event.TimerChangeResultModel": "com.thingclips.sdk.device.event.TimerChangeResultModel",
|
1051
|
+
"com.tuya.smart.android.blemesh.linkage.ILinkage": "com.thingclips.smart.android.blemesh.linkage.ILinkage",
|
1052
|
+
"com.tuya.smart.android.camera.api.bean.CameraPushDataBean": "com.thingclips.smart.android.camera.api.bean.CameraPushDataBean",
|
1053
|
+
"com.tuya.smart.android.device.api.IPropertyCallback": "com.thingclips.smart.android.device.api.IPropertyCallback",
|
1054
|
+
"com.tuya.smart.sdk.api.ITuyaDevEventListener": "com.thingclips.smart.sdk.api.IThingDevEventListener",
|
1055
|
+
"com.tuya.smart.android.hardware.service.GwBroadcastMonitorService": "com.thingclips.smart.android.hardware.service.GwBroadcastMonitorService",
|
1056
|
+
"com.tuya.smart.camera.utils.chaos.SDKSharePreferencesUtil": "com.thingclips.smart.camera.utils.chaos.SDKSharePreferencesUtil",
|
1057
|
+
"com.tuya.smart.interior.device.bean.CloudControlRawBean": "com.thingclips.smart.interior.device.bean.CloudControlRawBean",
|
1058
|
+
"com.tuya.smart.interior.device.confusebean.MQ_56_WarnMessageBean": "com.thingclips.smart.interior.device.confusebean.MQ_56_WarnMessageBean",
|
1059
|
+
"com.tuya.smart.android.blemesh.bean.MeshLinkageHash": "com.thingclips.smart.android.blemesh.bean.MeshLinkageHash",
|
1060
|
+
"com.tuya.sdk.ble.core.protocol.api.ActionOtaResponse": "com.thingclips.sdk.ble.core.protocol.api.ActionOtaResponse",
|
1061
|
+
"com.tuya.smart.home.sdk.bean.ProductRefBean": "com.thingclips.smart.home.sdk.bean.ProductRefBean",
|
1062
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.ApiCaseListBean": "com.thingclips.smart.ipc.camera.autotesting.bean.ApiCaseListBean",
|
1063
|
+
"com.tuya.smart.sdk.api.cache.ISmartCacheManager": "com.thingclips.smart.sdk.api.cache.ISmartCacheManager",
|
1064
|
+
"com.tuya.smart.sdk.enums.ActivatorAPStepCode": "com.thingclips.smart.sdk.enums.ActivatorAPStepCode",
|
1065
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.AbsConnectCallBack": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.AbsConnectCallBack",
|
1066
|
+
"com.tuya.sdk.ble.core.protocol.api.ActionResponse": "com.thingclips.sdk.ble.core.protocol.api.ActionResponse",
|
1067
|
+
"com.tuya.smart.ipc.camera.cloudtool.extension.CloudStatusBeanExtensionKt": "com.thingclips.smart.ipc.camera.cloudtool.extension.CloudStatusBeanExtensionKt",
|
1068
|
+
"com.tuya.smart.home.sdk.builder.TuyaGwSubDevActivatorBuilder": "com.thingclips.smart.home.sdk.builder.ThingGwSubDevActivatorBuilder",
|
1069
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.IRegistorIOTCListener": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.IRegistorIOTCListener",
|
1070
|
+
"com.tuya.sdk.device.event.ProductUpgradeEvent": "com.thingclips.sdk.device.event.ProductUpgradeEvent",
|
1071
|
+
"com.tuya.smart.home.sdk.api.ITuyaRoom": "com.thingclips.smart.home.sdk.api.IThingRoom",
|
1072
|
+
"com.tuya.smart.home.sdk.callback.ITuyaResultCallback": "com.thingclips.smart.home.sdk.callback.IThingResultCallback",
|
1073
|
+
"com.tuya.smart.sdk.api.bluemesh.IBlueMeshCreateCallback": "com.thingclips.smart.sdk.api.bluemesh.IBlueMeshCreateCallback",
|
1074
|
+
"com.tuya.smart.camera.middleware.p2p.TuyaSmartCameraP2P": "com.thingclips.smart.camera.middleware.p2p.ThingSmartCameraP2P",
|
1075
|
+
"com.tuya.smart.android.blemesh.api.IResultWithDataCallback": "com.thingclips.smart.android.blemesh.api.IResultWithDataCallback",
|
1076
|
+
"com.tuya.smart.android.blemesh.bean.MeshGroupOperationBean": "com.thingclips.smart.android.blemesh.bean.MeshGroupOperationBean",
|
1077
|
+
"com.tuya.smart.android.config.bean.ConfigErrorRespBean": "com.thingclips.smart.android.config.bean.ConfigErrorRespBean",
|
1078
|
+
"com.tuya.smart.scene.api.service.IActionService": "com.thingclips.smart.scene.api.service.IActionService",
|
1079
|
+
"com.tuya.smart.camera.ipccamerasdk.monitor.MonitorClickCallback": "com.thingclips.smart.camera.ipccamerasdk.monitor.MonitorClickCallback",
|
1080
|
+
"com.tuya.smart.android.ble.api.audio.TuyaLEAudioProvideArgs": "com.thingclips.smart.android.ble.api.audio.ThingLEAudioProvideArgs",
|
1081
|
+
"com.tuya.smart.device.bean.TuyaDevUpgradeStatusBean": "com.thingclips.smart.device.bean.ThingDevUpgradeStatusBean",
|
1082
|
+
"com.tuya.smart.interior.mqtt.MqttFlowRespParseListener": "com.thingclips.smart.interior.mqtt.MqttFlowRespParseListener",
|
1083
|
+
"com.tuya.smart.sdk.api.ITuyaOtaServicePlugin": "com.thingclips.smart.sdk.api.IThingOtaServicePlugin",
|
1084
|
+
"com.tuya.smart.home.sdk.bean.SpeechPhraseBean": "com.thingclips.smart.home.sdk.bean.SpeechPhraseBean",
|
1085
|
+
"com.tuya.smart.ipc.camera.autotesting.activity.AutoCameraTestCasesListActivity": "com.thingclips.smart.ipc.camera.autotesting.activity.AutoCameraTestCasesListActivity",
|
1086
|
+
"com.tuya.smart.android.ble.api.LeScanSetting": "com.thingclips.smart.android.ble.api.LeScanSetting",
|
1087
|
+
"com.tuya.smart.home.sdk.bean.scene.ActRespBean": "com.thingclips.smart.home.sdk.bean.scene.ActRespBean",
|
1088
|
+
"com.tuya.smart.android.ble.api.BluetoothBondStateBean": "com.thingclips.smart.android.ble.api.BluetoothBondStateBean",
|
1089
|
+
"com.tuya.smart.sdk.api.ITuyaMatterDeviceConnectManager": "com.thingclips.smart.sdk.api.IThingMatterDeviceConnectManager",
|
1090
|
+
"com.tuya.smart.home.sdk.bean.RoomBean": "com.thingclips.smart.home.sdk.bean.RoomBean",
|
1091
|
+
"com.tuya.smart.sdk.bean.GroupBean": "com.thingclips.smart.sdk.bean.GroupBean",
|
1092
|
+
"com.tuya.smart.home.sdk.api.ITuyaGwActivator": "com.thingclips.smart.home.sdk.api.IThingGwActivator",
|
1093
|
+
"com.tuya.sdk.eventbus.PendingPost": "com.thingclips.sdk.eventbus.PendingPost",
|
1094
|
+
"com.tuya.smart.android.ble.api.audio.AudioCommnonResponse": "com.thingclips.smart.android.ble.api.audio.AudioCommnonResponse",
|
1095
|
+
"com.tuya.smart.sdk.bean.RouterResponseConfig": "com.thingclips.smart.sdk.bean.RouterResponseConfig",
|
1096
|
+
"com.tuya.smart.sdk.api.ICreateGroupCallback": "com.thingclips.smart.sdk.api.ICreateGroupCallback",
|
1097
|
+
"com.tuya.smart.interior.device.ITuyaDeviceMessageManager": "com.thingclips.smart.interior.device.IThingDeviceMessageManager",
|
1098
|
+
"com.tuya.smart.android.common.utils.MD5Util": "com.thingclips.smart.android.common.utils.MD5Util",
|
1099
|
+
"com.tuya.smart.interior.api.ITuyaGeoFencePlugin": "com.thingclips.smart.interior.api.IThingGeoFencePlugin",
|
1100
|
+
"com.tuya.smart.interior.device.bean.DpsUpdateInfo": "com.thingclips.smart.interior.device.bean.DpsUpdateInfo",
|
1101
|
+
"com.tuya.smart.home.sdk.builder.TuyaDirectlyConnectedActivatorBuilder": "com.thingclips.smart.home.sdk.builder.ThingDirectlyConnectedActivatorBuilder",
|
1102
|
+
"com.tuya.smart.interior.device.confusebean.MQ_33_SubDevAdd": "com.thingclips.smart.interior.device.confusebean.MQ_33_SubDevAdd",
|
1103
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeRelationUpdateListener": "com.thingclips.smart.home.sdk.api.IThingHomeRelationUpdateListener",
|
1104
|
+
"com.tuya.smart.home.sdk.bean.SpeechGuideBean": "com.thingclips.smart.home.sdk.bean.SpeechGuideBean",
|
1105
|
+
"com.tuya.smart.interior.event.SubDeviceRelationUpdateEventModel": "com.thingclips.smart.interior.event.SubDeviceRelationUpdateEventModel",
|
1106
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.Data": "com.thingclips.smart.ipc.camera.autotesting.bean.Data",
|
1107
|
+
"com.tuya.smart.android.common.utils.AesGcmUtil": "com.thingclips.smart.android.common.utils.AesGcmUtil",
|
1108
|
+
"com.tuya.smart.sdk.api.ITemporaryCallBack": "com.thingclips.smart.sdk.api.ITemporaryCallBack",
|
1109
|
+
"com.tuya.smart.sdk.api.ITuyaSmartActivatorListener": "com.thingclips.smart.sdk.api.IThingSmartActivatorListener",
|
1110
|
+
"com.tuya.sdk.eventbus.BackgroundPoster": "com.thingclips.sdk.eventbus.BackgroundPoster",
|
1111
|
+
"com.tuya.smart.android.device.bean.DeviceDpInfoBean": "com.thingclips.smart.android.device.bean.DeviceDpInfoBean",
|
1112
|
+
"com.tuya.smart.android.device.builder.TuyaTimerBuilder": "com.thingclips.smart.android.device.builder.ThingTimerBuilder",
|
1113
|
+
"com.tuya.smart.android.hardware.bean.HgwBean": "com.thingclips.smart.android.hardware.bean.HgwBean",
|
1114
|
+
"com.tuya.smart.android.sweeper.ITuyaSweeper": "com.thingclips.smart.android.sweeper.IThingSweeper",
|
1115
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.ISpeakerEchoProcessor": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.ISpeakerEchoProcessor",
|
1116
|
+
"com.tuya.smart.android.device.CacheDelegate": "com.thingclips.smart.android.device.CacheDelegate",
|
1117
|
+
"com.tuya.smart.home.sdk.bean.DashBoardBean": "com.thingclips.smart.home.sdk.bean.DashBoardBean",
|
1118
|
+
"com.tuya.sdk.matter.api.IMatterNsdDiscoverListener": "com.thingclips.sdk.matter.api.IMatterNsdDiscoverListener",
|
1119
|
+
"com.tuya.smart.ipc.camera.cloudtool.extension.IntextensionKt": "com.thingclips.smart.ipc.camera.cloudtool.extension.IntextensionKt",
|
1120
|
+
"com.tuya.smart.camera.ipccamerasdk.utils.CameraConstant": "com.thingclips.smart.camera.ipccamerasdk.utils.CameraConstant",
|
1121
|
+
"com.tuya.smart.sdk.bean.MatterProductInfoBean": "com.thingclips.smart.sdk.bean.MatterProductInfoBean",
|
1122
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.UntouchSeekBar": "com.thingclips.smart.ipc.camera.autotesting.utils.UntouchSeekBar",
|
1123
|
+
"com.tuya.smart.home.sdk.api.IDevModel": "com.thingclips.smart.home.sdk.api.IDevModel",
|
1124
|
+
"com.tuya.smart.sdk.api.ITuyaBroadbandConfigListener": "com.thingclips.smart.sdk.api.IThingBroadbandConfigListener",
|
1125
|
+
"com.tuya.smart.sdk.api.ITuyaMatterDevice": "com.thingclips.smart.sdk.api.IThingMatterDevice",
|
1126
|
+
"com.tuya.smart.android.blemesh.event.MeshRawReportEventModel": "com.thingclips.smart.android.blemesh.event.MeshRawReportEventModel",
|
1127
|
+
"com.tuya.smart.ipc.camera.autotesting.db.DBUtils": "com.thingclips.smart.ipc.camera.autotesting.db.DBUtils",
|
1128
|
+
"com.tuya.smart.camera.middleware.p2p.ICameraConfig": "com.thingclips.smart.camera.middleware.p2p.ICameraConfig",
|
1129
|
+
"com.tuya.smart.ipc.camera.cloudtool.bean.CloudToolTimeRangeBean": "com.thingclips.smart.ipc.camera.cloudtool.bean.CloudToolTimeRangeBean",
|
1130
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCCore": "com.thingclips.smart.android.camera.sdk.api.IThingIPCCore",
|
1131
|
+
"com.tuya.smart.interior.hardware.IDevResponseWithoutDpDataListener": "com.thingclips.smart.interior.hardware.IDevResponseWithoutDpDataListener",
|
1132
|
+
"com.tuya.smart.android.common.utils.TuyaCache": "com.thingclips.smart.android.common.utils.ThingCache",
|
1133
|
+
"com.tuya.smart.android.ble.ITuyaThirdProtocolSupport": "com.thingclips.smart.android.ble.IThingThirdProtocolSupport",
|
1134
|
+
"com.tuya.sdk.ble.core.protocol.entity.PairParam": "com.thingclips.sdk.ble.core.protocol.entity.PairParam",
|
1135
|
+
"com.tuya.smart.android.hardware.bean.TlsOriginResponse": "com.thingclips.smart.android.hardware.bean.TlsOriginResponse",
|
1136
|
+
"com.tuya.smart.sdk.bean.feedback.FeedbackTypeBean": "com.thingclips.smart.sdk.bean.feedback.FeedbackTypeBean",
|
1137
|
+
"com.tuya.smart.interior.api.IUserCommonPlugin": "com.thingclips.smart.interior.api.IUserCommonPlugin",
|
1138
|
+
"com.tuya.smart.scene.api.ITuyaNewScenePlugin": "com.thingclips.smart.scene.api.IThingNewScenePlugin",
|
1139
|
+
"com.tuya.smart.android.camera.sdk.api.ICameraWrapperFactory": "com.thingclips.smart.android.camera.sdk.api.ICameraWrapperFactory",
|
1140
|
+
"com.tuya.smart.interior.hardware.builder.TuyaQueryInfoBuilder": "com.thingclips.smart.interior.hardware.builder.ThingQueryInfoBuilder",
|
1141
|
+
"com.tuya.smart.sdk.bean.DeviceNodeBean": "com.thingclips.smart.sdk.bean.DeviceNodeBean",
|
1142
|
+
"com.tuya.smart.android.ble.api.IGetCustomHomeWeather": "com.thingclips.smart.android.ble.api.IGetCustomHomeWeather",
|
1143
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.OperationDelegateCallBack": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.OperationDelegateCallBack",
|
1144
|
+
"com.tuya.smart.home.sdk.api.ITuyaLightningSearchListener": "com.thingclips.smart.home.sdk.api.IThingLightningSearchListener",
|
1145
|
+
"com.tuya.smart.home.sdk.builder.TuyaDirectlyDeviceActivatorBuilder": "com.thingclips.smart.home.sdk.builder.ThingDirectlyDeviceActivatorBuilder",
|
1146
|
+
"com.tuya.smart.interior.event.DeviceUpdateEvent": "com.thingclips.smart.interior.event.DeviceUpdateEvent",
|
1147
|
+
"com.tuya.smart.sdk.bean.ProductPanelInfoBean": "com.thingclips.smart.sdk.bean.ProductPanelInfoBean",
|
1148
|
+
"com.tuya.drawee.view.DecryptImageView": "com.thingclips.drawee.view.DecryptImageView",
|
1149
|
+
"com.tuya.smart.ipc.camera.autotesting.activity.AutoTestingLogActivity": "com.thingclips.smart.ipc.camera.autotesting.activity.AutoTestingLogActivity",
|
1150
|
+
"com.tuya.smart.sdk.bean.SpeechTTSBean": "com.thingclips.smart.sdk.bean.SpeechTTSBean",
|
1151
|
+
"com.tuya.smart.ipc.camera.cloudtool.activity.CloudToolImageVerifyActivity": "com.thingclips.smart.ipc.camera.cloudtool.activity.CloudToolImageVerifyActivity",
|
1152
|
+
"com.tuya.smart.ipc.messagecenter.bean.CameraMessageClassifyBean": "com.thingclips.smart.ipc.messagecenter.bean.CameraMessageClassifyBean",
|
1153
|
+
"com.tuya.smart.camera.ipccamerasdk.business.ICameraBusiness": "com.thingclips.smart.camera.ipccamerasdk.business.ICameraBusiness",
|
1154
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.ProgressCallBack": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.ProgressCallBack",
|
1155
|
+
"com.tuya.smart.android.hardware.ITransferAidlInterface": "com.thingclips.smart.android.hardware.ITransferAidlInterface",
|
1156
|
+
"com.tuya.smart.sdk.api.wifibackup.api.bean.BackupWifiResultBean": "com.thingclips.smart.sdk.api.wifibackup.api.bean.BackupWifiResultBean",
|
1157
|
+
"com.tuya.smart.android.user.api.IBaseUser": "com.thingclips.smart.android.user.api.IBaseUser",
|
1158
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.ShareUtils": "com.thingclips.smart.ipc.camera.autotesting.utils.ShareUtils",
|
1159
|
+
"com.tuya.smart.interior.event.ZigbeeSubDevDpUpdateEventModel": "com.thingclips.smart.interior.event.ZigbeeSubDevDpUpdateEventModel",
|
1160
|
+
"com.tuya.smart.ipc.camera.autotesting.data.IRepo": "com.thingclips.smart.ipc.camera.autotesting.data.IRepo",
|
1161
|
+
"com.tuya.sdk.ble.core.BluetoothPermissionCode": "com.thingclips.sdk.ble.core.BluetoothPermissionCode",
|
1162
|
+
"com.tuya.smart.android.blemesh.bean.LinkageHash": "com.thingclips.smart.android.blemesh.bean.LinkageHash",
|
1163
|
+
"com.tuya.smart.interior.mqtt.IMqttServer": "com.thingclips.smart.interior.mqtt.IMqttServer",
|
1164
|
+
"com.tuya.smart.sdk.api.wifibackup.api.bean.CurrentWifiInfoBean": "com.thingclips.smart.sdk.api.wifibackup.api.bean.CurrentWifiInfoBean",
|
1165
|
+
"com.tuya.smart.home.sdk.bean.SharerInfoBean": "com.thingclips.smart.home.sdk.bean.SharerInfoBean",
|
1166
|
+
"com.tuya.smart.android.common.task.Coordinator": "com.thingclips.smart.android.common.task.Coordinator",
|
1167
|
+
"com.tuya.smart.android.device.bean.StringSchemaBean": "com.thingclips.smart.android.device.bean.StringSchemaBean",
|
1168
|
+
"com.tuya.smart.android.ble.api.OnBleSendChannelListener": "com.thingclips.smart.android.ble.api.OnBleSendChannelListener",
|
1169
|
+
"com.tuya.smart.sdk.api.IGetDevicesInGroupCallback": "com.thingclips.smart.sdk.api.IGetDevicesInGroupCallback",
|
1170
|
+
"com.tuya.smart.android.blemesh.event.MeshDeviceRelationUpdateEvent": "com.thingclips.smart.android.blemesh.event.MeshDeviceRelationUpdateEvent",
|
1171
|
+
"com.tuya.smart.sdk.bean.DpBean": "com.thingclips.smart.sdk.bean.DpBean",
|
1172
|
+
"com.tuya.sdk.ble.core.ability.response.BleGetRssiBaseResponse": "com.thingclips.sdk.ble.core.ability.response.BleGetRssiBaseResponse",
|
1173
|
+
"com.tuya.smart.interior.hardware.ILocalOnlineStatusListener": "com.thingclips.smart.interior.hardware.ILocalOnlineStatusListener",
|
1174
|
+
"com.tuya.sdk.ble.core.protocol.entity.ChannelDataDps": "com.thingclips.sdk.ble.core.protocol.entity.ChannelDataDps",
|
1175
|
+
"com.tuya.smart.home.sdk.bean.scene.ConditionRespBean": "com.thingclips.smart.home.sdk.bean.scene.ConditionRespBean",
|
1176
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.property.EnumProperty": "com.thingclips.smart.home.sdk.bean.scene.condition.property.EnumProperty",
|
1177
|
+
"com.tuya.smart.home.sdk.bean.DeviceBizPropBean": "com.thingclips.smart.home.sdk.bean.DeviceBizPropBean",
|
1178
|
+
"com.tuya.smart.interior.api.ITuyaCameraPlugin": "com.thingclips.smart.interior.api.IThingCameraPlugin",
|
1179
|
+
"com.tuya.smart.home.sdk.bean.MemberWrapperBean": "com.thingclips.smart.home.sdk.bean.MemberWrapperBean",
|
1180
|
+
"com.tuya.smart.camera.utils.chaos.thread.UPThreadPoolManager": "com.thingclips.smart.camera.utils.chaos.thread.UPThreadPoolManager",
|
1181
|
+
"com.tuya.smart.interior.device.confusebean.MQ_37_GroupChangedBean": "com.thingclips.smart.interior.device.confusebean.MQ_37_GroupChangedBean",
|
1182
|
+
"com.tuya.smart.home.sdk.api.ITuyaGwSearcher": "com.thingclips.smart.home.sdk.api.IThingGwSearcher",
|
1183
|
+
"com.tuya.smart.android.common.utils.HexUtil": "com.thingclips.smart.android.common.utils.HexUtil",
|
1184
|
+
"com.tuya.smart.sdk.api.ITuyaSmartTimer": "com.thingclips.smart.sdk.api.IThingSmartTimer",
|
1185
|
+
"com.tuya.smart.ipc.camera.autotesting.adapter.AutoTestingCaseExcuteAdapter": "com.thingclips.smart.ipc.camera.autotesting.adapter.AutoTestingCaseExcuteAdapter",
|
1186
|
+
"com.tuya.sdk.eventbus.SubscriberExceptionEvent": "com.thingclips.sdk.eventbus.SubscriberExceptionEvent",
|
1187
|
+
"com.tuya.smart.ipc.camera.cloudtool.activity.CloudToolCloudActivity": "com.thingclips.smart.ipc.camera.cloudtool.activity.CloudToolCloudActivity",
|
1188
|
+
"com.tuya.smart.sdk.api.cache.ISmartStatusChangeListener": "com.thingclips.smart.sdk.api.cache.ISmartStatusChangeListener",
|
1189
|
+
"com.tuya.smart.android.common.utils.NotificationHelper": "com.thingclips.smart.android.common.utils.NotificationHelper",
|
1190
|
+
"com.tuya.smart.sdk.api.ITuyaGeoFence": "com.thingclips.smart.sdk.api.IThingGeoFence",
|
1191
|
+
"com.tuya.smart.android.mqtt.MqttMessageBean": "com.thingclips.smart.android.mqtt.MqttMessageBean",
|
1192
|
+
"com.tuya.smart.android.ble.ITuyaLEAudioManager": "com.thingclips.smart.android.ble.IThingLEAudioManager",
|
1193
|
+
"com.tuya.smart.sdk.bean.ThirdMatterActiveBean": "com.thingclips.smart.sdk.bean.ThirdMatterActiveBean",
|
1194
|
+
"com.tuya.smart.interior.api.ITuyaBlePlugin": "com.thingclips.smart.interior.api.IThingBlePlugin",
|
1195
|
+
"com.tuya.smart.android.ble.api.LeConnectStatusResponse": "com.thingclips.smart.android.ble.api.LeConnectStatusResponse",
|
1196
|
+
"com.tuya.smart.sdk.api.ITuyaDeviceDataManager": "com.thingclips.smart.sdk.api.IThingDeviceDataManager",
|
1197
|
+
"com.tuya.smart.sdk.api.bluemesh.ITuyaMeshGroup": "com.thingclips.smart.sdk.api.bluemesh.IThingMeshGroup",
|
1198
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCDoorBellManager": "com.thingclips.smart.android.camera.sdk.api.IThingIPCDoorBellManager",
|
1199
|
+
"com.tuya.smart.android.user.api.ILoginCallback": "com.thingclips.smart.android.user.api.ILoginCallback",
|
1200
|
+
"com.tuya.smart.ipc.camera.autotesting.presenter.AutoTestingCaseListPresenter": "com.thingclips.smart.ipc.camera.autotesting.presenter.AutoTestingCaseListPresenter",
|
1201
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.Constant": "com.thingclips.smart.ipc.camera.autotesting.utils.Constant",
|
1202
|
+
"com.tuya.smart.android.blemesh.api.MeshLinkageLogicOperator": "com.thingclips.smart.android.blemesh.api.MeshLinkageLogicOperator",
|
1203
|
+
"com.tuya.smart.interior.device.ITuyaDeviceInfoChangeListener": "com.thingclips.smart.interior.device.IThingDeviceInfoChangeListener",
|
1204
|
+
"com.tuya.smart.android.ble.api.OnBleToDeviceListener": "com.thingclips.smart.android.ble.api.OnBleToDeviceListener",
|
1205
|
+
"com.tuya.smart.sdk.bean.TuyaSmartThingAction": "com.thingclips.smart.sdk.bean.ThingSmartThingAction",
|
1206
|
+
"com.tuya.smart.android.device.event.ForeGroundStatusEvent": "com.thingclips.smart.android.device.event.ForeGroundStatusEvent",
|
1207
|
+
"com.tuya.imagepipeline.okhttp3.OkHttpImagePipelineConfigFactory": "com.thingclips.imagepipeline.okhttp3.OkHttpImagePipelineConfigFactory",
|
1208
|
+
"com.tuya.sdk.ble.core.bean.SchemeExtContentBean": "com.thingclips.sdk.ble.core.bean.SchemeExtContentBean",
|
1209
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.TestInfoBean": "com.thingclips.smart.ipc.camera.autotesting.bean.TestInfoBean",
|
1210
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCMsgPlugin": "com.thingclips.smart.android.camera.sdk.api.IThingIPCMsgPlugin",
|
1211
|
+
"com.tuya.smart.device.bean.FirmwareUpgradeInfoBean": "com.thingclips.smart.device.bean.FirmwareUpgradeInfoBean",
|
1212
|
+
"com.tuya.smart.camera.ipccamerasdk.http.IHttpProxy": "com.thingclips.smart.camera.ipccamerasdk.http.IHttpProxy",
|
1213
|
+
"com.tuya.smart.android.device.enums.TimerDeviceTypeEnum": "com.thingclips.smart.android.device.enums.TimerDeviceTypeEnum",
|
1214
|
+
"com.tuya.sdk.ble.core.protocol.entity.DeviceInfoRsp": "com.thingclips.sdk.ble.core.protocol.entity.DeviceInfoRsp",
|
1215
|
+
"com.tuya.smart.android.user.api.ILogoutCallback": "com.thingclips.smart.android.user.api.ILogoutCallback",
|
1216
|
+
"com.tuya.smart.android.ble.api.audio.CalendarResult": "com.thingclips.smart.android.ble.api.audio.CalendarResult",
|
1217
|
+
"com.tuya.sdk.ble.core.bean.DpsQueryDp": "com.thingclips.sdk.ble.core.bean.DpsQueryDp",
|
1218
|
+
"com.tuya.smart.android.camera.sdk.bean.IPCSnapshotConfig": "com.thingclips.smart.android.camera.sdk.bean.IPCSnapshotConfig",
|
1219
|
+
"com.tuya.smart.sdk.enums.RouterConnModelEnum": "com.thingclips.smart.sdk.enums.RouterConnModelEnum",
|
1220
|
+
"com.tuya.smart.sdk.api.ITuyaGeoFenceOperate": "com.thingclips.smart.sdk.api.IThingGeoFenceOperate",
|
1221
|
+
"com.tuya.smart.sdk.api.ITuyaMessage": "com.thingclips.smart.sdk.api.IThingMessage",
|
1222
|
+
"com.tuya.smart.interior.event.BaseEventModel": "com.thingclips.smart.interior.event.BaseEventModel",
|
1223
|
+
"com.tuya.smart.android.camera.sdk.api.ICameraConfigInfo": "com.thingclips.smart.android.camera.sdk.api.ICameraConfigInfo",
|
1224
|
+
"com.tuya.smart.interior.device.confusebean.Protocol_34_Bean": "com.thingclips.smart.interior.device.confusebean.Protocol_34_Bean",
|
1225
|
+
"com.tuya.sdk.device.bean.RomUpdateConfirmEventBean": "com.thingclips.sdk.device.bean.RomUpdateConfirmEventBean",
|
1226
|
+
"com.tuya.smart.sdk.api.ITuyaActivatorGetToken": "com.thingclips.smart.sdk.api.IThingActivatorGetToken",
|
1227
|
+
"com.tuya.smart.camera.utils.chaos.L": "com.thingclips.smart.camera.utils.chaos.L",
|
1228
|
+
"com.tuya.smart.sdk.api.IStandardConverter": "com.thingclips.smart.sdk.api.IStandardConverter",
|
1229
|
+
"com.tuya.smart.home.sdk.bean.HomeBean": "com.thingclips.smart.home.sdk.bean.HomeBean",
|
1230
|
+
"com.tuya.smart.ipc.camera.autotesting.data.RemoteRepo": "com.thingclips.smart.ipc.camera.autotesting.data.RemoteRepo",
|
1231
|
+
"com.tuya.smart.android.ble.api.AddGwSubDeviceListener": "com.thingclips.smart.android.ble.api.AddGwSubDeviceListener",
|
1232
|
+
"com.tuya.smart.android.common.utils.SHA256Util": "com.thingclips.smart.android.common.utils.SHA256Util",
|
1233
|
+
"com.tuya.smart.sdk.bean.feedback.FeedbackMsgListBean": "com.thingclips.smart.sdk.bean.feedback.FeedbackMsgListBean",
|
1234
|
+
"com.tuya.smart.interior.device.bean.GwDevResp": "com.thingclips.smart.interior.device.bean.GwDevResp",
|
1235
|
+
"com.tuya.smart.ipc.camera.autotesting.excute.ILogger": "com.thingclips.smart.ipc.camera.autotesting.excute.ILogger",
|
1236
|
+
"com.tuya.smart.android.camera.timeline.TimelineUtil": "com.thingclips.smart.android.camera.timeline.TimelineUtil",
|
1237
|
+
"com.tuya.smart.ipc.camera.autotesting.base.BaseActivity": "com.thingclips.smart.ipc.camera.autotesting.base.BaseActivity",
|
1238
|
+
"com.tuya.smart.android.user.api.IUserStorage": "com.thingclips.smart.android.user.api.IUserStorage",
|
1239
|
+
"com.tuya.smart.sdk.api.bluemesh.ITuyaBlueMesh": "com.thingclips.smart.sdk.api.bluemesh.IThingBlueMesh",
|
1240
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.ErrorMsg": "com.thingclips.smart.ipc.camera.autotesting.utils.ErrorMsg",
|
1241
|
+
"com.tuya.sdk.eventbus.util.ThrowableFailureEvent": "com.thingclips.sdk.eventbus.util.ThrowableFailureEvent",
|
1242
|
+
"com.tuya.smart.android.device.bean.UpgradeInfoBean": "com.thingclips.smart.android.device.bean.UpgradeInfoBean",
|
1243
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.FileDownloadFinishCallBack": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.FileDownloadFinishCallBack",
|
1244
|
+
"com.tuya.smart.android.ble.api.LeConnectResponse": "com.thingclips.smart.android.ble.api.LeConnectResponse",
|
1245
|
+
"com.tuya.smart.home.sdk.builder.TuyaLightningDevActivatorBuilder": "com.thingclips.smart.home.sdk.builder.ThingLightningDevActivatorBuilder",
|
1246
|
+
"com.tuya.smart.interior.device.IDeviceHardwareResponseListener": "com.thingclips.smart.interior.device.IDeviceHardwareResponseListener",
|
1247
|
+
"com.tuya.smart.sdk.bean.cache.ISigMeshProperty": "com.thingclips.smart.sdk.bean.cache.ISigMeshProperty",
|
1248
|
+
"com.tuya.sdk.device.bean.OTAProgressBean": "com.thingclips.sdk.device.bean.OTAProgressBean",
|
1249
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.rule.SunSetRiseRule": "com.thingclips.smart.home.sdk.bean.scene.condition.rule.SunSetRiseRule",
|
1250
|
+
"com.tuya.smart.android.device.bean.DevLocationBean": "com.thingclips.smart.android.device.bean.DevLocationBean",
|
1251
|
+
"com.tuya.smart.interior.hardware.HardwareConfig": "com.thingclips.smart.interior.hardware.HardwareConfig",
|
1252
|
+
"com.tuya.smart.android.blemesh.bean.CommandType": "com.thingclips.smart.android.blemesh.bean.CommandType",
|
1253
|
+
"com.tuya.smart.sdk.api.IExtMultiModeActivatorListener": "com.thingclips.smart.sdk.api.IExtMultiModeActivatorListener",
|
1254
|
+
"com.tuya.smart.interior.device.confusebean.MQ_0_DeviceShareChangedBean": "com.thingclips.smart.interior.device.confusebean.MQ_0_DeviceShareChangedBean",
|
1255
|
+
"com.tuya.smart.interior.event.DeviceOnlineStatusEvent": "com.thingclips.smart.interior.event.DeviceOnlineStatusEvent",
|
1256
|
+
"com.tuya.smart.sdk.enums.ActivatorEZStepCode": "com.thingclips.smart.sdk.enums.ActivatorEZStepCode",
|
1257
|
+
"com.tuya.smart.sdk.api.ITuyaSmartCameraActivatorListener": "com.thingclips.smart.sdk.api.IThingSmartCameraActivatorListener",
|
1258
|
+
"com.tuya.smart.sdk.api.ITuyaProductPanelManager": "com.thingclips.smart.sdk.api.IThingProductPanelManager",
|
1259
|
+
"com.tuya.smart.sdk.bean.cache.IDeviceProperty": "com.thingclips.smart.sdk.bean.cache.IDeviceProperty",
|
1260
|
+
"com.tuya.smart.android.ble.ITuyaBleController": "com.thingclips.smart.android.ble.IThingBleController",
|
1261
|
+
"com.tuya.smart.home.sdk.bean.WiFiInfoBean": "com.thingclips.smart.home.sdk.bean.WiFiInfoBean",
|
1262
|
+
"com.tuya.smart.sdk.api.ITuyaFeedback": "com.thingclips.smart.sdk.api.IThingFeedback",
|
1263
|
+
"com.tuya.smart.android.camera.sdk.annotation.BuildForInside": "com.thingclips.smart.android.camera.sdk.annotation.BuildForInside",
|
1264
|
+
"com.tuya.smart.android.device.utils.TuyaBleUtil": "com.thingclips.smart.android.device.utils.ThingBleUtil",
|
1265
|
+
"com.tuya.smart.home.sdk.bean.ApHandlerBean": "com.thingclips.smart.home.sdk.bean.ApHandlerBean",
|
1266
|
+
"com.tuya.smart.camera.middleware.p2p.ITuyaSmartCameraP2P": "com.thingclips.smart.camera.middleware.p2p.IThingSmartCameraP2P",
|
1267
|
+
"com.tuya.smart.android.ble.ITuyaBleManager": "com.thingclips.smart.android.ble.IThingBleManager",
|
1268
|
+
"com.tuya.smart.interior.api.IUserRegionPlugin": "com.thingclips.smart.interior.api.IUserRegionPlugin",
|
1269
|
+
"com.tuya.smart.home.sdk.callback.ITuyaHomeResultCallback": "com.thingclips.smart.home.sdk.callback.IThingHomeResultCallback",
|
1270
|
+
"com.tuya.smart.camera.middleware.p2p.CameraStrategy": "com.thingclips.smart.camera.middleware.p2p.CameraStrategy",
|
1271
|
+
"com.tuya.smart.sdk.api.ITuyaMatterMultipleFabricDevice": "com.thingclips.smart.sdk.api.IThingMatterMultipleFabricDevice",
|
1272
|
+
"com.tuya.smart.sdk.bean.MatterQRCodeInfoPayload": "com.thingclips.smart.sdk.bean.MatterQRCodeInfoPayload",
|
1273
|
+
"com.tuya.smart.camera.utils.chaos.SdkAppUtils": "com.thingclips.smart.camera.utils.chaos.SdkAppUtils",
|
1274
|
+
"com.tuya.smart.home.sdk.bean.scene.SceneLogDetailBean": "com.thingclips.smart.home.sdk.bean.scene.SceneLogDetailBean",
|
1275
|
+
"com.tuya.smart.interior.device.confusebean.MQ_802_PushAlarmBean": "com.thingclips.smart.interior.device.confusebean.MQ_802_PushAlarmBean",
|
1276
|
+
"com.tuya.smart.interior.event.MeshRelationUpdateEventModel": "com.thingclips.smart.interior.event.MeshRelationUpdateEventModel",
|
1277
|
+
"com.tuya.smart.android.blemesh.event.MeshUpdateEventModel": "com.thingclips.smart.android.blemesh.event.MeshUpdateEventModel",
|
1278
|
+
"com.tuya.smart.android.push.bean.PushAlarmBean": "com.thingclips.smart.android.push.bean.PushAlarmBean",
|
1279
|
+
"com.tuya.smart.home.sdk.api.ITuyaLightningSearcher": "com.thingclips.smart.home.sdk.api.IThingLightningSearcher",
|
1280
|
+
"com.tuya.smart.android.ble.api.BleControllerBean": "com.thingclips.smart.android.ble.api.BleControllerBean",
|
1281
|
+
"com.tuya.smart.sdk.bean.RouterConfigData": "com.thingclips.smart.sdk.bean.RouterConfigData",
|
1282
|
+
"com.tuya.sdk.device.event.OtaProgressEvent": "com.thingclips.sdk.device.event.OtaProgressEvent",
|
1283
|
+
"com.tuya.sdk.ble.core.protocol.entity.BleDps": "com.thingclips.sdk.ble.core.protocol.entity.BleDps",
|
1284
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.rule.BoolRule": "com.thingclips.smart.home.sdk.bean.scene.condition.rule.BoolRule",
|
1285
|
+
"com.tuya.smart.interior.api.IUserDomainPlugin": "com.thingclips.smart.interior.api.IUserDomainPlugin",
|
1286
|
+
"com.tuya.smart.sdk.api.ITuyaCameraDevActivator": "com.thingclips.smart.sdk.api.IThingCameraDevActivator",
|
1287
|
+
"com.tuya.smart.home.sdk.bean.scene.PreCondition": "com.thingclips.smart.home.sdk.bean.scene.PreCondition",
|
1288
|
+
"com.tuya.smart.home.sdk.bean.WarnMessageBean": "com.thingclips.smart.home.sdk.bean.WarnMessageBean",
|
1289
|
+
"com.tuya.smart.interior.hardware.ITuyaHardware": "com.thingclips.smart.interior.hardware.IThingHardware",
|
1290
|
+
"com.tuya.smart.home.sdk.bean.scene.ConditionActionBean": "com.thingclips.smart.home.sdk.bean.scene.ConditionActionBean",
|
1291
|
+
"com.tuya.smart.sdk.api.IStorageCache": "com.thingclips.smart.sdk.api.IStorageCache",
|
1292
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.property.TimerProperty": "com.thingclips.smart.home.sdk.bean.scene.condition.property.TimerProperty",
|
1293
|
+
"com.tuya.smart.android.common.utils.log.ILogInterception": "com.thingclips.smart.android.common.utils.log.ILogInterception",
|
1294
|
+
"com.tuya.smart.android.ble.api.BleWiFiDeviceBean": "com.thingclips.smart.android.ble.api.BleWiFiDeviceBean",
|
1295
|
+
"com.tuya.smart.sdk.api.bluemesh.IBlueMeshManager": "com.thingclips.smart.sdk.api.bluemesh.IBlueMeshManager",
|
1296
|
+
"com.tuya.smart.sdk.api.wifibackup.api.bean.BackupWifiListInfo": "com.thingclips.smart.sdk.api.wifibackup.api.bean.BackupWifiListInfo",
|
1297
|
+
"com.tuya.smart.home.sdk.bean.scene.MCGroup": "com.thingclips.smart.home.sdk.bean.scene.MCGroup",
|
1298
|
+
"com.tuya.smart.camera.ipccamerasdk.monitor.RockerAvailableDirection": "com.thingclips.smart.camera.ipccamerasdk.monitor.RockerAvailableDirection",
|
1299
|
+
"com.tuya.smart.android.camera.timeline.OnSelectedTimeListener": "com.thingclips.smart.android.camera.timeline.OnSelectedTimeListener",
|
1300
|
+
"com.tuya.smart.interior.device.bean.DeviceRespBean": "com.thingclips.smart.interior.device.bean.DeviceRespBean",
|
1301
|
+
"com.tuya.sdk.device.event.RomUpdateProgressEvent": "com.thingclips.sdk.device.event.RomUpdateProgressEvent",
|
1302
|
+
"com.tuya.smart.ipc.camera.cloudtool.activity.CloudToolEventActivity": "com.thingclips.smart.ipc.camera.cloudtool.activity.CloudToolEventActivity",
|
1303
|
+
"com.tuya.smart.interior.device.ITuyaMeshRawReportListener": "com.thingclips.smart.interior.device.IThingMeshRawReportListener",
|
1304
|
+
"com.tuya.smart.ipc.camera.autotesting.cache.AutoTestCaseManagement": "com.thingclips.smart.ipc.camera.autotesting.cache.AutoTestCaseManagement",
|
1305
|
+
"com.tuya.smart.home.sdk.builder.TuyaBroadbandConfigBuilder": "com.thingclips.smart.home.sdk.builder.ThingBroadbandConfigBuilder",
|
1306
|
+
"com.tuya.smart.android.camera.sdk.callback.IDoorBellConfigDataSource": "com.thingclips.smart.android.camera.sdk.callback.IDoorBellConfigDataSource",
|
1307
|
+
"com.tuya.smart.sdk.api.ITuyaPush": "com.thingclips.smart.sdk.api.IThingPush",
|
1308
|
+
"com.tuya.sdk.device.enums.RomDevTypeEnum": "com.thingclips.sdk.device.enums.RomDevTypeEnum",
|
1309
|
+
"com.tuya.sdk.device.enums.UpgradeModeEnum": "com.thingclips.sdk.device.enums.UpgradeModeEnum",
|
1310
|
+
"com.tuya.smart.home.sdk.callback.IGetHomeWetherCallBack": "com.thingclips.smart.home.sdk.callback.IGetHomeWetherCallBack",
|
1311
|
+
"com.tuya.smart.android.camera.sdk.api.ITuyaIPCPlugin": "com.thingclips.smart.android.camera.sdk.api.IThingIPCPlugin",
|
1312
|
+
"com.tuya.sdk.device.enums.DevFirmwareMethodEnum": "com.thingclips.sdk.device.enums.DevFirmwareMethodEnum",
|
1313
|
+
"com.tuya.smart.sdk.bean.LocalKeyBean": "com.thingclips.smart.sdk.bean.LocalKeyBean",
|
1314
|
+
"com.tuya.smart.home.sdk.bean.ConfigProductInfoBean": "com.thingclips.smart.home.sdk.bean.ConfigProductInfoBean",
|
1315
|
+
"com.tuya.smart.interior.api.ITuyaDeviceSharePlugin": "com.thingclips.smart.interior.api.IThingDeviceSharePlugin",
|
1316
|
+
"com.tuya.smart.scene.api.service.IDeviceService": "com.thingclips.smart.scene.api.service.IDeviceService",
|
1317
|
+
"com.tuya.smart.ipc.camera.autotesting.cache.AutoTestLogManagement": "com.thingclips.smart.ipc.camera.autotesting.cache.AutoTestLogManagement",
|
1318
|
+
"com.tuya.smart.ipc.camera.autotesting.activity.AutoCameraTestingProgramListActivity": "com.thingclips.smart.ipc.camera.autotesting.activity.AutoCameraTestingProgramListActivity",
|
1319
|
+
"com.tuya.smart.sdk.api.ITuyaTimer": "com.thingclips.smart.sdk.api.IThingTimer",
|
1320
|
+
"com.tuya.smart.sdk.api.bluemesh.IMeshDeviceListener": "com.thingclips.smart.sdk.api.bluemesh.IMeshDeviceListener",
|
1321
|
+
"com.tuya.smart.interior.enums.LanOtaModelEnum": "com.thingclips.smart.interior.enums.LanOtaModelEnum",
|
1322
|
+
"com.tuya.smart.home.sdk.builder.ActivatorBuilder": "com.thingclips.smart.home.sdk.builder.ActivatorBuilder",
|
1323
|
+
"com.tuya.smart.interior.device.confusebean.MQ_201_EnableWifiSuccessBean": "com.thingclips.smart.interior.device.confusebean.MQ_201_EnableWifiSuccessBean",
|
1324
|
+
"com.tuya.smart.android.ble.api.OnDataLocalProcessingListener": "com.thingclips.smart.android.ble.api.OnDataLocalProcessingListener",
|
1325
|
+
"com.tuya.smart.home.sdk.utils.SchemaMapper": "com.thingclips.smart.home.sdk.utils.SchemaMapper",
|
1326
|
+
"com.tuya.smart.interior.device.confusebean.SandO": "com.thingclips.smart.interior.device.confusebean.SandO",
|
1327
|
+
"com.tuya.smart.camera.camerasdk.bean.TuyaVideoSEIInfo": "com.thingclips.smart.camera.camerasdk.bean.ThingVideoSEIInfo",
|
1328
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.OnRenderDirectionCallback": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.OnRenderDirectionCallback",
|
1329
|
+
"com.tuya.smart.android.common.utils.TyCommonUtil": "com.thingclips.smart.android.common.utils.ThingCommonUtil",
|
1330
|
+
"com.tuya.smart.camera.ipccamerasdk.cloud.CloudBusiness": "com.thingclips.smart.camera.ipccamerasdk.cloud.CloudBusiness",
|
1331
|
+
"com.tuya.smart.interior.device.confusebean.MQ_302_DataBean": "com.thingclips.smart.interior.device.confusebean.MQ_302_DataBean",
|
1332
|
+
"com.tuya.smart.android.ble.api.audio.OnLEAudioStatusListener": "com.thingclips.smart.android.ble.api.audio.OnLEAudioStatusListener",
|
1333
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.OperationCallBack": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.OperationCallBack",
|
1334
|
+
"com.tuya.smart.android.blemesh.bean.BLEUpgradeBean": "com.thingclips.smart.android.blemesh.bean.BLEUpgradeBean",
|
1335
|
+
"com.tuya.smart.android.user.bean.WhiteList": "com.thingclips.smart.android.user.bean.WhiteList",
|
1336
|
+
"com.tuya.smart.home.sdk.callback.ITuyaVoiceTransfer": "com.thingclips.smart.home.sdk.callback.IThingVoiceTransfer",
|
1337
|
+
"com.tuya.smart.camera.camerasdk.bean.TuyaVideoFrameInfo": "com.thingclips.smart.camera.camerasdk.bean.ThingVideoFrameInfo",
|
1338
|
+
"com.tuya.smart.sdk.api.bluemesh.IGroupDevCallback": "com.thingclips.smart.sdk.api.bluemesh.IGroupDevCallback",
|
1339
|
+
"com.tuya.smart.android.blemesh.bean.MeshClientStatusEnum": "com.thingclips.smart.android.blemesh.bean.MeshClientStatusEnum",
|
1340
|
+
"com.tuya.sdk.device.event.OtaUpdateEvent": "com.thingclips.sdk.device.event.OtaUpdateEvent",
|
1341
|
+
"com.tuya.smart.camera.utils.chaos.HexUtil": "com.thingclips.smart.camera.utils.chaos.HexUtil",
|
1342
|
+
"com.tuya.smart.camera.utils.chaos.thread.CameraExecutor": "com.thingclips.smart.camera.utils.chaos.thread.CameraExecutor",
|
1343
|
+
"com.tuya.smart.interior.hardware.ITuyaHardwareQuery": "com.thingclips.smart.interior.hardware.IThingHardwareQuery",
|
1344
|
+
"com.tuya.smart.sdk.bean.TuyaSmartThingProperty": "com.thingclips.smart.sdk.bean.ThingSmartThingProperty",
|
1345
|
+
"com.tuya.smart.camera.camerasdk.typlayer.callback.FileDownLoadProgressCallBack": "com.thingclips.smart.camera.camerasdk.thingplayer.callback.FileDownLoadProgressCallBack",
|
1346
|
+
"com.tuya.smart.ipc.camera.autotesting.adapter.AutoTestTaskCaseDetailAdapter": "com.thingclips.smart.ipc.camera.autotesting.adapter.AutoTestTaskCaseDetailAdapter",
|
1347
|
+
"com.tuya.smart.ipc.camera.cloudtool.optimus.IIPCCloudTool": "com.thingclips.smart.ipc.camera.cloudtool.optimus.IIPCCloudTool",
|
1348
|
+
"com.tuya.smart.android.ble.api.ConfigErrorBean": "com.thingclips.smart.android.ble.api.ConfigErrorBean",
|
1349
|
+
"com.tuya.smart.interior.enums.ActiveEnum": "com.thingclips.smart.interior.enums.ActiveEnum",
|
1350
|
+
"com.tuya.smart.interior.device.bean.CommunicationEnum": "com.thingclips.smart.interior.device.bean.CommunicationEnum",
|
1351
|
+
"com.tuya.smart.home.sdk.callback.ITuyaTransferCallback": "com.thingclips.smart.home.sdk.callback.IThingTransferCallback",
|
1352
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.mapper.BeanMapper": "com.thingclips.smart.ipc.camera.autotesting.bean.mapper.BeanMapper",
|
1353
|
+
"com.tuya.sdk.eventbus.SubscriberMethodFinder": "com.thingclips.sdk.eventbus.SubscriberMethodFinder",
|
1354
|
+
"com.tuya.smart.home.sdk.api.config.IConnectListener": "com.thingclips.smart.home.sdk.api.config.IConnectListener",
|
1355
|
+
"com.tuya.smart.ipc.camera.autotesting.utils.AutoTestUtils": "com.thingclips.smart.ipc.camera.autotesting.utils.AutoTestUtils",
|
1356
|
+
"com.tuya.smart.camera.ipccamerasdk.bean.MonthDays": "com.thingclips.smart.camera.ipccamerasdk.bean.MonthDays",
|
1357
|
+
"com.tuya.smart.android.blemesh.ITuyaMeshManager": "com.thingclips.smart.android.blemesh.IThingMeshManager",
|
1358
|
+
"com.tuya.smart.interior.mqtt.MqttControlBuilder": "com.thingclips.smart.interior.mqtt.MqttControlBuilder",
|
1359
|
+
"com.tuya.sdk.device.enums.DevUpgradeStatusEnum": "com.thingclips.sdk.device.enums.DevUpgradeStatusEnum",
|
1360
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.BusinessResponse": "com.thingclips.smart.ipc.camera.autotesting.bean.BusinessResponse",
|
1361
|
+
"com.tuya.smart.android.blemesh.event.MeshLocalOnlineStatusUpdateEventModel": "com.thingclips.smart.android.blemesh.event.MeshLocalOnlineStatusUpdateEventModel",
|
1362
|
+
"com.tuya.smart.android.mvp.model.BaseModel": "com.thingclips.smart.android.mvp.model.BaseModel",
|
1363
|
+
"com.tuya.smart.android.ble.api.BleRssiListener": "com.thingclips.smart.android.ble.api.BleRssiListener",
|
1364
|
+
"com.tuya.smart.sdk.api.wifibackup.api.ITuyaWifiBase": "com.thingclips.smart.sdk.api.wifibackup.api.IThingWifiBase",
|
1365
|
+
"com.tuya.smart.sdk.bean.BlueMeshModuleMapBean": "com.thingclips.smart.sdk.bean.BlueMeshModuleMapBean",
|
1366
|
+
"com.tuya.smart.interior.device.IDeviceMqttProtocolListener": "com.thingclips.smart.interior.device.IDeviceMqttProtocolListener",
|
1367
|
+
"com.tuya.smart.android.device.event.ForeGroundStatusModel": "com.thingclips.smart.android.device.event.ForeGroundStatusModel",
|
1368
|
+
"com.tuya.smart.android.ble.api.audio.WeatherResult": "com.thingclips.smart.android.ble.api.audio.WeatherResult",
|
1369
|
+
"com.tuya.smart.ipc.camera.autotesting.bean.AssetsProjectBean": "com.thingclips.smart.ipc.camera.autotesting.bean.AssetsProjectBean",
|
1370
|
+
"com.tuya.smart.android.ble.api.DevIotDataBean": "com.thingclips.smart.android.ble.api.DevIotDataBean",
|
1371
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.GeoType": "com.thingclips.smart.home.sdk.bean.scene.condition.GeoType",
|
1372
|
+
"com.tuya.smart.sdk.bean.GroupShareBean": "com.thingclips.smart.sdk.bean.GroupShareBean",
|
1373
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeDeviceShare": "com.thingclips.smart.home.sdk.api.IThingHomeDeviceShare",
|
1374
|
+
"com.tuya.smart.interior.event.DpUpdateEventModel": "com.thingclips.smart.interior.event.DpUpdateEventModel",
|
1375
|
+
"com.tuya.smart.android.blemesh.bean.DeviceType": "com.thingclips.smart.android.blemesh.bean.DeviceType",
|
1376
|
+
"com.tuya.smart.interior.device.config.GWConfig": "com.thingclips.smart.interior.device.config.GWConfig",
|
1377
|
+
"com.tuya.smart.android.blemesh.api.ITuyaBlueMeshSearch": "com.thingclips.smart.android.blemesh.api.IThingBlueMeshSearch",
|
1378
|
+
"com.tuya.smart.sdk.bean.message.NodisturbDevicesBean": "com.thingclips.smart.sdk.bean.message.NodisturbDevicesBean",
|
1379
|
+
"com.tuya.smart.android.camera.sdk.bean.SupportResolution": "com.thingclips.smart.android.camera.sdk.bean.SupportResolution",
|
1380
|
+
"com.tuya.smart.android.common.utils.SafeHandler": "com.thingclips.smart.android.common.utils.SafeHandler",
|
1381
|
+
"com.tuya.smart.android.mqtt.ITuyaMqttChannel": "com.thingclips.smart.android.mqtt.IThingMqttChannel",
|
1382
|
+
"com.tuya.smart.android.blemesh.event.MeshOnlineStatusUpdateEvent": "com.thingclips.smart.android.blemesh.event.MeshOnlineStatusUpdateEvent",
|
1383
|
+
"com.tuya.smart.camera.annotation.CloudPlaySpeed": "com.thingclips.smart.camera.annotation.CloudPlaySpeed",
|
1384
|
+
"com.tuya.smart.android.ble.api.BleConfigType": "com.thingclips.smart.android.ble.api.BleConfigType",
|
1385
|
+
"com.tuya.smart.sdk.api.IBleActivatorListener": "com.thingclips.smart.sdk.api.IBleActivatorListener",
|
1386
|
+
"com.tuya.smart.android.device.utils.SandRMap": "com.thingclips.smart.android.device.utils.SandRMap",
|
1387
|
+
"com.tuya.smart.home.sdk.api.ITuyaHomeRoomInfoChangeListener": "com.thingclips.smart.home.sdk.api.IThingHomeRoomInfoChangeListener",
|
1388
|
+
"com.tuya.smart.camera.ipccamerasdk.IPCTuyaStationP2PCamera": "com.thingclips.smart.camera.ipccamerasdk.IPCThingStationP2PCamera",
|
1389
|
+
"com.tuya.smart.home.sdk.bean.UniversalBean": "com.thingclips.smart.home.sdk.bean.UniversalBean",
|
1390
|
+
"com.tuya.smart.interior.device.confusebean.MQ_1_ConnectStatusChangeBean": "com.thingclips.smart.interior.device.confusebean.MQ_1_ConnectStatusChangeBean",
|
1391
|
+
"com.tuya.smart.ipc.camera.autotesting.delegate.StabilityDelegate": "com.thingclips.smart.ipc.camera.autotesting.delegate.StabilityDelegate",
|
1392
|
+
"com.tuya.smart.home.sdk.bean.scene.PlaceFacadeBean": "com.thingclips.smart.home.sdk.bean.scene.PlaceFacadeBean",
|
1393
|
+
"com.tuya.smart.sdk.bean.NocChainInfo": "com.thingclips.smart.sdk.bean.NocChainInfo",
|
1394
|
+
"com.tuya.smart.interior.hardware.ITuyaEZConfig": "com.thingclips.smart.interior.hardware.IThingEZConfig",
|
1395
|
+
"com.tuya.smart.sdk.api.ITuyaMatterDeviceCacheManager": "com.thingclips.smart.sdk.api.IThingMatterDeviceCacheManager",
|
1396
|
+
"com.tuya.sdk.matter.api.IHostAddressListener": "com.thingclips.sdk.matter.api.IHostAddressListener",
|
1397
|
+
"com.tuya.smart.home.sdk.api.config.IConfig": "com.thingclips.smart.home.sdk.api.config.IConfig",
|
1398
|
+
"com.tuya.sdk.device.event.TimerChangeEvent": "com.thingclips.sdk.device.event.TimerChangeEvent",
|
1399
|
+
"com.tuya.smart.home.sdk.bean.scene.condition.property.IProperty": "com.thingclips.smart.home.sdk.bean.scene.condition.property.IProperty",
|
1400
|
+
"com.tuya.smart.sdk.bean.BroadResponseConType": "com.thingclips.smart.sdk.bean.BroadResponseConType",
|
1401
|
+
"com.tuya.smart.android.user.api.IResetPasswordCallback": "com.thingclips.smart.android.user.api.IResetPasswordCallback",
|
1402
|
+
"com.tuya.smart.android.blemesh.api.ITuyaBlueMeshGroup": "com.thingclips.smart.android.blemesh.api.IThingBlueMeshGroup",
|
1403
|
+
"com.tuya.smart.android.blemesh.bean.MeshOperationBean": "com.thingclips.smart.android.blemesh.bean.MeshOperationBean",
|
1404
|
+
"com.tuya.smart.outdoor.bean.ProductIcon": "com.thingclips.smart.outdoor.bean.ProductIcon",
|
1405
|
+
"com.tuya.smart.outdoor.bean.req.ReportLocationReq": "com.thingclips.smart.outdoor.bean.req.ReportLocationReq",
|
1406
|
+
"com.tuya.smart.outdoor.interior.api.ITuyaODTrackPlugin": "com.thingclips.smart.outdoor.interior.api.IThingODTrackPlugin",
|
1407
|
+
"com.tuya.smart.optimus.sweeper.api.bean.SweeperFileListInfoBean": "com.thingclips.smart.optimus.sweeper.api.bean.SweeperFileListInfoBean",
|
1408
|
+
"com.tuya.smart.outdoor.api.IODStore": "com.thingclips.smart.outdoor.api.IODStore",
|
1409
|
+
"com.tuya.smart.optimus.sweeper.api.bean.HistoryResultBean": "com.thingclips.smart.optimus.sweeper.api.bean.HistoryResultBean",
|
1410
|
+
"com.tuya.smart.optimus.sweeper.api.bean.SweeperFileListPageBean": "com.thingclips.smart.optimus.sweeper.api.bean.SweeperFileListPageBean",
|
1411
|
+
"com.tuya.smart.optimus.sweeper.api.enums.SweeperFileDownloadEnum": "com.thingclips.smart.optimus.sweeper.api.enums.SweeperFileDownloadEnum",
|
1412
|
+
"com.tuya.smart.outdoor.api.IODSecurityService": "com.thingclips.smart.outdoor.api.IODSecurityService",
|
1413
|
+
"com.tuya.smart.optimus.sweeper.api.bean.CloudConfigBean": "com.thingclips.smart.optimus.sweeper.api.bean.CloudConfigBean",
|
1414
|
+
"com.tuya.smart.optimus.sweeper.api.ISweeperFileDownloadListener": "com.thingclips.smart.optimus.sweeper.api.ISweeperFileDownloadListener",
|
1415
|
+
"com.tuya.smart.outdoor.api.IODDeviceDPManager": "com.thingclips.smart.outdoor.api.IODDeviceDPManager",
|
1416
|
+
"com.tuya.smart.outdoor.bean.resp.StoreInfo": "com.thingclips.smart.outdoor.bean.resp.StoreInfo",
|
1417
|
+
"com.tuya.smart.outdoor.bean.req.StoreGetReq": "com.thingclips.smart.outdoor.bean.req.StoreGetReq",
|
1418
|
+
"com.tuya.smart.optimus.sweeper.api.bean.SweeperProgressbean": "com.thingclips.smart.optimus.sweeper.api.bean.SweeperProgressbean",
|
1419
|
+
"com.tuya.smart.outdoor.bean.req.TrackSegmentReq": "com.thingclips.smart.outdoor.bean.req.TrackSegmentReq",
|
1420
|
+
"com.tuya.smart.outdoor.bean.StoreInfoConstants": "com.thingclips.smart.outdoor.bean.StoreInfoConstants",
|
1421
|
+
"com.tuya.smart.optimus.sweeper.api.ITuyaSweeperKit": "com.thingclips.smart.optimus.sweeper.api.IThingSweeperKit",
|
1422
|
+
"com.tuya.smart.optimus.sweeper.api.bean.RecordListBean": "com.thingclips.smart.optimus.sweeper.api.bean.RecordListBean",
|
1423
|
+
"com.tuya.smart.optimus.sweeper.api.bean.RecordDetaiBean": "com.thingclips.smart.optimus.sweeper.api.bean.RecordDetaiBean",
|
1424
|
+
"com.tuya.smart.outdoor.api.IODTrack": "com.thingclips.smart.outdoor.api.IODTrack",
|
1425
|
+
"com.tuya.smart.outdoor.bean.req.StoreSearchReq": "com.thingclips.smart.outdoor.bean.req.StoreSearchReq",
|
1426
|
+
"com.tuya.smart.outdoor.interior.api.ITuyaODDevicePlugin": "com.thingclips.smart.outdoor.interior.api.IThingODDevicePlugin",
|
1427
|
+
"com.tuya.smart.outdoor.api.IODDeviceInfo": "com.thingclips.smart.outdoor.api.IODDeviceInfo",
|
1428
|
+
"com.tuya.smart.optimus.sweeper.api.ITuyaSweeperFileDownload": "com.thingclips.smart.optimus.sweeper.api.IThingSweeperFileDownload",
|
1429
|
+
"com.tuya.smart.optimus.sweeper.api.bean.SweeperDownloadBean": "com.thingclips.smart.optimus.sweeper.api.bean.SweeperDownloadBean",
|
1430
|
+
"com.tuya.smart.outdoor.bean.DeviceHardwareInfo": "com.thingclips.smart.outdoor.bean.DeviceHardwareInfo",
|
1431
|
+
"com.tuya.smart.optimus.sweeper.api.bean.PathConfig": "com.thingclips.smart.optimus.sweeper.api.bean.PathConfig",
|
1432
|
+
"com.tuya.smart.outdoor.bean.resp.TrackStatisticInfo": "com.thingclips.smart.outdoor.bean.resp.TrackStatisticInfo",
|
1433
|
+
"com.tuya.smart.optimus.sweeper.api.ITuyaSweeperKitSdk": "com.thingclips.smart.optimus.sweeper.api.IThingSweeperKitSdk",
|
1434
|
+
"com.tuya.smart.outdoor.bean.ProductMap": "com.thingclips.smart.outdoor.bean.ProductMap",
|
1435
|
+
"com.tuya.smart.outdoor.bean.req.TrackStatisticReq": "com.thingclips.smart.outdoor.bean.req.TrackStatisticReq",
|
1436
|
+
"com.tuya.smart.optimus.sweeper.api.ITuyaSweeperP2P": "com.thingclips.smart.optimus.sweeper.api.IThingSweeperP2P",
|
1437
|
+
"com.tuya.smart.outdoor.interior.api.ITuyaODStorePlugin": "com.thingclips.smart.outdoor.interior.api.IThingODStorePlugin",
|
1438
|
+
"com.tuya.smart.optimus.sweeper.api.ITuyaGyroscopeAndVisualSweeperKit": "com.thingclips.smart.optimus.sweeper.api.IThingGyroscopeAndVisualSweeperKit",
|
1439
|
+
"com.tuya.smart.outdoor.bean.resp.TrackSegmentInfo": "com.thingclips.smart.outdoor.bean.resp.TrackSegmentInfo",
|
1440
|
+
"com.tuya.smart.camera.ipccamerasdk.msgvideo.ITYCloudVideo": "com.thingclips.smart.camera.ipccamerasdk.msgvideo.IThingCloudVideo",
|
1441
|
+
"com.tuya.smart.android.camera.sdk.api.ITYCameraMessage": "com.thingclips.smart.android.camera.sdk.api.IThingCameraMessage"
|
1442
|
+
},
|
1443
|
+
"commonMap": {
|
1444
|
+
"TuyaOSDevice": "ThingOSDevice",
|
1445
|
+
"CreateTempPasswordResponse": "TempPasswordResponse",
|
1446
|
+
"TuyaLockNetorkApi": "ThingLockNetworkApi",
|
1447
|
+
"TuyaLockManager": "ThingLockManager",
|
1448
|
+
"TuyaUnlockType": "ThingUnlockType",
|
1449
|
+
"TuyaDeviceWrapper": "ThingDeviceWrapper",
|
1450
|
+
"TuyaBLEExtendManager": "ThingBLEExtendManager",
|
1451
|
+
"TuyaBleLockDevice": "ThingBleLockDevice",
|
1452
|
+
"ITuyaBleLock": "IThingBleLock",
|
1453
|
+
"val$ITuyaResultCallback": "val$IThingResultCallback",
|
1454
|
+
"ITuyaWifiLock": "IThingWifiLock",
|
1455
|
+
"ITuyaLockManager": "IThingLockManager",
|
1456
|
+
"tuyaDevice": "thingDevice",
|
1457
|
+
"TuyaWifiLockDevice": "ThingWifiLockDevice",
|
1458
|
+
"ITYCameraMessage": "IThingCameraMessage",
|
1459
|
+
"ITYCloudVideo": "IThingCloudVideo",
|
1460
|
+
"TuyaLightSceneSdk": "ThingLightSceneSdk",
|
1461
|
+
"AbsTuyaAssisantGuideService": "AbsThingAssisantGuideService",
|
1462
|
+
"TuyaDeviceActivatorManager": "ThingDeviceActivatorManager",
|
1463
|
+
"ITuyaDeviceActiveListener": "IThingDeviceActiveListener",
|
1464
|
+
"TuyaSocialLoginBindManager": "ThingSocialLoginBindManager",
|
1465
|
+
"TuyaWrapper": "ThingWrapper",
|
1466
|
+
"TuyaGroupManager": "ThingGroupManager",
|
1467
|
+
"ITuyaLightResultCallback": "IThingLightResultCallback",
|
1468
|
+
"TuyaLightSceneBean": "ThingLightSceneBean",
|
1469
|
+
"TuyaMallService": "ThingMallService",
|
1470
|
+
"ITuyaSceneBusinessService": "IThingSceneBusinessService",
|
1471
|
+
"TuyaOptimusSdk": "ThingOptimusSdk",
|
1472
|
+
"ITuyaMqttChannel": "IThingMqttChannel",
|
1473
|
+
"TuyaSdk": "ThingSdk",
|
1474
|
+
"ITuyaRoomManager": "IThingRoomManager",
|
1475
|
+
"getTuyaDeviceDataInstance": "getThingDeviceDataInstance",
|
1476
|
+
"ITuyaAPSLConfigListener": "IThingAPSLConfigListener",
|
1477
|
+
"ITuyaDevListCacheManager": "IThingDevListCacheManager",
|
1478
|
+
"newTuyaBluetoothFlow": "newThingBluetoothFlow",
|
1479
|
+
"TuyaVideoSEIInfo": "ThingVideoSEIInfo",
|
1480
|
+
"ITuyaMatterDevice": "IThingMatterDevice",
|
1481
|
+
"TUYA_LINK_DEVICE": "THING_LINK_DEVICE",
|
1482
|
+
"TuyaQRCodeActivatorBuilder": "ThingQRCodeActivatorBuilder",
|
1483
|
+
"ITuyaThirdProtocolSupport": "IThingThirdProtocolSupport",
|
1484
|
+
"TuyaVideoFrameInfo": "ThingVideoFrameInfo",
|
1485
|
+
"ITuyaDevicePlugin": "IThingDevicePlugin",
|
1486
|
+
"hasTuyaMeshCommunication": "hasThingMeshCommunication",
|
1487
|
+
"ITuyaCameraDevActivator": "IThingCameraDevActivator",
|
1488
|
+
"ITuyaDevActivatorListener": "IThingDevActivatorListener",
|
1489
|
+
"tuyaCache": "thingCache",
|
1490
|
+
"TuyaDirectlyDeviceActivatorBuilder": "ThingDirectlyDeviceActivatorBuilder",
|
1491
|
+
"ITuyaSmartBroadbandActivator": "IThingSmartBroadbandActivator",
|
1492
|
+
"ITuyaBlueMeshDevice": "IThingBlueMeshDevice",
|
1493
|
+
"ITuyaTimerPlugin": "IThingTimerPlugin",
|
1494
|
+
"ITuyaActivatorGetToken": "IThingActivatorGetToken",
|
1495
|
+
"TuyaIPCPlugin": "ThingIPCPlugin",
|
1496
|
+
"getTuyaSmartDeviceInstance": "getThingSmartDeviceInstance",
|
1497
|
+
"ITuyaBroadbandConnectTypeListener": "IThingBroadbandConnectTypeListener",
|
1498
|
+
"ITuyaWifiBackup": "IThingWifiBackup",
|
1499
|
+
"getHasTuyaMeshCommunication": "getHasThingMeshCommunication",
|
1500
|
+
"ITuyaSmartCameraP2P": "IThingSmartCameraP2P",
|
1501
|
+
"ITuyaMqttInterceptListener": "IThingMqttInterceptListener",
|
1502
|
+
"TuyaCameraView.CreateVideoViewCallback": "ThingCameraView.CreateVideoViewCallback",
|
1503
|
+
"ITuyaGetRoomListCallback": "IThingGetRoomListCallback",
|
1504
|
+
"TY_SPEED_10TIMES": "THING_SPEED_10TIMES",
|
1505
|
+
"ITuyaZigbeeGroup": "IThingZigbeeGroup",
|
1506
|
+
"ITuyaIPCDpHelper": "IThingIPCDpHelper",
|
1507
|
+
"ITuyaHomeScene": "IThingHomeScene",
|
1508
|
+
"setTuyaImagesUrl": "setThingImagesUrl",
|
1509
|
+
"ITuyaIPCCount": "IThingIPCCount",
|
1510
|
+
"ITuyaOTACenter": "IThingOTACenter",
|
1511
|
+
"ITuyaMatterFabricManager": "IThingMatterFabricManager",
|
1512
|
+
"ITuyaOta": "IThingOta",
|
1513
|
+
"TuyaSigMeshActivatorBuilder": "ThingSigMeshActivatorBuilder",
|
1514
|
+
"TY_SPEED_40TIMES": "THING_SPEED_40TIMES",
|
1515
|
+
"OnTuyaGeoFenceStatusListener": "OnThingGeoFenceStatusListener",
|
1516
|
+
"TY_PTZ_UP": "THING_PTZ_UP",
|
1517
|
+
"getMTuyaDeviceListener": "getMThingDeviceListener",
|
1518
|
+
"TUYA_CACHE_DIRECTORY": "THING_CACHE_DIRECTORY",
|
1519
|
+
"ITuyaBleConnectService": "IThingBleConnectService",
|
1520
|
+
"requestTuyaMeshList": "requestThingMeshList",
|
1521
|
+
"$iTuyaResultCallback": "$iThingResultCallback",
|
1522
|
+
"TYCloudCamera": "ThingCloudCamera",
|
1523
|
+
"TuyaBlueMeshActivatorBuilder": "ThingBlueMeshActivatorBuilder",
|
1524
|
+
"TY_SPEED_35TIMES": "THING_SPEED_35TIMES",
|
1525
|
+
"TY_PTZ_RIGHT": "THING_PTZ_RIGHT",
|
1526
|
+
"ITuyaIPCHomeProxy": "IThingIPCHomeProxy",
|
1527
|
+
"ITuyaGetBeanCallback": "IThingGetBeanCallback",
|
1528
|
+
"ITuyaHomeSceneManager": "IThingHomeSceneManager",
|
1529
|
+
"tuyaImagesUrl": "thingImagesUrl",
|
1530
|
+
"newTuyaBlueMeshSearch": "newThingBlueMeshSearch",
|
1531
|
+
"ITuyaMeshBatchDpUpdateListener": "IThingMeshBatchDpUpdateListener",
|
1532
|
+
"registerTuyaHomeChangeListener": "registerThingHomeChangeListener",
|
1533
|
+
"ITuyaGateway": "IThingGateway",
|
1534
|
+
"ITuyaDeviceOperate": "IThingDeviceOperate",
|
1535
|
+
"ITuyaCachePlugin": "IThingCachePlugin",
|
1536
|
+
"ITuyaDeviceBizPropBeanListManager": "IThingDeviceBizPropBeanListManager",
|
1537
|
+
"TuyaCameraView": "ThingCameraView",
|
1538
|
+
"ITuyaGroupCache": "IThingGroupCache",
|
1539
|
+
"TY_PTZ_LEFT": "THING_PTZ_LEFT",
|
1540
|
+
"ITuyaCameraPlugin": "IThingCameraPlugin",
|
1541
|
+
"TuyaExecutor.TuyaRunable": "ThingExecutor.ThingRunable",
|
1542
|
+
"ITuyaHomeSpeech": "IThingHomeSpeech",
|
1543
|
+
"ITuyaIPCTool": "IThingIPCTool",
|
1544
|
+
"TY_SPEED_15TIMES": "THING_SPEED_15TIMES",
|
1545
|
+
"ITuyaBluetoothFlow": "IThingBluetoothFlow",
|
1546
|
+
"ITuyaIPCMsgPlugin": "IThingIPCMsgPlugin",
|
1547
|
+
"TYDevicePublishModeEnum": "ThingDevicePublishModeEnum",
|
1548
|
+
"registerTuyaPushListener": "registerThingPushListener",
|
1549
|
+
"ITuyaHomeDeviceStatusListener": "IThingHomeDeviceStatusListener",
|
1550
|
+
"getTuyaAppUrl": "getThingAppUrl",
|
1551
|
+
"ITuyaBlueMeshInit": "IThingBlueMeshInit",
|
1552
|
+
"getTuyaBackupService": "getThingBackupService",
|
1553
|
+
"ITuyaNewScenePlugin": "IThingNewScenePlugin",
|
1554
|
+
"TY_CRUISE_PANORAMIC": "THING_CRUISE_PANORAMIC",
|
1555
|
+
"checkTuyaMatterDevice": "checkThingMatterDevice",
|
1556
|
+
"ITuyaHomeRelationUpdateListener": "IThingHomeRelationUpdateListener",
|
1557
|
+
"TY_DEV": "THING_DEV",
|
1558
|
+
"ITuyaIPCPTZ": "IThingIPCPTZ",
|
1559
|
+
"ITuyaGeoFencePlugin": "IThingGeoFencePlugin",
|
1560
|
+
"ITuyaMqttPlugin": "IThingMqttPlugin",
|
1561
|
+
"ITuyaRouterDiscoverListener": "IThingRouterDiscoverListener",
|
1562
|
+
"TuyaGwSubDevActivatorBuilder": "ThingGwSubDevActivatorBuilder",
|
1563
|
+
"TY_PTZ_CALIBRATING": "THING_PTZ_CALIBRATING",
|
1564
|
+
"TuyaMatterDataPoint": "ThingMatterDataPoint",
|
1565
|
+
"getTuyaBleAbility": "getThingBleAbility",
|
1566
|
+
"TY_CRUISE_TIME_24HOURS": "THING_CRUISE_TIME_24HOURS",
|
1567
|
+
"ITuyaIPCDoorBellMsgIntercept": "IThingIPCDoorBellMsgIntercept",
|
1568
|
+
"TuyaSmartThingModel": "ThingSmartThingModel",
|
1569
|
+
"ITuyaWifiGroup": "IThingWifiGroup",
|
1570
|
+
"ITuyaSmartTimer": "IThingSmartTimer",
|
1571
|
+
"TuyaCache.1": "ThingCache.1",
|
1572
|
+
"TY_CRUISE_COLLECTION_POINT": "THING_CRUISE_COLLECTION_POINT",
|
1573
|
+
"ITuyaSmartQRCodeActivatorListener": "IThingSmartQRCodeActivatorListener",
|
1574
|
+
"ITuyaHomeChangeListener": "IThingHomeChangeListener",
|
1575
|
+
"kTuyaSessionStatus_Connected": "kThingSessionStatus_Connected",
|
1576
|
+
"ITuyaMatterDevicePlugin": "IThingMatterDevicePlugin",
|
1577
|
+
"TuyaExecutor.TuyaBackupPolicyExecutorTuyaBackupPolicyExecutor.11.1": "ThingExecutor.ThingBackupPolicyExecutorThingBackupPolicyExecutor.11.1",
|
1578
|
+
"ITuyaDeviceInfoChangeListener": "IThingDeviceInfoChangeListener",
|
1579
|
+
"ITuyaAPConfig": "IThingAPConfig",
|
1580
|
+
"ITuyaExtBlueMeshOta": "IThingExtBlueMeshOta",
|
1581
|
+
"setITuyaGetBaseConfig": "setIThingGetBaseConfig",
|
1582
|
+
"getTuyaBleService": "getThingBleService",
|
1583
|
+
"ITuyaMeshManager": "IThingMeshManager",
|
1584
|
+
"ITuyaSearchDeviceListener": "IThingSearchDeviceListener",
|
1585
|
+
"mTuyaGetUserInfo": "mThingGetUserInfo",
|
1586
|
+
"ITuyaBleGateway": "IThingBleGateway",
|
1587
|
+
"ITuyaOTAService": "IThingOTAService",
|
1588
|
+
"unRegisterTuyaHardwareOnlineStatusListener": "unRegisterThingHardwareOnlineStatusListener",
|
1589
|
+
"access$setMTuyaDeviceCreated$p": "access$setMThingDeviceCreated$p",
|
1590
|
+
"ITuyaIPCPTZListener": "IThingIPCPTZListener",
|
1591
|
+
"ITuyaHomeCamera": "IThingHomeCamera",
|
1592
|
+
"TY_SPEED_320TIMES": "THING_SPEED_320TIMES",
|
1593
|
+
"tuyaIPCPTZMap": "thingIPCPTZMap",
|
1594
|
+
"ITuyaHardware": "IThingHardware",
|
1595
|
+
"setTuyaBlueMeshSearchListener": "setThingBlueMeshSearchListener",
|
1596
|
+
"ITuyaGroupModel": "IThingGroupModel",
|
1597
|
+
"ITuyaHomeDataLocalCache": "IThingHomeDataLocalCache",
|
1598
|
+
"TuyaConcurrentList.QueryListCallback": "ThingConcurrentList.QueryListCallback",
|
1599
|
+
"TuyaGeoFence.1": "ThingGeoFence.1",
|
1600
|
+
"TuyaExecutor.TuyaBackupPolicyExecutorTuyaBackupPolicyExecutor.2": "ThingExecutor.ThingBackupPolicyExecutorThingBackupPolicyExecutor.2",
|
1601
|
+
"TuyaExecutor.TuyaBackupPolicyExecutorTuyaBackupPolicyExecutor.1": "ThingExecutor.ThingBackupPolicyExecutorThingBackupPolicyExecutor.1",
|
1602
|
+
"ITuyaMatterDeviceCacheManager": "IThingMatterDeviceCacheManager",
|
1603
|
+
"TuyaBaseConfigManager": "ThingBaseConfigManager",
|
1604
|
+
"ITuyaDeviceDataManager": "IThingDeviceDataManager",
|
1605
|
+
"ITuyaDeviceDataCacheManager": "IThingDeviceDataCacheManager",
|
1606
|
+
"tuyaCamera": "thingCamera",
|
1607
|
+
"TuyaSmartThingMessageType": "ThingSmartThingMessageType",
|
1608
|
+
"TuyaPushBean.NotificationBean": "ThingPushBean.NotificationBean",
|
1609
|
+
"TuyaSdk.3": "ThingSdk.3",
|
1610
|
+
"TuyaSdk.4": "ThingSdk.4",
|
1611
|
+
"TuyaSdk.1": "ThingSdk.1",
|
1612
|
+
"TuyaSdk.2": "ThingSdk.2",
|
1613
|
+
"TuyaSdk.5": "ThingSdk.5",
|
1614
|
+
"TuyaBleUtil": "ThingBleUtil",
|
1615
|
+
"mTuyaSweeperPlugin": "mThingSweeperPlugin",
|
1616
|
+
"TY_SPEED_20TIMES": "THING_SPEED_20TIMES",
|
1617
|
+
"onTuyaDeviceFound": "onThingDeviceFound",
|
1618
|
+
"TuyaLEAudioStartArgs": "ThingLEAudioStartArgs",
|
1619
|
+
"ITuyaBleConfigListener": "IThingBleConfigListener",
|
1620
|
+
"ITuyaHardwareOnlineStatusListener": "IThingHardwareOnlineStatusListener",
|
1621
|
+
"ITuyaSmartRequest": "IThingSmartRequest",
|
1622
|
+
"ITuyaBroadbandConfigListener": "IThingBroadbandConfigListener",
|
1623
|
+
"ITuyaDelHistoryCallback": "IThingDelHistoryCallback",
|
1624
|
+
"ITuyaMatterDeviceConnectManager": "IThingMatterDeviceConnectManager",
|
1625
|
+
"ITuyaDeviceOnlineStatusListener": "IThingDeviceOnlineStatusListener",
|
1626
|
+
"TY_SPEED_80TIMES": "THING_SPEED_80TIMES",
|
1627
|
+
"BASE_ATTRIBUTE_TUYA_MATTER": "BASE_ATTRIBUTE_THING_MATTER",
|
1628
|
+
"ITuyaDeviceListManager": "IThingDeviceListManager",
|
1629
|
+
"ITuyaDeviceActivator": "IThingDeviceActivator",
|
1630
|
+
"ITuyaOtaServicePlugin": "IThingOtaServicePlugin",
|
1631
|
+
"ITuyaFeedback": "IThingFeedback",
|
1632
|
+
"getTuyaBleGateway": "getThingBleGateway",
|
1633
|
+
"TY_SPEED_30TIMES": "THING_SPEED_30TIMES",
|
1634
|
+
"TY_PTZ_ROTATE": "THING_PTZ_ROTATE",
|
1635
|
+
"ITuyaSweeperPlugin": "IThingSweeperPlugin",
|
1636
|
+
"TuyaMesh": "ThingMesh",
|
1637
|
+
"tuyaIPCHomeProxy": "thingIPCHomeProxy",
|
1638
|
+
"ITuyaBlueMeshSearch": "IThingBlueMeshSearch",
|
1639
|
+
"ITuyaMemberResultCallback": "IThingMemberResultCallback",
|
1640
|
+
"ITuyaFeedbackMag": "IThingFeedbackMag",
|
1641
|
+
"ITuyaWifiSwitch": "IThingWifiSwitch",
|
1642
|
+
"setHasTuyaMeshCommunication": "setHasThingMeshCommunication",
|
1643
|
+
"TuyaMatterDeviceBean": "ThingMatterDeviceBean",
|
1644
|
+
"TuyaAudioFrameInfo.1": "ThingAudioFrameInfo.1",
|
1645
|
+
"mTuyaDeviceSharePlugin": "mThingDeviceSharePlugin",
|
1646
|
+
"ITuyaSubDeviceOnlineStatusListener": "IThingSubDeviceOnlineStatusListener",
|
1647
|
+
"ITuyaActivatorCreateToken": "IThingActivatorCreateToken",
|
1648
|
+
"mTuyaDeviceCreated": "mThingDeviceCreated",
|
1649
|
+
"getTuyaBleController": "getThingBleController",
|
1650
|
+
"TuyaDevUpgradeStatusBean": "ThingDevUpgradeStatusBean",
|
1651
|
+
"TuyaBaseConfigManager.1": "ThingBaseConfigManager.1",
|
1652
|
+
"TuyaSmartNvrP2P": "ThingSmartNvrP2P",
|
1653
|
+
"unRegisterTuyaHomeChangeListener": "unRegisterThingHomeChangeListener",
|
1654
|
+
"getTuyaGetBaseConfig": "getThingGetBaseConfig",
|
1655
|
+
"ITuyaThirdProtocolDelegate": "IThingThirdProtocolDelegate",
|
1656
|
+
"setTy_scene_device_help": "setThing_scene_device_help",
|
1657
|
+
"TY_CAMERA_FOCUS_ENLARGE": "THING_CAMERA_FOCUS_ENLARGE",
|
1658
|
+
"ITuyaLightningActivator": "IThingLightningActivator",
|
1659
|
+
"TuyaVideoSEIInfo.AgtxBeanAgtxBean.IvaBeanIvaBean.OdBean": "ThingVideoSEIInfo.AgtxBeanAgtxBean.IvaBeanIvaBean.OdBean",
|
1660
|
+
"ITuyaBlueServicePlugin": "IThingBlueServicePlugin",
|
1661
|
+
"setTuyaAppUrl": "setThingAppUrl",
|
1662
|
+
"ITuyaSmartAPSendInfoListener": "IThingSmartAPSendInfoListener",
|
1663
|
+
"ITuyaDirectlyDeviceActivatorListener": "IThingDirectlyDeviceActivatorListener",
|
1664
|
+
"TuyaBleScanResponse": "ThingBleScanResponse",
|
1665
|
+
"ITuyaFeedbackManager": "IThingFeedbackManager",
|
1666
|
+
"TuyaBaseConfigManager.ViewHolder": "ThingBaseConfigManager.ViewHolder",
|
1667
|
+
"tuyaProductId": "thingProductId",
|
1668
|
+
"ITuyaSweeperDataListener": "IThingSweeperDataListener",
|
1669
|
+
"createTuyaMeshCommandParams": "createThingMeshCommandParams",
|
1670
|
+
"TY_CAMERA_FOCUS_SHRINK": "THING_CAMERA_FOCUS_SHRINK",
|
1671
|
+
"ITuyaBlueMeshSearchListener": "IThingBlueMeshSearchListener",
|
1672
|
+
"TuyaFrame": "ThingFrame",
|
1673
|
+
"ITuyaMeshGroup": "IThingMeshGroup",
|
1674
|
+
"ITuyaDpsUpdateManager": "IThingDpsUpdateManager",
|
1675
|
+
"TuyaBlueMeshOtaBuilder": "ThingBlueMeshOtaBuilder",
|
1676
|
+
"TY_PTZ_LEFT_DOWN": "THING_PTZ_LEFT_DOWN",
|
1677
|
+
"tuyaBlueMeshSearchListener": "thingBlueMeshSearchListener",
|
1678
|
+
"ITuyaHardwareQueryManager": "IThingHardwareQueryManager",
|
1679
|
+
"TuyaQueryInfoBuilder": "ThingQueryInfoBuilder",
|
1680
|
+
"ITuyaHome": "IThingHome",
|
1681
|
+
"ITuyaMatterActivatorCallback": "IThingMatterActivatorCallback",
|
1682
|
+
"ITuyaHardwareQuery": "IThingHardwareQuery",
|
1683
|
+
"ITuyaDeviceMessageManager": "IThingDeviceMessageManager",
|
1684
|
+
"ITuyaGetHomeListCallback": "IThingGetHomeListCallback",
|
1685
|
+
"ITuyaDevDirectActivatorListener": "IThingDevDirectActivatorListener",
|
1686
|
+
"TYDoorBellCallModel": "ThingDoorBellCallModel",
|
1687
|
+
"ITuyaIPCDevice": "IThingIPCDevice",
|
1688
|
+
"ITuyaSigMeshClient": "IThingSigMeshClient",
|
1689
|
+
"TuyaAudioFrameInfo": "ThingAudioFrameInfo",
|
1690
|
+
"ITuyaHomeDeviceShare": "IThingHomeDeviceShare",
|
1691
|
+
"TuyaLEAudioDataArgs": "ThingLEAudioDataArgs",
|
1692
|
+
"TuyaSmartThingAction": "ThingSmartThingAction",
|
1693
|
+
"ITuyaGeoFenceOperatePlugin": "IThingGeoFenceOperatePlugin",
|
1694
|
+
"TY_CRUISE_TIME_TIMING": "THING_CRUISE_TIME_TIMING",
|
1695
|
+
"newTuyaDeviceDataCacheManager": "newThingDeviceDataCacheManager",
|
1696
|
+
"ITuyaQRCodeDevActivator": "IThingQRCodeDevActivator",
|
1697
|
+
"mTuyaDevice$delegate": "mThingDevice$delegate",
|
1698
|
+
"ITuyaIPCExtPlugin": "IThingIPCExtPlugin",
|
1699
|
+
"ITuyaOtaPlugin": "IThingOtaPlugin",
|
1700
|
+
"ITuyaMatterMultipleFabricDevice": "IThingMatterMultipleFabricDevice",
|
1701
|
+
"ITuyaGroupPlugin": "IThingGroupPlugin",
|
1702
|
+
"ITuyaSweeperNameUpdateCallback": "IThingSweeperNameUpdateCallback",
|
1703
|
+
"TuyaIPCSdk": "ThingIPCSdk",
|
1704
|
+
"ITuyaTransferCallback": "IThingTransferCallback",
|
1705
|
+
"ITuyaHardwareBusiness": "IThingHardwareBusiness",
|
1706
|
+
"ITuyaHomeManager": "IThingHomeManager",
|
1707
|
+
"ITuyaGeoFenceOperate": "IThingGeoFenceOperate",
|
1708
|
+
"ITuyaIPCCore": "IThingIPCCore",
|
1709
|
+
"TuyaTimerBuilder": "ThingTimerBuilder",
|
1710
|
+
"TuyaVideoSEIInfo.AgtxBean": "ThingVideoSEIInfo.AgtxBean",
|
1711
|
+
"ITuyaBeaconManager": "IThingBeaconManager",
|
1712
|
+
"tuyaAppUrl": "thingAppUrl",
|
1713
|
+
"ITuyaIPCDoorBellManager": "IThingIPCDoorBellManager",
|
1714
|
+
"TY_SPEED_25TIMES": "THING_SPEED_25TIMES",
|
1715
|
+
"ITuyaBleManager": "IThingBleManager",
|
1716
|
+
"ITuyaMatterDevActivator.IDeviceCommissionListener": "IThingMatterDevActivator.IDeviceCommissionListener",
|
1717
|
+
"TuyaVideoSEIInfo.AgtxBeanAgtxBean.IvaBeanIvaBean.OdBeanOdBean.ObjBean": "ThingVideoSEIInfo.AgtxBeanAgtxBean.IvaBeanIvaBean.OdBeanOdBean.ObjBean",
|
1718
|
+
"ITuyaHomeResultCallback": "IThingHomeResultCallback",
|
1719
|
+
"ITuyaGwSearcher": "IThingGwSearcher",
|
1720
|
+
"ITuyaActivator": "IThingActivator",
|
1721
|
+
"ITuyaBleAbility": "IThingBleAbility",
|
1722
|
+
"getMTuyaDevice": "getMThingDevice",
|
1723
|
+
"TuyaCache": "ThingCache",
|
1724
|
+
"TY_PTZ_RIGHT_UP": "THING_PTZ_RIGHT_UP",
|
1725
|
+
"ITuyaDeviceUpgradeStatusCallback": "IThingDeviceUpgradeStatusCallback",
|
1726
|
+
"ITuyaVoiceTransfer": "IThingVoiceTransfer",
|
1727
|
+
"ITuyaGetBaseConfig": "IThingGetBaseConfig",
|
1728
|
+
"ITuyaDevEventListener": "IThingDevEventListener",
|
1729
|
+
"getTuyaMeshService": "getThingMeshService",
|
1730
|
+
"ITuyaDevice": "IThingDevice",
|
1731
|
+
"ITuyaZigBeeLocalScene": "IThingZigBeeLocalScene",
|
1732
|
+
"TuyaSmartSdk": "ThingSmartSdk",
|
1733
|
+
"TuyaSmartThingProperty": "ThingSmartThingProperty",
|
1734
|
+
"ITuyaHomePlugin": "IThingHomePlugin",
|
1735
|
+
"ITuyaTimer": "IThingTimer",
|
1736
|
+
"TuyaTimelineView": "ThingTimelineView",
|
1737
|
+
"IPCTuyaStationP2PCamera": "IPCThingStationP2PCamera",
|
1738
|
+
"ITuyaSweeper": "IThingSweeper",
|
1739
|
+
"TuyaTimerBuilder.Builder": "ThingTimerBuilder.Builder",
|
1740
|
+
"getTuyaFeekback": "getThingFeekback",
|
1741
|
+
"ITuyaZigBeeConfigLocalSceneCallback": "IThingZigBeeConfigLocalSceneCallback",
|
1742
|
+
"TuyaVideoFrameInfo.1": "ThingVideoFrameInfo.1",
|
1743
|
+
"ITuyaLEAudioManager": "IThingLEAudioManager",
|
1744
|
+
"getTuyaDeviceBizPropBeanListManager": "getThingDeviceBizPropBeanListManager",
|
1745
|
+
"ITuyaHomePatch": "IThingHomePatch",
|
1746
|
+
"setTuyaProductId": "setThingProductId",
|
1747
|
+
"ITuyaLinkDeviceListener": "IThingLinkDeviceListener",
|
1748
|
+
"ITuyaDataCallback": "IThingDataCallback",
|
1749
|
+
"TuyaBroadbandActivatorBuilder": "ThingBroadbandActivatorBuilder",
|
1750
|
+
"ITuyaBlueMesh": "IThingBlueMesh",
|
1751
|
+
"ITuyaUserListenerPlugin": "IThingUserListenerPlugin",
|
1752
|
+
"TuyaAutoConfigActivatorBuilder": "ThingAutoConfigActivatorBuilder",
|
1753
|
+
"TY_MATTER": "THING_MATTER",
|
1754
|
+
"TuyaIPCCount": "ThingIPCCount",
|
1755
|
+
"ITuyaSweeperByteDataListener": "IThingSweeperByteDataListener",
|
1756
|
+
"android:name=\"TUYA_SMART_APPKEY\"": "android:name=\"THING_SMART_APPKEY\"",
|
1757
|
+
"android:name=\"TUYA_SMART_SECRET\"": "android:name=\"THING_SMART_SECRET\"",
|
1758
|
+
"ITuyaHomeRoomInfoChangeListener": "IThingHomeRoomInfoChangeListener",
|
1759
|
+
"ITuyaDeviceOperator": "IThingDeviceOperator",
|
1760
|
+
"TuyaUtil": "ThingUtil",
|
1761
|
+
"ITuyaHomeMember": "IThingHomeMember",
|
1762
|
+
"TyBleScanResponse": "ThingBleScanResponse",
|
1763
|
+
"ITuyaBlueMeshConfig": "IThingBlueMeshConfig",
|
1764
|
+
"ITuyaHomeDataManager": "IThingHomeDataManager",
|
1765
|
+
"ITuyaDeviceUpgradeStatusExtCallback": "IThingDeviceUpgradeStatusExtCallback",
|
1766
|
+
"TY_PTZ_RIGHT_DOWN": "THING_PTZ_RIGHT_DOWN",
|
1767
|
+
"ITuyaMqttRetainChannelListener": "IThingMqttRetainChannelListener",
|
1768
|
+
"ITuyaDeviceDpChangeListener": "IThingDeviceDpChangeListener",
|
1769
|
+
"ITuyaProductPanelManager": "IThingProductPanelManager",
|
1770
|
+
"TY_BEACON": "THING_BEACON",
|
1771
|
+
"TuyaCache.Holder": "ThingCache.Holder",
|
1772
|
+
"TuyaBaseSdk": "ThingBaseSdk",
|
1773
|
+
"ITuyaBlueMeshClient": "IThingBlueMeshClient",
|
1774
|
+
"ty_activator_custom_service_url": "thing_activator_custom_service_url",
|
1775
|
+
"ITuyaDirectActivator": "IThingDirectActivator",
|
1776
|
+
"ITuyaMatterDevActivator": "IThingMatterDevActivator",
|
1777
|
+
"TuyaCameraActivatorBuilder": "ThingCameraActivatorBuilder",
|
1778
|
+
"getTuyaThirdProtocolSupport": "getThingThirdProtocolSupport",
|
1779
|
+
"newTuyaZigBeeLocalScene": "newThingZigBeeLocalScene",
|
1780
|
+
"TY_SPEED_05TIMES": "THING_SPEED_05TIMES",
|
1781
|
+
"ITuyaGwActivator": "IThingGwActivator",
|
1782
|
+
"ITuyaBlueMeshGroup": "IThingBlueMeshGroup",
|
1783
|
+
"ty_scene_device_help": "thing_scene_device_help",
|
1784
|
+
"TY_PTZ_LEFT_UP": "THING_PTZ_LEFT_UP",
|
1785
|
+
"getTuyaSmartTimer": "getThingSmartTimer",
|
1786
|
+
"TuyaSmartThingEvent": "ThingSmartThingEvent",
|
1787
|
+
"registerTuyaHardwareOnlineStatusListener": "registerThingHardwareOnlineStatusListener",
|
1788
|
+
"ITuyaScenePlugin": "IThingScenePlugin",
|
1789
|
+
"ITuyaDeviceUpgradeStatusCallback.UpgradeStatusEnum": "IThingDeviceUpgradeStatusCallback.UpgradeStatusEnum",
|
1790
|
+
"TuyaExecutor.1": "ThingExecutor.1",
|
1791
|
+
"TuyaActivityLifecycleCallback.11.1": "ThingActivityLifecycleCallback.11.1",
|
1792
|
+
"TuyaExecutor.2": "ThingExecutor.2",
|
1793
|
+
"TuyaLocalNormalControlBean": "ThingLocalNormalControlBean",
|
1794
|
+
"getTuyaBlueMeshSearchListener": "getThingBlueMeshSearchListener",
|
1795
|
+
"newTuyaGwActivator": "newThingGwActivator",
|
1796
|
+
"initTuyaData": "initThingData",
|
1797
|
+
"TuyaVirtualCamera": "ThingVirtualCamera",
|
1798
|
+
"ITuyaMeshRawReportListener": "IThingMeshRawReportListener",
|
1799
|
+
"TuyaSmartSdk.1": "ThingSmartSdk.1",
|
1800
|
+
"ITuyaRoom": "IThingRoom",
|
1801
|
+
"ITuyaBlueMeshActivator": "IThingBlueMeshActivator",
|
1802
|
+
"getTuyaBeaconManager": "getThingBeaconManager",
|
1803
|
+
"ITuyaIPCMsg": "IThingIPCMsg",
|
1804
|
+
"TuyaSmartCameraP2PFactory": "ThingSmartCameraP2PFactory",
|
1805
|
+
"mTuyaDeviceListener$delegate": "mThingDeviceListener$delegate",
|
1806
|
+
"ITuyaRouterConfigListener": "IThingRouterConfigListener",
|
1807
|
+
"TY_CRUISE_NONE": "THING_CRUISE_NONE",
|
1808
|
+
"ITuyaBlueMeshOta": "IThingBlueMeshOta",
|
1809
|
+
"TuyaLEAudioProvideArgs": "ThingLEAudioProvideArgs",
|
1810
|
+
"TY_GW": "THING_GW",
|
1811
|
+
"TuyaDirectlyConnectedActivatorBuilder": "ThingDirectlyConnectedActivatorBuilder",
|
1812
|
+
"ITuyaBlueMeshPlugin": "IThingBlueMeshPlugin",
|
1813
|
+
"ITuyaGeoFence": "IThingGeoFence",
|
1814
|
+
"TuyaGwActivatorBuilder": "ThingGwActivatorBuilder",
|
1815
|
+
"ITuyaHomeRoomInfoChangeExListener": "IThingHomeRoomInfoChangeExListener",
|
1816
|
+
"TuyaExecutor": "ThingExecutor",
|
1817
|
+
"getTuyaBlueMeshConfig": "getThingBlueMeshConfig",
|
1818
|
+
"MQ_803_TuyaPushBean": "MQ_803_ThingPushBean",
|
1819
|
+
"ITuyaWifiBase": "IThingWifiBase",
|
1820
|
+
"TY_EZ": "THING_EZ",
|
1821
|
+
"bindTuyaLinkDeviceWithQRCode": "bindThingLinkDeviceWithQRCode",
|
1822
|
+
"ITuyaHardwarePlugin": "IThingHardwarePlugin",
|
1823
|
+
"ITuyaByteDataListener": "IThingByteDataListener",
|
1824
|
+
"ITuyaUserAggregationPlugin": "IThingUserAggregationPlugin",
|
1825
|
+
"mTuyaExecutor": "mThingExecutor",
|
1826
|
+
"iTuyaBlueMeshActivator": "iThingBlueMeshActivator",
|
1827
|
+
"ITuyaBleOperator": "IThingBleOperator",
|
1828
|
+
"TuyaHomeSdk": "ThingHomeSdk",
|
1829
|
+
"getTuyaBleOperator": "getThingBleOperator",
|
1830
|
+
"ITuyaPersonalCenterPlugin": "IThingPersonalCenterPlugin",
|
1831
|
+
"tuyaIPC": "thingIPC",
|
1832
|
+
"ITuyaCommonTimer": "IThingCommonTimer",
|
1833
|
+
"TuyaPushBean.NotificationBeanNotificationBean.ExtraBean": "ThingPushBean.NotificationBeanNotificationBean.ExtraBean",
|
1834
|
+
"TuyaGeoFence": "ThingGeoFence",
|
1835
|
+
"getTuyaMeshParseBean": "getThingMeshParseBean",
|
1836
|
+
"getTuyaImagesUrl": "getThingImagesUrl",
|
1837
|
+
"TY_AP": "THING_AP",
|
1838
|
+
"tuyaNetworkInterface": "thingNetworkInterface",
|
1839
|
+
"getTuyaBlueMeshClient": "getThingBlueMeshClient",
|
1840
|
+
"ITuyaMeshControl": "IThingMeshControl",
|
1841
|
+
"mTuyaBlePlugin": "mThingBlePlugin",
|
1842
|
+
"ITuyaMatterMultipleFabricDevice.MultipleFabricPasscode": "IThingMatterMultipleFabricDevice.MultipleFabricPasscode",
|
1843
|
+
"TuyaConcurrentList": "ThingConcurrentList",
|
1844
|
+
"TuyaSmartCameraP2PSync": "ThingSmartCameraP2PSync",
|
1845
|
+
"ITuyaLightningSearchListener": "IThingLightningSearchListener",
|
1846
|
+
"TuyaLEAudioEnum.LEAudioFormat": "ThingLEAudioEnum.LEAudioFormat",
|
1847
|
+
"TuyaHide": "ThingHide",
|
1848
|
+
"getTuyaMeshList": "getThingMeshList",
|
1849
|
+
"TuyaSmartDoorBellObserver": "ThingSmartDoorBellObserver",
|
1850
|
+
"ITuyaSmartCameraActivatorListener": "IThingSmartCameraActivatorListener",
|
1851
|
+
"ITuyaMessage": "IThingMessage",
|
1852
|
+
"ITuyaIPCPlugin": "IThingIPCPlugin",
|
1853
|
+
"TuyaSdk.33.1": "ThingSdk.33.1",
|
1854
|
+
"ITuyaDeviceMultiControl": "IThingDeviceMultiControl",
|
1855
|
+
"ITuyaCloudConfigCallback": "IThingCloudConfigCallback",
|
1856
|
+
"getTy_scene_device_help": "getThing_scene_device_help",
|
1857
|
+
"TuyaLEAudioEnum": "ThingLEAudioEnum",
|
1858
|
+
"ITuyaResultCallback": "IThingResultCallback",
|
1859
|
+
"ITuyaIPCDoorbell": "IThingIPCDoorbell",
|
1860
|
+
"isTuyaMatter": "isThingMatter",
|
1861
|
+
"ITuyaRoomResultCallback": "IThingRoomResultCallback",
|
1862
|
+
"TuyaBroadbandConfigBuilder": "ThingBroadbandConfigBuilder",
|
1863
|
+
"ITuyaSmartNvrP2P": "IThingSmartNvrP2P",
|
1864
|
+
"ITuyaUserPlugin": "IThingUserPlugin",
|
1865
|
+
"ITuyaGetMemberListCallback": "IThingGetMemberListCallback",
|
1866
|
+
"TuyaLEAudioEnum.LEAudioState": "ThingLEAudioEnum.LEAudioState",
|
1867
|
+
"ITuyaBleController": "IThingBleController",
|
1868
|
+
"createTuyaMesh": "createThingMesh",
|
1869
|
+
"ITuyaDeviceActivatorPlugin": "IThingDeviceActivatorPlugin",
|
1870
|
+
"TuyaEventBus": "ThingEventBus",
|
1871
|
+
"ITuyaPush": "IThingPush",
|
1872
|
+
"getTuyaExecutorService": "getThingExecutorService",
|
1873
|
+
"getTuyaTimerManagerInstance": "getThingTimerManagerInstance",
|
1874
|
+
"ITuyaLightningSearcher": "IThingLightningSearcher",
|
1875
|
+
"TuyaIPCConstant": "ThingIPCConstant",
|
1876
|
+
"ITuyaBlePlugin": "IThingBlePlugin",
|
1877
|
+
"getTy_activator_custom_service_url": "getThing_activator_custom_service_url",
|
1878
|
+
"TY_PTZ_DOWN": "THING_PTZ_DOWN",
|
1879
|
+
"TuyaActivityLifecycleCallback.1": "ThingActivityLifecycleCallback.1",
|
1880
|
+
"setTy_activator_custom_service_url": "setThing_activator_custom_service_url",
|
1881
|
+
"TuyaVideoSEIInfo.AgtxBeanAgtxBean.IvaBean": "ThingVideoSEIInfo.AgtxBeanAgtxBean.IvaBean",
|
1882
|
+
"TuyaActivityLifecycleCallback": "ThingActivityLifecycleCallback",
|
1883
|
+
"TUYA_TAG": "THING_TAG",
|
1884
|
+
"registerTuyaLinkMessageListener": "registerThingLinkMessageListener",
|
1885
|
+
"TuyaSmartThingServiceModel": "ThingSmartThingServiceModel",
|
1886
|
+
"TuyaExecutor.TuyaBackupPolicyExecutor": "ThingExecutor.ThingBackupPolicyExecutor",
|
1887
|
+
"ITuyaSingleTransfer": "IThingSingleTransfer",
|
1888
|
+
"ITuyaUser": "IThingUser",
|
1889
|
+
"ITuyaHomeStatusListener": "IThingHomeStatusListener",
|
1890
|
+
"OnTuyaGeoFencesListener": "OnThingGeoFencesListener",
|
1891
|
+
"setTuyaBlueMeshActivatorListener": "setThingBlueMeshActivatorListener",
|
1892
|
+
"TY_QR": "THING_QR",
|
1893
|
+
"ITuyaHardwareResultCallback": "IThingHardwareResultCallback",
|
1894
|
+
"TyCommonUtil": "ThingCommonUtil",
|
1895
|
+
"TUYA_DEVICE": "THING_DEVICE",
|
1896
|
+
"access$getMTuyaDeviceCreated$p": "access$getMThingDeviceCreated$p",
|
1897
|
+
"TuyaLocalControlBean": "ThingLocalControlBean",
|
1898
|
+
"getTuyaProductId": "getThingProductId",
|
1899
|
+
"ITuyaDeviceSharePlugin": "IThingDeviceSharePlugin",
|
1900
|
+
"ITuyaIPCCloud": "IThingIPCCloud",
|
1901
|
+
"TuyaIOTCameraInfo": "ThingIOTCameraInfo",
|
1902
|
+
"ITuyaGeoFenceOperate.InitialTrigger": "IThingGeoFenceOperate.InitialTrigger",
|
1903
|
+
"TY_SPEED_160TIMES": "THING_SPEED_160TIMES",
|
1904
|
+
"unRegisterTuyaLinkMessageListener": "unRegisterThingLinkMessageListener",
|
1905
|
+
"ITuyaLogPlugin": "IThingLogPlugin",
|
1906
|
+
"isTuyaMeshCloudOnline": "isThingMeshCloudOnline",
|
1907
|
+
"ITuyaDeviceCommunicationListener": "IThingDeviceCommunicationListener",
|
1908
|
+
"TuyaPushBean": "ThingPushBean",
|
1909
|
+
"getTuyaSigMeshClient": "getThingSigMeshClient",
|
1910
|
+
"ITuyaMatterDeviceConnectManager.IRestartDiscoveryListener": "IThingMatterDeviceConnectManager.IRestartDiscoveryListener",
|
1911
|
+
"generateTuyaSmartCamera": "generateThingSmartCamera",
|
1912
|
+
"TuyaLEAudioEnum.LEAudioCode": "ThingLEAudioEnum.LEAudioCode",
|
1913
|
+
"getTuyaBlueMeshActivatorListener": "getThingBlueMeshActivatorListener",
|
1914
|
+
"ITuyaSmartActivatorListener": "IThingSmartActivatorListener",
|
1915
|
+
"ITuyaBlueMeshBusiness": "IThingBlueMeshBusiness",
|
1916
|
+
"ITuyaEZConfig": "IThingEZConfig",
|
1917
|
+
"ITuyaGroup": "IThingGroup",
|
1918
|
+
"TuyaSmartCameraP2P": "ThingSmartCameraP2P",
|
1919
|
+
"TUYA_MESH": "THING_MESH",
|
1920
|
+
"ITuyaBlueMeshActivatorListener": "IThingBlueMeshActivatorListener",
|
1921
|
+
"ITuyaServer": "IThingServer",
|
1922
|
+
"TuyaSmartNvrSubCameraP2P": "ThingSmartNvrSubCameraP2P",
|
1923
|
+
"getTuyaBleManager": "getThingBleManager",
|
1924
|
+
"IPCTuyaP2PCamera": "IPCThingP2PCamera",
|
1925
|
+
"TuyaNvrSDKImpl": "ThingNvrSDKImpl",
|
1926
|
+
"getTuyaLEAudioManager": "getThingLEAudioManager",
|
1927
|
+
"ITuyaMeshService": "IThingMeshService",
|
1928
|
+
"ITuyaWiredConfig": "IThingWiredConfig",
|
1929
|
+
"TuyaComponentsService": "ThingComponentsService",
|
1930
|
+
"TuyaLightningDevActivatorBuilder": "ThingLightningDevActivatorBuilder",
|
1931
|
+
"TYPE_TUYA_DEIVCE": "TYPE_THING_DEIVCE",
|
1932
|
+
"ITuyaSweeperP2P": "IThingSweeperP2P",
|
1933
|
+
"ITuyaODDevicePlugin": "IThingODDevicePlugin",
|
1934
|
+
"ITuyaSweeperKit": "IThingSweeperKit",
|
1935
|
+
"ITuyaODTrackPlugin": "IThingODTrackPlugin",
|
1936
|
+
"ITuyaODStorePlugin": "IThingODStorePlugin",
|
1937
|
+
"ITuyaSweeperKitSdk": "IThingSweeperKitSdk",
|
1938
|
+
"SOURCE_TUYA": "SOURCE_THING",
|
1939
|
+
"ITuyaGyroscopeAndVisualSweeperKit": "IThingGyroscopeAndVisualSweeperKit",
|
1940
|
+
"ITuyaSweeperFileDownload": "IThingSweeperFileDownload"
|
1941
|
+
},
|
1942
|
+
"dependencies": [
|
1943
|
+
{
|
1944
|
+
"version": "5.0.0",
|
1945
|
+
"deps": {
|
1946
|
+
"com.tuya.smart:tuyasmart": "com.thingclips.smart:thingsmart"
|
1947
|
+
}
|
1948
|
+
},
|
1949
|
+
{
|
1950
|
+
"version": "4.8.0-4",
|
1951
|
+
"deps": {
|
1952
|
+
"com.tuya.smart:tuyasmart-bizbundle-amazon_google_bind": "com.thingclips.smart:thingsmart-bizbundle-amazon_google_bind",
|
1953
|
+
"com.tuya.smart:tuyasmart-bizbundle-cloud_storage": "com.thingclips.smart:thingsmart-bizbundle-cloud_storage",
|
1954
|
+
"com.tuya.smart:tuyasmart-bizbundle-control": "com.thingclips.smart:thingsmart-bizbundle-control",
|
1955
|
+
"com.tuya.smart:tuyasmart-bizbundle-family": "com.thingclips.smart:thingsmart-bizbundle-family",
|
1956
|
+
"com.tuya.smart:tuyasmart-bizbundle-panelmore": "com.thingclips.smart:thingsmart-bizbundle-panelmore",
|
1957
|
+
"com.tuya.smart:tuyasmart-bizbundle-feedback": "com.thingclips.smart:thingsmart-bizbundle-feedback",
|
1958
|
+
"com.tuya.smart:tuyasmart-bizbundle-groupmanager": "com.thingclips.smart:thingsmart-bizbundle-groupmanager",
|
1959
|
+
"com.tuya.smart:tuyasmart-bizbundle-camera": "com.thingclips.smart:thingsmart-bizbundle-camera",
|
1960
|
+
"com.tuya.smart:tuyasmart-bizbundle-light_scene": "com.thingclips.smart:thingsmart-bizbundle-light_scene",
|
1961
|
+
"com.tuya.smart:tuyasmart-bizbundle-map_amap": "com.thingclips.smart:thingsmart-bizbundle-map_amap",
|
1962
|
+
"com.tuya.smart:tuyasmart-bizbundle-location_amap": "com.thingclips.smart:thingsmart-bizbundle-location_amap",
|
1963
|
+
"com.tuya.smart:tuyasmart-bizbundle-map_google": "com.thingclips.smart:thingsmart-bizbundle-map_google",
|
1964
|
+
"com.tuya.smart:tuyasmart-bizbundle-location_google": "com.thingclips.smart:thingsmart-bizbundle-location_google",
|
1965
|
+
"com.tuya.smart:tuyasmart-bizbundle-mall": "com.thingclips.smart:thingsmart-bizbundle-mall",
|
1966
|
+
"com.tuya.smart:tuyasmart-bizbundle-message": "com.thingclips.smart:thingsmart-bizbundle-message",
|
1967
|
+
"com.tuya.smart:tuyasmart-bizbundle-ota": "com.thingclips.smart:thingsmart-bizbundle-ota",
|
1968
|
+
"com.tuya.smart:tuyasmart-bizbundle-panel": "com.thingclips.smart:thingsmart-bizbundle-panel",
|
1969
|
+
"com.tuya.smart:tuyasmart-bizbundle-camera_panel": "com.thingclips.smart:thingsmart-bizbundle-camera_panel",
|
1970
|
+
"com.tuya.smart:tuyasmart-bizbundle-scene": "com.thingclips.smart:thingsmart-bizbundle-scene",
|
1971
|
+
"com.tuya.smart:tuyasmart-bizbundle-share": "com.thingclips.smart:thingsmart-bizbundle-share",
|
1972
|
+
"com.tuya.smart:tuyasmart-bizbundle-speech": "com.thingclips.smart:thingsmart-bizbundle-speech"
|
1973
|
+
}
|
1974
|
+
},
|
1975
|
+
{
|
1976
|
+
"version": "4.9.0-7",
|
1977
|
+
"deps": {
|
1978
|
+
"com.tuya.smart:tuyasmart-bizbundle-device_activator": "com.thingclips.smart:thingsmart-bizbundle-device_activator"
|
1979
|
+
}
|
1980
|
+
},
|
1981
|
+
{
|
1982
|
+
"version": "4.8.0",
|
1983
|
+
"deps": {
|
1984
|
+
"com.tuya.smart:tuyasmart-demo-login": "com.thingclips.smart:thingsmart-demo-login"
|
1985
|
+
}
|
1986
|
+
},
|
1987
|
+
{
|
1988
|
+
"version": "1.0.0",
|
1989
|
+
"deps": {
|
1990
|
+
"com.tuya.smart:tuyasmart-theme-open": "com.thingclips.smart:thingsmart-theme-open"
|
1991
|
+
}
|
1992
|
+
},
|
1993
|
+
{
|
1994
|
+
"version": "4.5.0-rc.1",
|
1995
|
+
"deps": {
|
1996
|
+
"com.tuya.smart:tuyasmart-commonbiz-relation-api": "com.thingclips.smart:thingsmart-commonbiz-relation-api",
|
1997
|
+
"com.tuya.smart:tuyasmart-react-native-amap": "com.thingclips.smart:thingsmart-react-native-amap",
|
1998
|
+
"com.tuya.smart:tuyasmart-react-native-googlemap": "com.thingclips.smart:thingsmart-react-native-googlemap"
|
1999
|
+
}
|
2000
|
+
},
|
2001
|
+
{
|
2002
|
+
"version": "4.8.0-rc.1",
|
2003
|
+
"deps": {
|
2004
|
+
"com.tuya.smart:tuyasmart-commonbiz-bizbundle-family-api": "com.thingclips.smart:thingsmart-commonbiz-bizbundle-family-api"
|
2005
|
+
}
|
2006
|
+
},
|
2007
|
+
{
|
2008
|
+
"version": "4.8.0-rc.3",
|
2009
|
+
"deps": {
|
2010
|
+
"com.tuya.smart:tuyasmart-commonbiz-family": "com.thingclips.smart:thingsmart-commonbiz-family"
|
2011
|
+
}
|
2012
|
+
}
|
2013
|
+
]
|
2014
|
+
}
|