意见反馈服务
feedback
接口说明
意见反馈
接口定义
void feedback(FeedbackTypeModel title, String content, String category, String contactInfo, boolean isWithLog, boolean isWithDump, List<String> picturePahts, List<String> attachedFilePahts, ProgressCallBack<Integer, BizCodeModel> callBack)
参数描述
参数 | 类型 | 含义 |
---|---|---|
title | FeedbackTypeModel | 意见反馈类型 |
content | String | 内容 |
category | String | 类别 |
contactInfo | String | 联系信息 |
isWithLog | boolean | 自动上传日志 |
isWithDump | boolean | 音频反馈 |
picturePahts | List |
图片资源 |
attachedFilePahts | List |
文件资源 |
callBack | ProgressCallBack | 上传进度回调 |
FeedbackTypeModel: 意见反馈类型
public enum FeedbackTypeModel {
/**
* 软件卡住或崩溃
*/
Bug,
/**
* 画面模糊或卡顿
*/
Video,
/**
* 声音嘈杂或断续
*/
Audio,
/**
* 体验差操作复杂
*/
Suggestion,
/**
* 其他问题
*/
Other,
}
返回值描述
类型 | 含义 |
---|---|
int | 错误码 |
getLogPath
接口说明
获取日志存储位置
接口定义
String getLogPath()
参数描述
无参数
返回值描述
类型 | 含义 |
---|---|
String | 日志存储位置 |