Last Updated on : 2024-06-17 07:53:58download
Cloud storage debugging tool helps you easily check cloud storage data. In the earlier use of the IPC SDK, to troubleshoot cloud storage errors, a great deal of time was spent on coding for data capture. To simplify the troubleshooting process, you can integrate the cloud storage debugging tool so that data of cloud-stored images and videos can be captured or tested within a few steps.
Scenario 1: After cloud-stored videos are requested and displayed, the videos failed to be played back as expected.
Solution: Use the debugging tool to test whether cloud-stored videos can be played back as expected.
Scenario 2: The images of detection events cannot be displayed.
Solution: Use the debugging tool to test whether the images of detection events can be displayed. This problem might arise due to the following causes:
Scenario 3: A cloud storage event occurs, but it does not generate video clips. Possible causes:
The debugging tool can be used to troubleshoot the problems caused by these two factors.
The debugging tool depends on the IPC SDK. For more information, see Fast Integration with IPC SDK for Android.
Add the following dependency to the module file build.gradle
:
dependencies {
...
implementation 'com.thingclips.smart:thingsmart-ipc-camera-cloudtool:5.0.0'
...
}
Add the following code block to the project file build.gradle
.
repositories {
...
maven {
url "https://maven-other.tuya.com/repository/maven-releases/"
}
...
}
// The current home ID.
Intent intent = new Intent(this, CloudToolHomeActivity.class);
intent.putExtra("extra_current_home_id", HomeModel.getCurrentHome(this));
startActivity(intent);
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback