1. Enable the SDK debugging mode and add debugging devices in the SolarEngine background. Then you'll be able to query the verification results of the reported data in real time.
2. Data reported in Debug Mode will not be stored in the database.
3. Make sure to turn off the Debug Mode before publishing the app. To be safe, only when the device is not in the debugging device list, the data will be reported to the database normally.
4. Debug Mode is disabled by default.
5. Please make sure to disable Debug mode before the official publish.
//Enable Debug mode, default is off. Optional field. Do not deploy Debug mode to production!!!
public bool isDebugModel { get; set; }
Example
import com.reyun.solar.engine.SolarEngineConfig;
SEConfig seConfig = new SEConfig();
seConfig.isDebugModel = true;
SolarEngine.Analytics.initSeSdk("developer`s appkey",seConfig);