diff --git a/README_shell.md b/README_shell.md index 609d131afc..7ac0c9b64f 100644 --- a/README_shell.md +++ b/README_shell.md @@ -48,7 +48,7 @@ adb shell am broadcast -a com.obu.test_light_recognized --ei obuStates 1 --ei ob // (旧版本)使用命令行触发各种测试场景演示 -adb shell am broadcast -a com.v2x.test_panel_control --ei sceneType 1 +adb shell am broadcast -a com.v2x.test_panel_control --ei sceneType 1 adb shell am broadcast -a com.v2x.test_panel_control --ez TextPanelOpenStatus true --ei TextPanelOpenType 11 diff --git a/app_mogo_magic_ring/src/main/java/com/zhidao/adas/magic/ui/MainActivity.java b/app_mogo_magic_ring/src/main/java/com/zhidao/adas/magic/ui/MainActivity.java index efda39581a..c22b7708f1 100644 --- a/app_mogo_magic_ring/src/main/java/com/zhidao/adas/magic/ui/MainActivity.java +++ b/app_mogo_magic_ring/src/main/java/com/zhidao/adas/magic/ui/MainActivity.java @@ -66,6 +66,7 @@ import java.util.TimerTask; import bag_manager.BagManagerOuterClass; import chassis.ChassisStatesOuterClass; +import chassis.VehicleStateOuterClass; import function_state_management.FunctionStates; import mogo.telematics.pad.MessagePad; import mogo_msg.MogoReportMsg; @@ -469,6 +470,11 @@ public class MainActivity extends BaseActivity implements OnAdasListener, OnAdas getHandler().sendMessage(message); } + @Override + public void onVehicleState(MessagePad.Header header, VehicleStateOuterClass.VehicleState vehicleState) { + + } + @Override public void onChassisStates(MessagePad.Header header, ChassisStatesOuterClass.ChassisStates chassisStates) { diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/bag_manager.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/bag_manager.proto new file mode 100644 index 0000000000..448e1bfdb9 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/bag_manager.proto @@ -0,0 +1,69 @@ +syntax = "proto2"; +package bag_manager; + +enum BagStat{ + SUCCEED = 0; + EXECUTING = 1; + EXECUTEERROR = 2; + COPYERROR = 3; + MERGEERROR = 4; + UPLOADCOSERROR = 5; +} + +// 上传cos桶状态 +message UploadCosStat{ + required uint64 key = 1; + required uint32 stat = 2; // 0-成功 1-执行中 2-copy过程失败 3-合并过程失败 4-上传过程失败 + optional string message = 3; // 失败时的具体描述 +} + +//空间使用情况 +message SpaceInfo{ + optional string directory = 1; // 路径名,为空表示总空间,否则表示对应的/home/mogo/data/bags下的子目录 + optional uint64 total = 2; // 总空间 + optional uint64 free = 3; // 可用空间 + optional uint64 used = 4; // 已用空间 +} +// bag目录空间使用情况 +message BagSpaceInfo{ + optional string host = 1; // 主机名 + optional SpaceInfo diskSpaceInfo = 2; // 硬盘空间信息 + repeated SpaceInfo BagDirsSpaceInfo = 3; // /home/mogo/data/bags下各子空间信息 +} + +// bag附加信息(录音,备注,接管信息) +message BagDescription{ + optional string description = 1; // bag接管描述或重命名信息 + optional bool hasAudio = 2; // 此bag是否具有录音文件 + optional string audioUrl = 3; // bag附加录音文件的文件名 + optional bool reportBI = 4; //上报BI状态 +} + +// 各主机上报的包信息 +message SubBag { + required uint64 key = 1; // bag key值 + required string host = 2; // 主机名 + optional uint64 size = 3; // 此子包的大小 +} + +// 单个key值对应的包信息 +message BagInfo{ + required uint64 key = 1; // bag key值 + optional uint64 totalSize = 2; // 所有子包或合并后的包的总大小 + optional string timestamp = 3; // 时间戳 + optional string bagPath = 4; // bag所在路径 + optional bool mergeStat = 5; // 合并状态 + optional bool uploadStat = 6; // 上传cos桶状态 + optional BagDescription description = 7; // 包描述信息 + repeated SubBag subBags = 8; // 子包信息 +} + +// 包管理请求 +message BagManager{ + required uint32 reqType = 1; // 请求类型:0-invalid 1-获取空间使用信息 2-遍历所有bag 3-上传cos 4-删除bag 5-为bag添加附加信息 + optional uint64 keyReq = 2; // 要操作的包的key值,发送请求且reqType=(3,4,5)时有效 + optional BagDescription descReq = 3; // 更新包附加信息,发送请求且reqType=5时有效 + repeated BagSpaceInfo spaceInfoResp = 4; // 空间使用信息,获取响应且reqType=1时有效 + repeated BagInfo bagsInfoResp = 5; // 包信息列表,获取响应且reqType=2时有效 + optional UploadCosStat uploadCosResp = 6; //反馈上传cos桶结果,获取响应且reqType=3时有效 +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/chassis.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/chassis.proto new file mode 100644 index 0000000000..015f089efb --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/chassis.proto @@ -0,0 +1,102 @@ +syntax = "proto2"; +package chassis; + +enum GearPosition { + GEAR_NONE = 0; + GEAR_N = 1; + GEAR_R = 2; + GEAR_P = 3; + GEAR_D = 4; +} + +enum LightSwitch { + LIGHT_NONE = 0; + LIGHT_LEFT = 1; + LIGHT_RIGHT = 2; + LIGHT_FLASH = 3; + LIGHT_MANUAL = 4; + LIGHT_AUTO = 5; +} + +enum PilotMode { + MODE_MANUAL = 0; + MODE_AUTO_DRIVE = 1; + MODE_STEER_ONLY = 2; + MODE_SPEED_ONLY = 3; + MODE_REMOTE_DRIVE = 6; + MODE_TELECONTROL_DRIVE = 7; + MODE_INVALID = 8; +} + +enum LongitudeDrivingMode { + ManualMode = 0; + AutomaticStandby = 1; + AutomaticAcceleration = 2; + AutomaticDeceleration = 3; +} + +enum EPSSteeringMode { + Manual = 0; + Automatic = 1; + ManualFromInterference = 2; + ManualFromEPSFailure = 3; + TemporaryInhibited = 4; +} + +enum EPBWorkStatus { + EPBSTATUS_NONE = 0; + EPBSTATUS_LOCKED = 1; + EPBSTATUS_RELEASED = 2; + EPBSTATUS_LOCKED_FAIL = 3; + EPBSTATUS_RELEASE_FAIL = 4; + EPBSTATUS_FAULT = 5; +} + +enum VehicleTakeOverStatus { + None_TakeOver = 0; + Vehicle_TakeOver = 1; + Longitude_TakeOver = 2; + Latteral_TakeOver = 3; +} + +enum VehicleFaultLevel { + None_Fault = 0; + General_Fault = 1; + Serious_Fault = 2; + Critical_Fault = 3; +} + +enum VehicleControlMode { + VehicleControl_Manual = 0; + VehicleControl_Nonemanualdefault = 1; + VehicleControl_Autostandby = 2; + VehicleControl_Autoactive = 3; + VehicleControl_Remotestandby = 4; + VehicleControl_Remoteactive = 5; + VehicleControl_Telecontrolstandby = 6; + VehicleControl_Telecontrolactive = 7; + VehicleControl_Fault = 8; +} + +enum VehicleWireControlModeRequest { + NoneWireControl = 0; + WireControl = 1; +} + +enum CleanSystemControlMode { + Clean_Off_Line = 0; + Clean_Ready = 1; + Clean_Work_Standby = 2; + Clean_Sweeping_Standby = 3; + Clean_Sweeping_Both_Side_Work = 4; + Clean_Sweeping_Left_Work = 5; + Clean_Sweeping_Right_Work = 6; + Clean_WashSweep_Standby = 7; + Clean_WashSweep_Both_Side_Work = 8; + Clean_WashSweep_Left_Work = 9; + Clean_WashSweep_Right_Wrok = 10; + Clean_PureWash_Standby = 11; + Clean_PureWash_Both_Side_Work = 12; + Clean_PureWash_Left_Work = 13; + Clean_PureWash_Right_Work = 14; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/chassis_states.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/chassis_states.proto new file mode 100644 index 0000000000..44c2831432 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/chassis_states.proto @@ -0,0 +1,194 @@ +syntax = "proto2"; +package chassis; + +import "chassis.proto"; +import "header.proto"; + + +enum EPBWorkStates { + EPB_STATE_NONE = 0; + EPB_STATE_LOCKING = 1; + EPB_STATE_LOCKED = 2; + EPB_STATE_RELEASING = 3; + EPB_STATE_RELEASED = 4; + EPB_STATE_LOCKED_FAIL = 5; + EPB_STATE_RELEASE_FAIL = 6; + EPB_STATE_FAULT = 7; +} + +enum VehicleFaultLevels { + NONE_FAULT = 0; + GENERAL_FAULT = 1; + SERIOUS_FAULT = 2; + CRITICAL_FAULT = 3; +} + +message VehicleMotionStates { + optional float speed = 1 [default = 0]; // vehicle speed in m/s + optional float angular_speed = 2 [default = 0]; // vehicle angular speeed in rad/s + optional float acceleration = 3 [default = 0]; // vehicle acceleration in m/s^2 + optional float longitude_acceleration = 4 [default = 0]; // vehicle longitudinal acceleration in m/s^2 + optional float lateral_acceleration = 5 [default = 0]; // vehicle lateral acceleration in m/s^2 +} + +message DrivingSystemStates { + optional uint32 driving_enable_state = 1 [default = 0]; // vehicle driving system wirecontrol enable state + optional float throttle_response_position = 2 [default = 0]; // vehicle throttle response with control command in percentage [0, 100] + optional bool acceleration_pedal_inference_state = 3 [default = false]; // manual intervention status of acceleration pedal + optional float acceleration_pedal_inference_position = 4 [default = 0];// manual intervention opening of acceleration pedal in percentage [0, 100] +} + +message BMSSystemStates { + optional float bms_total_voltage = 1 [default = 0]; // total output voltage of power battery in V + optional float bms_total_current = 2 [default = 0]; // total output current of power battery in A + optional float bms_soc = 3 [default = 0]; // residual SOC value of power battery + optional VehicleFaultLevels bms_system_fault_state = 4 [default = NONE_FAULT]; // fault states of the power battery system +} + +message MCUSystemStates { + optional float mcu_motor_speed = 1 [default = 0]; // driving motor speed in rpm + optional float mcu_motor_torque = 2 [default = 0]; // driving motor output torque in nm + optional float mcu_motor_voltage = 3 [default = 0]; // driving motor input voltage in V + optional float mcu_motor_current = 4 [default = 0]; // driving motor output current in A + optional VehicleFaultLevels mcu_system_fault_state = 5 [default = NONE_FAULT]; // fault states of the mcu system +} + +message EngineSystemStates { + optional float engine_speed = 1 [default = 0]; // engine speed in rpm + optional float remaining_oil = 2 [default = 0]; // current actual remaining oil + optional VehicleFaultLevels engine_system_fault_state = 3 [default = NONE_FAULT]; // fault states of the engine system +} + +message BrakeSystemStates { + optional uint32 brake_enable_sts = 1 [default = 0]; // vehicle brake system wirecontrol enable state + optional bool brake_pedal_inference_state = 2 [default = false]; // manual intervention status of brake pedal + optional bool brake_pedal_state = 3 [default = false]; // the status of the brake pedal. if it is true, it means the brake pedal is depressed + optional float brake_pedal_inference_position = 4 [default = 0]; // manual intervention opening of brake pedal in percentage [0, 100] + optional float average_brake_pressure = 5 [default = 0]; // Average brake pressure feedback in kPa + optional VehicleFaultLevels brake_system_fault_state = 6 [default = NONE_FAULT]; // fault states of the brake system + optional float brake_pedal_response_position = 7 [default = 0]; // Brake pedal opening for chassis response in percentage [0, 100] +} + +message SteerSystemStates { + optional uint32 steer_enable_state = 1 [default = 0]; // vehicle steer system wirecontrol enable state + optional uint32 eps_work_mode_state = 2 [default = 0]; // eps system work mode states + optional float steering_wheel_angle = 3 [default = 0]; // steering angle in degrees + optional float steering_wheel_speed = 4 [default = 0]; // steering speed in degree/s + optional bool steering_wheel_inference_state = 5 [default = false]; // manual intervention status of steering wheel + optional float steering_wheel_inference_torque = 6 [default = 0];// manual intervention torque of steering wheel in nm + optional float front_left_wheel_angle = 7 [default = 0]; // front left wheel angle + optional float front_right_wheel_angle = 8 [default = 0]; // front right wheel angle + optional VehicleFaultLevels steer_system_fault_state = 9 [default = NONE_FAULT]; // fault states of the steer system +} + +message GearSystemStates { + optional uint32 gear_enable_state = 1 [default = 0]; // vehicle gear system wirecontrol enable state + optional GearPosition gear_position = 2 [default = GEAR_NONE]; // vehicle real gear position + optional bool gear_switch_inference_state = 3 [default = false]; // manual intervention status of gear switch + optional VehicleFaultLevels gear_system_fault_state = 4 [default = NONE_FAULT]; // fault states of the gear system +} + +message EPBSystemStates { + optional uint32 epb_enable_state = 1 [default = 0]; // vehicle EPB system wirecontrol enable state + optional EPBWorkStates epb_work_state = 2 [default = EPB_STATE_NONE]; // EPB work status + optional bool epb_switch_inference_state = 3 [default = false]; // manual intervention status of EPB switch + optional VehicleFaultLevels epb_system_fault_state = 4 [default = NONE_FAULT]; // fault states of the EPB system +} + +message BCMSystemStates { + optional LightSwitch turn_light_state = 1 [default = LIGHT_NONE]; // real turn light status + optional uint32 horn_state = 2 [default = 0]; // real horn status 0-off 1-open 2-reserved 3-reserved + optional uint32 highbeam_state = 3 [default = 0]; // real highbeam status 0-off 1-open 2-reserved 3-reserved + optional uint32 lowbeam_state = 4 [default = 0]; // real lowbeam status 0-off 1-open 2-reserved 3-reserved + optional uint32 front_foglight_state = 5 [default = 0]; // real front foglight status 0-off 1-open 2-reserved 3-reserved + optional uint32 back_foglight_state = 6 [default = 0]; // real back foglight status 0-off 1-open 2-reserved 3-reserved + optional uint32 clearance_lamps_state = 7 [default = 0]; // real clearance lamps status 0-off 1-open 2-reserved 3-reserved + optional uint32 alarm_light_state = 8 [default = 0]; // real alarm light status 0-off 1-open 2-reserved 3-reserved + optional uint32 position_light_state = 9 [default = 0]; // position light status 0-off 1-open 2-reserved 3-reserved + optional uint32 driver_door_state = 10 [default = 0]; // real driver door status 0-off 1-open 2-reserved 3-reserved + optional uint32 brake_light_state = 11 [default = 0]; // real brake light status 0-off 1-open 2-reserved 3-reserved + optional uint32 daytime_runing_light_state = 13 [default = 0]; // real daytime running light status 0-off 1-open 2-reserved 3-reserved + optional uint32 driver_safty_belt_state = 14 [default = 0]; // real driver safty belf status 0-off 1-open 2-reserved 3-reserved + optional uint32 front_hood_open_state = 15 [default = 0]; // real front hood opening status 0-off 1-open 2-reserved 3-reserved + optional uint32 wipers_work_state = 16 [default = 0]; // real wipers work status 0-off 1-open 2-reserved 3-reserved + optional uint32 wipers_work_intermittent_gear = 17 [default = 0]; // real wipers work gear +} + + +message SweeperFuTianTaskSystemStates { + optional bool secu_rem_ctrl_sts = 1 [default = false]; // 远程控制使能信号 + optional bool secu_mot_work_sts = 2 [default = false]; // 电机启停控制状态信号 + optional bool secu_dup_tail_door_open_sts = 3 [default = false]; // 垃圾箱尾门开状态信号 + optional bool secu_dup_tail_door_close_sts = 4 [default = false]; // 垃圾箱尾门关状态信号 + optional bool secu_auto_dup_tail_tip_sts = 5 [default = false]; // 垃圾箱倾翻状态信号 + optional bool secu_dup_tail_ret_sts = 6 [default = false]; // 垃圾箱回位状态信号 + optional bool secu_work_stand_sts = 7 [default = false]; // 标准作业状态信号 + optional bool secu_work_strong_sts = 8 [default = false]; // 强力作业状态信号 + optional bool secu_suctionnozzlebaffle_sts = 9 [default = false]; // 吸嘴挡板开状态信号 + optional bool secu_dusk_close_sts = 10 [default = false]; // 降尘关闭状态信号 + optional bool secu_work_left_sts = 11 [default = false]; // 左侧作业状态信号 + optional bool secu_work_on_bothsides_sts = 12 [default = false]; // 两侧作业状态信号 + optional bool secu_work_right_sts = 13 [default = false]; // 右侧作业状态信号 + optional bool secu_work_ton_sts = 14 [default = false]; // 纯吸作业状态信号 + optional bool secu_work_spray_gun_sts = 15 [default = false]; // 喷雾喷枪作业状态信号 + optional bool secu_work_enc_des_sts = 16 [default = false]; // 箱体清淤作业状态信号 + optional bool secu_mod_wash_sweep_sts = 17 [default = false]; // 洗扫模式状态信号 + optional bool secu_mod_wash_sts = 18 [default = false]; // 纯洗模式状态信号 + optional bool secu_sweepdisk_red_sts = 19 [default = false]; // 扫盘减速开关状态信号 + optional bool secu_sweepdisk_acc_sts = 20 [default = false]; // 扫盘加速开关状态信号 + optional bool secu_arrowlight_sts = 21 [default = false]; // 箭头灯开关状态信号 + optional bool secu_floodlight_sts = 22 [default = false]; // 照明灯开关状态信号 + optional bool secu_work_cleaning_sts = 23 [default = false]; // 保洁作业状态信号 + optional bool secu_clean_music_sts = 24 [default = false]; // 音乐开关状态信号 + + optional bool secu_motor_oil_com_fail = 25 [default = false]; // 油泵电机通讯失败报警 + optional bool secu_motor_water_com_fail = 26 [default = false]; // 水泵电机通讯失败报警 + optional bool secu_motor_air_com_fail = 27 [default = false]; // 风机电机通讯失败报警 + optional bool secu_fan_fault = 28 [default = false]; // 散热风扇故障报警 + optional bool secu_chassis_com_fail = 29 [default = false]; // 底盘通讯失败报警 + optional bool secu_panel_com_fail = 30 [default = false]; // 操作面板通讯失败报警 + optional bool secu_oillevel_check = 31 [default = false]; // 液压油位低请停机检查报警信号 + optional bool secu_oilstmjam_check = 32 [default = false]; // 液压油滤堵塞请停机检查报警信号 + optional bool secu_water_valve_close = 33 [default = false]; // 出水阀门关闭不能清洗作业报警信号 + optional bool secu_clean_water_tank_low = 34 [default = false]; // 清水箱水位低不能清洗作业报警信号 + optional bool secu_sewage_water_tank_full = 35 [default = false]; // 污水箱满请停止作业报警信号 + optional bool secu_coolwatertemp_high = 36 [default = false]; // 水温过高请停机检查报警信号 + optional bool secu_coolwater_less = 37 [default = false]; // 冷却液位低报警信号 + optional bool secu_tail_gate_open = 38 [default = false]; // 尾门打开接近开关 + optional bool secu_manual_intervention_sts = 39 [default = false]; // 提示是否有人为介入 + optional bool secu_ready_finish_sts = 40 [default = false]; // 上装ready完成 + optional float secu_sweepdisk_speed = 41 [default = 0]; // 扫盘转速 +} + +message TaskSystemStates { + optional SweeperFuTianTaskSystemStates sweeper_futian_task_system_states = 1; +} + +message ChassisAutopilotAssistanceInformation { + optional PilotMode chassis_pilot_mode_state = 1 [default = MODE_MANUAL]; + optional bool Emergency_Stop_Switch_state = 2 [default = false]; // 急停开关状态 + optional bool vehicle_pilot_switch_state = 3 [default = false]; // 车辆自动驾驶开关状态 + optional float vehicle_low_voltage_battery_voltage = 4; // 车辆低压蓄电池电压 + optional float vehicle_remaining_mileage = 5; // 车辆剩余续航里程 +} + +message VehicleChassisFaultInformation { + optional VehicleFaultLevels vehiclefaultlevel = 1 [default = NONE_FAULT]; // 整车故障状态 +} + +message ChassisStates { + optional common.Header header = 1; + optional VehicleMotionStates vehicle_motion_states = 2; + optional DrivingSystemStates driving_system_states = 3; + optional BrakeSystemStates brake_system_states = 4; + optional SteerSystemStates steer_system_states = 5; + optional GearSystemStates gear_system_states = 6; + optional EPBSystemStates epb_system_states = 7; + optional BCMSystemStates bcm_system_states = 8; + optional BMSSystemStates bms_system_states = 9; + optional MCUSystemStates mcu_system_states = 10; + optional EngineSystemStates engine_system_states = 11; + optional ChassisAutopilotAssistanceInformation chassis_autopilot_assistance_information = 12; + optional TaskSystemStates task_system_states = 13; + optional VehicleChassisFaultInformation vehicle_chassis_fault_information = 14; +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/function_states.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/function_states.proto new file mode 100644 index 0000000000..d8334339b1 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/function_states.proto @@ -0,0 +1,50 @@ +syntax = "proto2"; +package function_state_management; + +import "header.proto"; + +enum PilotDrivingFunctionState { + PILOT_DRIVING_OFF = 0; + PILOT_DRIVING_STANDBY = 1; + PILOT_DRIVING_ACTIVE = 2; + PILOT_DRIVING_LON_ACTIVE = 3; + PILOT_DRIVING_LAT_ACTIVE = 4; + PILOT_DRIVING_TAKEOVER = 5; + PILOT_DRIVING_OVERRIDE = 6; + PILOT_DRIVING_WARNING = 7; + PILOT_DRIVING_DEGRADED_RUNNING = 8; + PILOT_DRIVING_SAFTY_STOP = 9; +} + +enum ParallelDrivingFunctionState { + PARALLEL_DRIVING_OFF = 0; + PARALLEL_DRIVING_STANDBY = 1; + PARALLEL_DRIVING_ACTIVE = 2; + PARALLEL_DRIVING_LON_ACTIVE = 3; + PARALLEL_DRIVING_LAT_ACTIVE = 4; + PARALLEL_DRIVING_TAKEOVER = 5; + PARALLEL_DRIVING_OVERRIDE = 6; + PARALLEL_DRIVING_WARNING = 7; + PARALLEL_DRIVING_DEGRADED_RUNNING = 8; + PARALLEL_DRIVING_SAFTY_STOP = 9; +} + +enum TelecontrolDrivingFunctionState { + TELECONTROL_DRIVING_OFF = 0; + TELECONTROL_DRIVING_STANDBY = 1; + TELECONTROL_DRIVING_ACTIVE = 2; + TELECONTROL_DRIVING_LON_ACTIVE = 3; + TELECONTROL_DRIVING_LAT_ACTIVE = 4; + TELECONTROL_DRIVING_TAKEOVER = 5; + TELECONTROL_DRIVING_OVERRIDE = 6; + TELECONTROL_DRIVING_WARNING = 7; + TELECONTROL_DRIVING_DEGRADED_RUNNING = 8; + TELECONTROL_DRIVING_SAFTY_STOP = 9; +} + +message FSMFunctionStates { + optional common.Header header = 1; + optional PilotDrivingFunctionState pilot_driving_function_state = 2; + optional ParallelDrivingFunctionState parallel_driving_function_state = 3; + optional TelecontrolDrivingFunctionState telecontrol_driving_function_state = 4; +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/geometry.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/geometry.proto new file mode 100644 index 0000000000..9910b32a10 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/geometry.proto @@ -0,0 +1,84 @@ +syntax = "proto2"; +package geometry; + +message Vector3 { + optional double x = 1; + optional double y = 2; + optional double z = 3; +} + +message Vector3f { + optional float x = 1; + optional float y = 2; + optional float z = 3; +} + +message Point2D { + optional double x = 1 [default = nan]; + optional double y = 2 [default = nan]; +} + +message Point3D { + optional double x = 1 [default = nan]; + optional double y = 2 [default = nan]; + optional double z = 3 [default = nan]; +} + +message Trace { + optional double timestamp = 1; + optional Point3D position = 2; + optional Point3D velocity = 3; + optional Point3D acceleration = 4; + optional Point3D heading = 5; +} + +message PointLLH { + // Longitude in degrees, ranging from -180 to 180. + optional double lon = 1 [default = nan]; + // Latitude in degrees, ranging from -90 to 90. + optional double lat = 2 [default = nan]; + // WGS-84 ellipsoid height in meters. + optional double height = 3 [default = 0.0]; +} + +message Point { + optional double x = 1; + optional double y = 2; + optional double z = 3; +} + +message Quaternion { + optional double x = 1 [default = nan]; + optional double y = 2 [default = nan]; + optional double z = 3 [default = nan];; + optional double w = 4 [default = nan]; +} + +message Polygon { + repeated Point points = 1; +} + +message Transform { + optional Vector3 translation = 1; + optional Quaternion rotation = 2; +} + +//pose in free space, composed of position and orientation +message Pose { + optional Point position = 1; + optional Quaternion orientation = 2; +} + +//acceleration in free space broken into its linear and angular parts +message Accel { + optional Vector3 linear = 1; + optional Vector3 angular = 2; +} + +//velocity in free space broken into its linear and angular parts +message Twist { + optional Vector3 linear = 1; + optional Vector3 angular = 2; +} + + diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/any.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/any.proto new file mode 100644 index 0000000000..c9be854167 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/any.proto @@ -0,0 +1,155 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +syntax = "proto3"; + +package google.protobuf; + +option csharp_namespace = "Google.Protobuf.WellKnownTypes"; +option go_package = "github.com/golang/protobuf/ptypes/any"; +option java_package = "com.google.protobuf"; +option java_outer_classname = "AnyProto"; +option java_multiple_files = true; +option objc_class_prefix = "GPB"; + +// `Any` contains an arbitrary serialized protocol buffer message along with a +// URL that describes the type of the serialized message. +// +// Protobuf library provides support to pack/unpack Any values in the form +// of utility functions or additional generated methods of the Any type. +// +// Example 1: Pack and unpack a message in C++. +// +// Foo foo = ...; +// Any any; +// any.PackFrom(foo); +// ... +// if (any.UnpackTo(&foo)) { +// ... +// } +// +// Example 2: Pack and unpack a message in Java. +// +// Foo foo = ...; +// Any any = Any.pack(foo); +// ... +// if (any.is(Foo.class)) { +// foo = any.unpack(Foo.class); +// } +// +// Example 3: Pack and unpack a message in Python. +// +// foo = Foo(...) +// any = Any() +// any.Pack(foo) +// ... +// if any.Is(Foo.DESCRIPTOR): +// any.Unpack(foo) +// ... +// +// Example 4: Pack and unpack a message in Go +// +// foo := &pb.Foo{...} +// any, err := ptypes.MarshalAny(foo) +// ... +// foo := &pb.Foo{} +// if err := ptypes.UnmarshalAny(any, foo); err != nil { +// ... +// } +// +// The pack methods provided by protobuf library will by default use +// 'type.googleapis.com/full.type.name' as the type URL and the unpack +// methods only use the fully qualified type name after the last '/' +// in the type URL, for example "foo.bar.com/x/y.z" will yield type +// name "y.z". +// +// +// JSON +// ==== +// The JSON representation of an `Any` value uses the regular +// representation of the deserialized, embedded message, with an +// additional field `@type` which contains the type URL. Example: +// +// package google.profile; +// message Person { +// string first_name = 1; +// string last_name = 2; +// } +// +// { +// "@type": "type.googleapis.com/google.profile.Person", +// "firstName": , +// "lastName": +// } +// +// If the embedded message type is well-known and has a custom JSON +// representation, that representation will be embedded adding a field +// `value` which holds the custom JSON in addition to the `@type` +// field. Example (for message [google.protobuf.Duration][]): +// +// { +// "@type": "type.googleapis.com/google.protobuf.Duration", +// "value": "1.212s" +// } +// +message Any { + // A URL/resource name that uniquely identifies the type of the serialized + // protocol buffer message. This string must contain at least + // one "/" character. The last segment of the URL's path must represent + // the fully qualified name of the type (as in + // `path/google.protobuf.Duration`). The name should be in a canonical form + // (e.g., leading "." is not accepted). + // + // In practice, teams usually precompile into the binary all types that they + // expect it to use in the context of Any. However, for URLs which use the + // scheme `http`, `https`, or no scheme, one can optionally set up a type + // server that maps type URLs to message definitions as follows: + // + // * If no scheme is provided, `https` is assumed. + // * An HTTP GET on the URL must yield a [google.protobuf.Type][] + // value in binary format, or produce an error. + // * Applications are allowed to cache lookup results based on the + // URL, or have them precompiled into a binary to avoid any + // lookup. Therefore, binary compatibility needs to be preserved + // on changes to types. (Use versioned type names to manage + // breaking changes.) + // + // Note: this functionality is not currently available in the official + // protobuf release, and it is not used for type URLs beginning with + // type.googleapis.com. + // + // Schemes other than `http`, `https` (or the empty scheme) might be + // used with implementation specific semantics. + // + string type_url = 1; + + // Must be a valid serialized protocol buffer of the above specified type. + bytes value = 2; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/api.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/api.proto new file mode 100644 index 0000000000..f37ee2fa46 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/api.proto @@ -0,0 +1,210 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +syntax = "proto3"; + +package google.protobuf; + +import "google/protobuf/source_context.proto"; +import "google/protobuf/type.proto"; + +option csharp_namespace = "Google.Protobuf.WellKnownTypes"; +option java_package = "com.google.protobuf"; +option java_outer_classname = "ApiProto"; +option java_multiple_files = true; +option objc_class_prefix = "GPB"; +option go_package = "google.golang.org/genproto/protobuf/api;api"; + +// Api is a light-weight descriptor for an API Interface. +// +// Interfaces are also described as "protocol buffer services" in some contexts, +// such as by the "service" keyword in a .proto file, but they are different +// from API Services, which represent a concrete implementation of an interface +// as opposed to simply a description of methods and bindings. They are also +// sometimes simply referred to as "APIs" in other contexts, such as the name of +// this message itself. See https://cloud.google.com/apis/design/glossary for +// detailed terminology. +message Api { + + // The fully qualified name of this interface, including package name + // followed by the interface's simple name. + string name = 1; + + // The methods of this interface, in unspecified order. + repeated Method methods = 2; + + // Any metadata attached to the interface. + repeated Option options = 3; + + // A version string for this interface. If specified, must have the form + // `major-version.minor-version`, as in `1.10`. If the minor version is + // omitted, it defaults to zero. If the entire version field is empty, the + // major version is derived from the package name, as outlined below. If the + // field is not empty, the version in the package name will be verified to be + // consistent with what is provided here. + // + // The versioning schema uses [semantic + // versioning](http://semver.org) where the major version number + // indicates a breaking change and the minor version an additive, + // non-breaking change. Both version numbers are signals to users + // what to expect from different versions, and should be carefully + // chosen based on the product plan. + // + // The major version is also reflected in the package name of the + // interface, which must end in `v`, as in + // `google.feature.v1`. For major versions 0 and 1, the suffix can + // be omitted. Zero major versions must only be used for + // experimental, non-GA interfaces. + // + // + string version = 4; + + // Source context for the protocol buffer service represented by this + // message. + SourceContext source_context = 5; + + // Included interfaces. See [Mixin][]. + repeated Mixin mixins = 6; + + // The source syntax of the service. + Syntax syntax = 7; +} + +// Method represents a method of an API interface. +message Method { + + // The simple name of this method. + string name = 1; + + // A URL of the input message type. + string request_type_url = 2; + + // If true, the request is streamed. + bool request_streaming = 3; + + // The URL of the output message type. + string response_type_url = 4; + + // If true, the response is streamed. + bool response_streaming = 5; + + // Any metadata attached to the method. + repeated Option options = 6; + + // The source syntax of this method. + Syntax syntax = 7; +} + +// Declares an API Interface to be included in this interface. The including +// interface must redeclare all the methods from the included interface, but +// documentation and options are inherited as follows: +// +// - If after comment and whitespace stripping, the documentation +// string of the redeclared method is empty, it will be inherited +// from the original method. +// +// - Each annotation belonging to the service config (http, +// visibility) which is not set in the redeclared method will be +// inherited. +// +// - If an http annotation is inherited, the path pattern will be +// modified as follows. Any version prefix will be replaced by the +// version of the including interface plus the [root][] path if +// specified. +// +// Example of a simple mixin: +// +// package google.acl.v1; +// service AccessControl { +// // Get the underlying ACL object. +// rpc GetAcl(GetAclRequest) returns (Acl) { +// option (google.api.http).get = "/v1/{resource=**}:getAcl"; +// } +// } +// +// package google.storage.v2; +// service Storage { +// rpc GetAcl(GetAclRequest) returns (Acl); +// +// // Get a data record. +// rpc GetData(GetDataRequest) returns (Data) { +// option (google.api.http).get = "/v2/{resource=**}"; +// } +// } +// +// Example of a mixin configuration: +// +// apis: +// - name: google.storage.v2.Storage +// mixins: +// - name: google.acl.v1.AccessControl +// +// The mixin construct implies that all methods in `AccessControl` are +// also declared with same name and request/response types in +// `Storage`. A documentation generator or annotation processor will +// see the effective `Storage.GetAcl` method after inherting +// documentation and annotations as follows: +// +// service Storage { +// // Get the underlying ACL object. +// rpc GetAcl(GetAclRequest) returns (Acl) { +// option (google.api.http).get = "/v2/{resource=**}:getAcl"; +// } +// ... +// } +// +// Note how the version in the path pattern changed from `v1` to `v2`. +// +// If the `root` field in the mixin is specified, it should be a +// relative path under which inherited HTTP paths are placed. Example: +// +// apis: +// - name: google.storage.v2.Storage +// mixins: +// - name: google.acl.v1.AccessControl +// root: acls +// +// This implies the following inherited HTTP annotation: +// +// service Storage { +// // Get the underlying ACL object. +// rpc GetAcl(GetAclRequest) returns (Acl) { +// option (google.api.http).get = "/v2/acls/{resource=**}:getAcl"; +// } +// ... +// } +message Mixin { + // The fully qualified name of the interface which is included. + string name = 1; + + // If non-empty specifies a path under which inherited HTTP paths + // are rooted. + string root = 2; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/compiler/plugin.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/compiler/plugin.proto new file mode 100644 index 0000000000..492b896c5b --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/compiler/plugin.proto @@ -0,0 +1,178 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// Author: kenton@google.com (Kenton Varda) +// +// WARNING: The plugin interface is currently EXPERIMENTAL and is subject to +// change. +// +// protoc (aka the Protocol Compiler) can be extended via plugins. A plugin is +// just a program that reads a CodeGeneratorRequest from stdin and writes a +// CodeGeneratorResponse to stdout. +// +// Plugins written using C++ can use google/protobuf/compiler/plugin.h instead +// of dealing with the raw protocol defined here. +// +// A plugin executable needs only to be placed somewhere in the path. The +// plugin should be named "protoc-gen-$NAME", and will then be used when the +// flag "--${NAME}_out" is passed to protoc. + +syntax = "proto2"; + +package google.protobuf.compiler; +option java_package = "com.google.protobuf.compiler"; +option java_outer_classname = "PluginProtos"; + +option go_package = "github.com/golang/protobuf/protoc-gen-go/plugin;plugin_go"; + +import "google/protobuf/descriptor.proto"; + +// The version number of protocol compiler. +message Version { + optional int32 major = 1; + optional int32 minor = 2; + optional int32 patch = 3; + // A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should + // be empty for mainline stable releases. + optional string suffix = 4; +} + +// An encoded CodeGeneratorRequest is written to the plugin's stdin. +message CodeGeneratorRequest { + // The .proto files that were explicitly listed on the command-line. The + // code generator should generate code only for these files. Each file's + // descriptor will be included in proto_file, below. + repeated string file_to_generate = 1; + + // The generator parameter passed on the command-line. + optional string parameter = 2; + + // FileDescriptorProtos for all files in files_to_generate and everything + // they import. The files will appear in topological order, so each file + // appears before any file that imports it. + // + // protoc guarantees that all proto_files will be written after + // the fields above, even though this is not technically guaranteed by the + // protobuf wire format. This theoretically could allow a plugin to stream + // in the FileDescriptorProtos and handle them one by one rather than read + // the entire set into memory at once. However, as of this writing, this + // is not similarly optimized on protoc's end -- it will store all fields in + // memory at once before sending them to the plugin. + // + // Type names of fields and extensions in the FileDescriptorProto are always + // fully qualified. + repeated FileDescriptorProto proto_file = 15; + + // The version number of protocol compiler. + optional Version compiler_version = 3; + +} + +// The plugin writes an encoded CodeGeneratorResponse to stdout. +message CodeGeneratorResponse { + // Error message. If non-empty, code generation failed. The plugin process + // should exit with status code zero even if it reports an error in this way. + // + // This should be used to indicate errors in .proto files which prevent the + // code generator from generating correct code. Errors which indicate a + // problem in protoc itself -- such as the input CodeGeneratorRequest being + // unparseable -- should be reported by writing a message to stderr and + // exiting with a non-zero status code. + optional string error = 1; + + // A bitmask of supported features that the code generator supports. + // This is a bitwise "or" of values from the Feature enum. + optional uint64 supported_features = 2; + + // Sync with code_generator.h. + enum Feature { + FEATURE_NONE = 0; + FEATURE_PROTO3_OPTIONAL = 1; + } + + // Represents a single generated file. + message File { + // The file name, relative to the output directory. The name must not + // contain "." or ".." components and must be relative, not be absolute (so, + // the file cannot lie outside the output directory). "/" must be used as + // the path separator, not "\". + // + // If the name is omitted, the content will be appended to the previous + // file. This allows the generator to break large files into small chunks, + // and allows the generated text to be streamed back to protoc so that large + // files need not reside completely in memory at one time. Note that as of + // this writing protoc does not optimize for this -- it will read the entire + // CodeGeneratorResponse before writing files to disk. + optional string name = 1; + + // If non-empty, indicates that the named file should already exist, and the + // content here is to be inserted into that file at a defined insertion + // point. This feature allows a code generator to extend the output + // produced by another code generator. The original generator may provide + // insertion points by placing special annotations in the file that look + // like: + // @@protoc_insertion_point(NAME) + // The annotation can have arbitrary text before and after it on the line, + // which allows it to be placed in a comment. NAME should be replaced with + // an identifier naming the point -- this is what other generators will use + // as the insertion_point. Code inserted at this point will be placed + // immediately above the line containing the insertion point (thus multiple + // insertions to the same point will come out in the order they were added). + // The double-@ is intended to make it unlikely that the generated code + // could contain things that look like insertion points by accident. + // + // For example, the C++ code generator places the following line in the + // .pb.h files that it generates: + // // @@protoc_insertion_point(namespace_scope) + // This line appears within the scope of the file's package namespace, but + // outside of any particular class. Another plugin can then specify the + // insertion_point "namespace_scope" to generate additional classes or + // other declarations that should be placed in this scope. + // + // Note that if the line containing the insertion point begins with + // whitespace, the same whitespace will be added to every line of the + // inserted text. This is useful for languages like Python, where + // indentation matters. In these languages, the insertion point comment + // should be indented the same amount as any inserted code will need to be + // in order to work correctly in that context. + // + // The code generator that generates the initial file and the one which + // inserts into it must both run as part of a single invocation of protoc. + // Code generators are executed in the order in which they appear on the + // command line. + // + // If |insertion_point| is present, |name| must also be present. + optional string insertion_point = 2; + + // The file contents. + optional string content = 15; + } + repeated File file = 15; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/descriptor.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/descriptor.proto new file mode 100644 index 0000000000..d29fdec5e5 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/descriptor.proto @@ -0,0 +1,909 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// Author: kenton@google.com (Kenton Varda) +// Based on original Protocol Buffers design by +// Sanjay Ghemawat, Jeff Dean, and others. +// +// The messages in this file describe the definitions found in .proto files. +// A valid .proto file can be translated directly to a FileDescriptorProto +// without any other information (e.g. without reading its imports). + + +syntax = "proto2"; + +package google.protobuf; + +option go_package = "github.com/golang/protobuf/protoc-gen-go/descriptor;descriptor"; +option java_package = "com.google.protobuf"; +option java_outer_classname = "DescriptorProtos"; +option csharp_namespace = "Google.Protobuf.Reflection"; +option objc_class_prefix = "GPB"; +option cc_enable_arenas = true; + +// descriptor.proto must be optimized for speed because reflection-based +// algorithms don't work during bootstrapping. +option optimize_for = SPEED; + +// The protocol compiler can output a FileDescriptorSet containing the .proto +// files it parses. +message FileDescriptorSet { + repeated FileDescriptorProto file = 1; +} + +// Describes a complete .proto file. +message FileDescriptorProto { + optional string name = 1; // file name, relative to root of source tree + optional string package = 2; // e.g. "foo", "foo.bar", etc. + + // Names of files imported by this file. + repeated string dependency = 3; + // Indexes of the public imported files in the dependency list above. + repeated int32 public_dependency = 10; + // Indexes of the weak imported files in the dependency list. + // For Google-internal migration only. Do not use. + repeated int32 weak_dependency = 11; + + // All top-level definitions in this file. + repeated DescriptorProto message_type = 4; + repeated EnumDescriptorProto enum_type = 5; + repeated ServiceDescriptorProto service = 6; + repeated FieldDescriptorProto extension = 7; + + optional FileOptions options = 8; + + // This field contains optional information about the original source code. + // You may safely remove this entire field without harming runtime + // functionality of the descriptors -- the information is needed only by + // development tools. + optional SourceCodeInfo source_code_info = 9; + + // The syntax of the proto file. + // The supported values are "proto2" and "proto3". + optional string syntax = 12; +} + +// Describes a message type. +message DescriptorProto { + optional string name = 1; + + repeated FieldDescriptorProto field = 2; + repeated FieldDescriptorProto extension = 6; + + repeated DescriptorProto nested_type = 3; + repeated EnumDescriptorProto enum_type = 4; + + message ExtensionRange { + optional int32 start = 1; // Inclusive. + optional int32 end = 2; // Exclusive. + + optional ExtensionRangeOptions options = 3; + } + repeated ExtensionRange extension_range = 5; + + repeated OneofDescriptorProto oneof_decl = 8; + + optional MessageOptions options = 7; + + // Range of reserved tag numbers. Reserved tag numbers may not be used by + // fields or extension ranges in the same message. Reserved ranges may + // not overlap. + message ReservedRange { + optional int32 start = 1; // Inclusive. + optional int32 end = 2; // Exclusive. + } + repeated ReservedRange reserved_range = 9; + // Reserved field names, which may not be used by fields in the same message. + // A given name may only be reserved once. + repeated string reserved_name = 10; +} + +message ExtensionRangeOptions { + // The parser stores options it doesn't recognize here. See above. + repeated UninterpretedOption uninterpreted_option = 999; + + + // Clients can define custom options in extensions of this message. See above. + extensions 1000 to max; +} + +// Describes a field within a message. +message FieldDescriptorProto { + enum Type { + // 0 is reserved for errors. + // Order is weird for historical reasons. + TYPE_DOUBLE = 1; + TYPE_FLOAT = 2; + // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if + // negative values are likely. + TYPE_INT64 = 3; + TYPE_UINT64 = 4; + // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if + // negative values are likely. + TYPE_INT32 = 5; + TYPE_FIXED64 = 6; + TYPE_FIXED32 = 7; + TYPE_BOOL = 8; + TYPE_STRING = 9; + // Tag-delimited aggregate. + // Group type is deprecated and not supported in proto3. However, Proto3 + // implementations should still be able to parse the group wire format and + // treat group fields as unknown fields. + TYPE_GROUP = 10; + TYPE_MESSAGE = 11; // Length-delimited aggregate. + + // New in version 2. + TYPE_BYTES = 12; + TYPE_UINT32 = 13; + TYPE_ENUM = 14; + TYPE_SFIXED32 = 15; + TYPE_SFIXED64 = 16; + TYPE_SINT32 = 17; // Uses ZigZag encoding. + TYPE_SINT64 = 18; // Uses ZigZag encoding. + } + + enum Label { + // 0 is reserved for errors + LABEL_OPTIONAL = 1; + LABEL_REQUIRED = 2; + LABEL_REPEATED = 3; + } + + optional string name = 1; + optional int32 number = 3; + optional Label label = 4; + + // If type_name is set, this need not be set. If both this and type_name + // are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP. + optional Type type = 5; + + // For message and enum types, this is the name of the type. If the name + // starts with a '.', it is fully-qualified. Otherwise, C++-like scoping + // rules are used to find the type (i.e. first the nested types within this + // message are searched, then within the parent, on up to the root + // namespace). + optional string type_name = 6; + + // For extensions, this is the name of the type being extended. It is + // resolved in the same manner as type_name. + optional string extendee = 2; + + // For numeric types, contains the original text representation of the value. + // For booleans, "true" or "false". + // For strings, contains the default text contents (not escaped in any way). + // For bytes, contains the C escaped value. All bytes >= 128 are escaped. + // TODO(kenton): Base-64 encode? + optional string default_value = 7; + + // If set, gives the index of a oneof in the containing type's oneof_decl + // list. This field is a member of that oneof. + optional int32 oneof_index = 9; + + // JSON name of this field. The value is set by protocol compiler. If the + // user has set a "json_name" option on this field, that option's value + // will be used. Otherwise, it's deduced from the field's name by converting + // it to camelCase. + optional string json_name = 10; + + optional FieldOptions options = 8; + + // If true, this is a proto3 "optional". When a proto3 field is optional, it + // tracks presence regardless of field type. + // + // When proto3_optional is true, this field must be belong to a oneof to + // signal to old proto3 clients that presence is tracked for this field. This + // oneof is known as a "synthetic" oneof, and this field must be its sole + // member (each proto3 optional field gets its own synthetic oneof). Synthetic + // oneofs exist in the descriptor only, and do not generate any API. Synthetic + // oneofs must be ordered after all "real" oneofs. + // + // For message fields, proto3_optional doesn't create any semantic change, + // since non-repeated message fields always track presence. However it still + // indicates the semantic detail of whether the user wrote "optional" or not. + // This can be useful for round-tripping the .proto file. For consistency we + // give message fields a synthetic oneof also, even though it is not required + // to track presence. This is especially important because the parser can't + // tell if a field is a message or an enum, so it must always create a + // synthetic oneof. + // + // Proto2 optional fields do not set this flag, because they already indicate + // optional with `LABEL_OPTIONAL`. + optional bool proto3_optional = 17; +} + +// Describes a oneof. +message OneofDescriptorProto { + optional string name = 1; + optional OneofOptions options = 2; +} + +// Describes an enum type. +message EnumDescriptorProto { + optional string name = 1; + + repeated EnumValueDescriptorProto value = 2; + + optional EnumOptions options = 3; + + // Range of reserved numeric values. Reserved values may not be used by + // entries in the same enum. Reserved ranges may not overlap. + // + // Note that this is distinct from DescriptorProto.ReservedRange in that it + // is inclusive such that it can appropriately represent the entire int32 + // domain. + message EnumReservedRange { + optional int32 start = 1; // Inclusive. + optional int32 end = 2; // Inclusive. + } + + // Range of reserved numeric values. Reserved numeric values may not be used + // by enum values in the same enum declaration. Reserved ranges may not + // overlap. + repeated EnumReservedRange reserved_range = 4; + + // Reserved enum value names, which may not be reused. A given name may only + // be reserved once. + repeated string reserved_name = 5; +} + +// Describes a value within an enum. +message EnumValueDescriptorProto { + optional string name = 1; + optional int32 number = 2; + + optional EnumValueOptions options = 3; +} + +// Describes a service. +message ServiceDescriptorProto { + optional string name = 1; + repeated MethodDescriptorProto method = 2; + + optional ServiceOptions options = 3; +} + +// Describes a method of a service. +message MethodDescriptorProto { + optional string name = 1; + + // Input and output type names. These are resolved in the same way as + // FieldDescriptorProto.type_name, but must refer to a message type. + optional string input_type = 2; + optional string output_type = 3; + + optional MethodOptions options = 4; + + // Identifies if client streams multiple client messages + optional bool client_streaming = 5 [default = false]; + // Identifies if server streams multiple server messages + optional bool server_streaming = 6 [default = false]; +} + + +// =================================================================== +// Options + +// Each of the definitions above may have "options" attached. These are +// just annotations which may cause code to be generated slightly differently +// or may contain hints for code that manipulates protocol messages. +// +// Clients may define custom options as extensions of the *Options messages. +// These extensions may not yet be known at parsing time, so the parser cannot +// store the values in them. Instead it stores them in a field in the *Options +// message called uninterpreted_option. This field must have the same name +// across all *Options messages. We then use this field to populate the +// extensions when we build a descriptor, at which point all protos have been +// parsed and so all extensions are known. +// +// Extension numbers for custom options may be chosen as follows: +// * For options which will only be used within a single application or +// organization, or for experimental options, use field numbers 50000 +// through 99999. It is up to you to ensure that you do not use the +// same number for multiple options. +// * For options which will be published and used publicly by multiple +// independent entities, e-mail protobuf-global-extension-registry@google.com +// to reserve extension numbers. Simply provide your project name (e.g. +// Objective-C plugin) and your project website (if available) -- there's no +// need to explain how you intend to use them. Usually you only need one +// extension number. You can declare multiple options with only one extension +// number by putting them in a sub-message. See the Custom Options section of +// the docs for examples: +// https://developers.google.com/protocol-buffers/docs/proto#options +// If this turns out to be popular, a web service will be set up +// to automatically assign option numbers. + +message FileOptions { + + // Sets the Java package where classes generated from this .proto will be + // placed. By default, the proto package is used, but this is often + // inappropriate because proto packages do not normally start with backwards + // domain names. + optional string java_package = 1; + + + // If set, all the classes from the .proto file are wrapped in a single + // outer class with the given name. This applies to both Proto1 + // (equivalent to the old "--one_java_file" option) and Proto2 (where + // a .proto always translates to a single class, but you may want to + // explicitly choose the class name). + optional string java_outer_classname = 8; + + // If set true, then the Java code generator will generate a separate .java + // file for each top-level message, enum, and service defined in the .proto + // file. Thus, these types will *not* be nested inside the outer class + // named by java_outer_classname. However, the outer class will still be + // generated to contain the file's getDescriptor() method as well as any + // top-level extensions defined in the file. + optional bool java_multiple_files = 10 [default = false]; + + // This option does nothing. + optional bool java_generate_equals_and_hash = 20 [deprecated=true]; + + // If set true, then the Java2 code generator will generate code that + // throws an exception whenever an attempt is made to assign a non-UTF-8 + // byte sequence to a string field. + // Message reflection will do the same. + // However, an extension field still accepts non-UTF-8 byte sequences. + // This option has no effect on when used with the lite runtime. + optional bool java_string_check_utf8 = 27 [default = false]; + + + // Generated classes can be optimized for speed or code size. + enum OptimizeMode { + SPEED = 1; // Generate complete code for parsing, serialization, + // etc. + CODE_SIZE = 2; // Use ReflectionOps to implement these methods. + LITE_RUNTIME = 3; // Generate code using MessageLite and the lite runtime. + } + optional OptimizeMode optimize_for = 9 [default = SPEED]; + + // Sets the Go package where structs generated from this .proto will be + // placed. If omitted, the Go package will be derived from the following: + // - The basename of the package import path, if provided. + // - Otherwise, the package statement in the .proto file, if present. + // - Otherwise, the basename of the .proto file, without extension. + optional string go_package = 11; + + + + + // Should generic services be generated in each language? "Generic" services + // are not specific to any particular RPC system. They are generated by the + // main code generators in each language (without additional plugins). + // Generic services were the only kind of service generation supported by + // early versions of google.protobuf. + // + // Generic services are now considered deprecated in favor of using plugins + // that generate code specific to your particular RPC system. Therefore, + // these default to false. Old code which depends on generic services should + // explicitly set them to true. + optional bool cc_generic_services = 16 [default = false]; + optional bool java_generic_services = 17 [default = false]; + optional bool py_generic_services = 18 [default = false]; + optional bool php_generic_services = 42 [default = false]; + + // Is this file deprecated? + // Depending on the target platform, this can emit Deprecated annotations + // for everything in the file, or it will be completely ignored; in the very + // least, this is a formalization for deprecating files. + optional bool deprecated = 23 [default = false]; + + // Enables the use of arenas for the proto messages in this file. This applies + // only to generated classes for C++. + optional bool cc_enable_arenas = 31 [default = true]; + + + // Sets the objective c class prefix which is prepended to all objective c + // generated classes from this .proto. There is no default. + optional string objc_class_prefix = 36; + + // Namespace for generated classes; defaults to the package. + optional string csharp_namespace = 37; + + // By default Swift generators will take the proto package and CamelCase it + // replacing '.' with underscore and use that to prefix the types/symbols + // defined. When this options is provided, they will use this value instead + // to prefix the types/symbols defined. + optional string swift_prefix = 39; + + // Sets the php class prefix which is prepended to all php generated classes + // from this .proto. Default is empty. + optional string php_class_prefix = 40; + + // Use this option to change the namespace of php generated classes. Default + // is empty. When this option is empty, the package name will be used for + // determining the namespace. + optional string php_namespace = 41; + + // Use this option to change the namespace of php generated metadata classes. + // Default is empty. When this option is empty, the proto file name will be + // used for determining the namespace. + optional string php_metadata_namespace = 44; + + // Use this option to change the package of ruby generated classes. Default + // is empty. When this option is not set, the package name will be used for + // determining the ruby package. + optional string ruby_package = 45; + + + // The parser stores options it doesn't recognize here. + // See the documentation for the "Options" section above. + repeated UninterpretedOption uninterpreted_option = 999; + + // Clients can define custom options in extensions of this message. + // See the documentation for the "Options" section above. + extensions 1000 to max; + + reserved 38; +} + +message MessageOptions { + // Set true to use the old proto1 MessageSet wire format for extensions. + // This is provided for backwards-compatibility with the MessageSet wire + // format. You should not use this for any other reason: It's less + // efficient, has fewer features, and is more complicated. + // + // The message must be defined exactly as follows: + // message Foo { + // option message_set_wire_format = true; + // extensions 4 to max; + // } + // Note that the message cannot have any defined fields; MessageSets only + // have extensions. + // + // All extensions of your type must be singular messages; e.g. they cannot + // be int32s, enums, or repeated messages. + // + // Because this is an option, the above two restrictions are not enforced by + // the protocol compiler. + optional bool message_set_wire_format = 1 [default = false]; + + // Disables the generation of the standard "descriptor()" accessor, which can + // conflict with a field of the same name. This is meant to make migration + // from proto1 easier; new code should avoid fields named "descriptor". + optional bool no_standard_descriptor_accessor = 2 [default = false]; + + // Is this message deprecated? + // Depending on the target platform, this can emit Deprecated annotations + // for the message, or it will be completely ignored; in the very least, + // this is a formalization for deprecating messages. + optional bool deprecated = 3 [default = false]; + + // Whether the message is an automatically generated map entry type for the + // maps field. + // + // For maps fields: + // map map_field = 1; + // The parsed descriptor looks like: + // message MapFieldEntry { + // option map_entry = true; + // optional KeyType key = 1; + // optional ValueType value = 2; + // } + // repeated MapFieldEntry map_field = 1; + // + // Implementations may choose not to generate the map_entry=true message, but + // use a native map in the target language to hold the keys and values. + // The reflection APIs in such implementations still need to work as + // if the field is a repeated message field. + // + // NOTE: Do not set the option in .proto files. Always use the maps syntax + // instead. The option should only be implicitly set by the proto compiler + // parser. + optional bool map_entry = 7; + + reserved 8; // javalite_serializable + reserved 9; // javanano_as_lite + + + // The parser stores options it doesn't recognize here. See above. + repeated UninterpretedOption uninterpreted_option = 999; + + // Clients can define custom options in extensions of this message. See above. + extensions 1000 to max; +} + +message FieldOptions { + // The ctype option instructs the C++ code generator to use a different + // representation of the field than it normally would. See the specific + // options below. This option is not yet implemented in the open source + // release -- sorry, we'll try to include it in a future version! + optional CType ctype = 1 [default = STRING]; + enum CType { + // Default mode. + STRING = 0; + + CORD = 1; + + STRING_PIECE = 2; + } + // The packed option can be enabled for repeated primitive fields to enable + // a more efficient representation on the wire. Rather than repeatedly + // writing the tag and type for each element, the entire array is encoded as + // a single length-delimited blob. In proto3, only explicit setting it to + // false will avoid using packed encoding. + optional bool packed = 2; + + // The jstype option determines the JavaScript type used for values of the + // field. The option is permitted only for 64 bit integral and fixed types + // (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING + // is represented as JavaScript string, which avoids loss of precision that + // can happen when a large value is converted to a floating point JavaScript. + // Specifying JS_NUMBER for the jstype causes the generated JavaScript code to + // use the JavaScript "number" type. The behavior of the default option + // JS_NORMAL is implementation dependent. + // + // This option is an enum to permit additional types to be added, e.g. + // goog.math.Integer. + optional JSType jstype = 6 [default = JS_NORMAL]; + enum JSType { + // Use the default type. + JS_NORMAL = 0; + + // Use JavaScript strings. + JS_STRING = 1; + + // Use JavaScript numbers. + JS_NUMBER = 2; + } + + // Should this field be parsed lazily? Lazy applies only to message-type + // fields. It means that when the outer message is initially parsed, the + // inner message's contents will not be parsed but instead stored in encoded + // form. The inner message will actually be parsed when it is first accessed. + // + // This is only a hint. Implementations are free to choose whether to use + // eager or lazy parsing regardless of the value of this option. However, + // setting this option true suggests that the protocol author believes that + // using lazy parsing on this field is worth the additional bookkeeping + // overhead typically needed to implement it. + // + // This option does not affect the public interface of any generated code; + // all method signatures remain the same. Furthermore, thread-safety of the + // interface is not affected by this option; const methods remain safe to + // call from multiple threads concurrently, while non-const methods continue + // to require exclusive access. + // + // + // Note that implementations may choose not to check required fields within + // a lazy sub-message. That is, calling IsInitialized() on the outer message + // may return true even if the inner message has missing required fields. + // This is necessary because otherwise the inner message would have to be + // parsed in order to perform the check, defeating the purpose of lazy + // parsing. An implementation which chooses not to check required fields + // must be consistent about it. That is, for any particular sub-message, the + // implementation must either *always* check its required fields, or *never* + // check its required fields, regardless of whether or not the message has + // been parsed. + optional bool lazy = 5 [default = false]; + + // Is this field deprecated? + // Depending on the target platform, this can emit Deprecated annotations + // for accessors, or it will be completely ignored; in the very least, this + // is a formalization for deprecating fields. + optional bool deprecated = 3 [default = false]; + + // For Google-internal migration only. Do not use. + optional bool weak = 10 [default = false]; + + + // The parser stores options it doesn't recognize here. See above. + repeated UninterpretedOption uninterpreted_option = 999; + + // Clients can define custom options in extensions of this message. See above. + extensions 1000 to max; + + reserved 4; // removed jtype +} + +message OneofOptions { + // The parser stores options it doesn't recognize here. See above. + repeated UninterpretedOption uninterpreted_option = 999; + + // Clients can define custom options in extensions of this message. See above. + extensions 1000 to max; +} + +message EnumOptions { + + // Set this option to true to allow mapping different tag names to the same + // value. + optional bool allow_alias = 2; + + // Is this enum deprecated? + // Depending on the target platform, this can emit Deprecated annotations + // for the enum, or it will be completely ignored; in the very least, this + // is a formalization for deprecating enums. + optional bool deprecated = 3 [default = false]; + + reserved 5; // javanano_as_lite + + // The parser stores options it doesn't recognize here. See above. + repeated UninterpretedOption uninterpreted_option = 999; + + // Clients can define custom options in extensions of this message. See above. + extensions 1000 to max; +} + +message EnumValueOptions { + // Is this enum value deprecated? + // Depending on the target platform, this can emit Deprecated annotations + // for the enum value, or it will be completely ignored; in the very least, + // this is a formalization for deprecating enum values. + optional bool deprecated = 1 [default = false]; + + // The parser stores options it doesn't recognize here. See above. + repeated UninterpretedOption uninterpreted_option = 999; + + // Clients can define custom options in extensions of this message. See above. + extensions 1000 to max; +} + +message ServiceOptions { + + // Note: Field numbers 1 through 32 are reserved for Google's internal RPC + // framework. We apologize for hoarding these numbers to ourselves, but + // we were already using them long before we decided to release Protocol + // Buffers. + + // Is this service deprecated? + // Depending on the target platform, this can emit Deprecated annotations + // for the service, or it will be completely ignored; in the very least, + // this is a formalization for deprecating services. + optional bool deprecated = 33 [default = false]; + + // The parser stores options it doesn't recognize here. See above. + repeated UninterpretedOption uninterpreted_option = 999; + + // Clients can define custom options in extensions of this message. See above. + extensions 1000 to max; +} + +message MethodOptions { + + // Note: Field numbers 1 through 32 are reserved for Google's internal RPC + // framework. We apologize for hoarding these numbers to ourselves, but + // we were already using them long before we decided to release Protocol + // Buffers. + + // Is this method deprecated? + // Depending on the target platform, this can emit Deprecated annotations + // for the method, or it will be completely ignored; in the very least, + // this is a formalization for deprecating methods. + optional bool deprecated = 33 [default = false]; + + // Is this method side-effect-free (or safe in HTTP parlance), or idempotent, + // or neither? HTTP based RPC implementation may choose GET verb for safe + // methods, and PUT verb for idempotent methods instead of the default POST. + enum IdempotencyLevel { + IDEMPOTENCY_UNKNOWN = 0; + NO_SIDE_EFFECTS = 1; // implies idempotent + IDEMPOTENT = 2; // idempotent, but may have side effects + } + optional IdempotencyLevel idempotency_level = 34 + [default = IDEMPOTENCY_UNKNOWN]; + + // The parser stores options it doesn't recognize here. See above. + repeated UninterpretedOption uninterpreted_option = 999; + + // Clients can define custom options in extensions of this message. See above. + extensions 1000 to max; +} + + +// A message representing a option the parser does not recognize. This only +// appears in options protos created by the compiler::Parser class. +// DescriptorPool resolves these when building Descriptor objects. Therefore, +// options protos in descriptor objects (e.g. returned by Descriptor::options(), +// or produced by Descriptor::CopyTo()) will never have UninterpretedOptions +// in them. +message UninterpretedOption { + // The name of the uninterpreted option. Each string represents a segment in + // a dot-separated name. is_extension is true iff a segment represents an + // extension (denoted with parentheses in options specs in .proto files). + // E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents + // "foo.(bar.baz).qux". + message NamePart { + required string name_part = 1; + required bool is_extension = 2; + } + repeated NamePart name = 2; + + // The value of the uninterpreted option, in whatever type the tokenizer + // identified it as during parsing. Exactly one of these should be set. + optional string identifier_value = 3; + optional uint64 positive_int_value = 4; + optional int64 negative_int_value = 5; + optional double double_value = 6; + optional bytes string_value = 7; + optional string aggregate_value = 8; +} + +// =================================================================== +// Optional source code info + +// Encapsulates information about the original source file from which a +// FileDescriptorProto was generated. +message SourceCodeInfo { + // A Location identifies a piece of source code in a .proto file which + // corresponds to a particular definition. This information is intended + // to be useful to IDEs, code indexers, documentation generators, and similar + // tools. + // + // For example, say we have a file like: + // message Foo { + // optional string foo = 1; + // } + // Let's look at just the field definition: + // optional string foo = 1; + // ^ ^^ ^^ ^ ^^^ + // a bc de f ghi + // We have the following locations: + // span path represents + // [a,i) [ 4, 0, 2, 0 ] The whole field definition. + // [a,b) [ 4, 0, 2, 0, 4 ] The label (optional). + // [c,d) [ 4, 0, 2, 0, 5 ] The type (string). + // [e,f) [ 4, 0, 2, 0, 1 ] The name (foo). + // [g,h) [ 4, 0, 2, 0, 3 ] The number (1). + // + // Notes: + // - A location may refer to a repeated field itself (i.e. not to any + // particular index within it). This is used whenever a set of elements are + // logically enclosed in a single code segment. For example, an entire + // extend block (possibly containing multiple extension definitions) will + // have an outer location whose path refers to the "extensions" repeated + // field without an index. + // - Multiple locations may have the same path. This happens when a single + // logical declaration is spread out across multiple places. The most + // obvious example is the "extend" block again -- there may be multiple + // extend blocks in the same scope, each of which will have the same path. + // - A location's span is not always a subset of its parent's span. For + // example, the "extendee" of an extension declaration appears at the + // beginning of the "extend" block and is shared by all extensions within + // the block. + // - Just because a location's span is a subset of some other location's span + // does not mean that it is a descendant. For example, a "group" defines + // both a type and a field in a single declaration. Thus, the locations + // corresponding to the type and field and their components will overlap. + // - Code which tries to interpret locations should probably be designed to + // ignore those that it doesn't understand, as more types of locations could + // be recorded in the future. + repeated Location location = 1; + message Location { + // Identifies which part of the FileDescriptorProto was defined at this + // location. + // + // Each element is a field number or an index. They form a path from + // the root FileDescriptorProto to the place where the definition. For + // example, this path: + // [ 4, 3, 2, 7, 1 ] + // refers to: + // file.message_type(3) // 4, 3 + // .field(7) // 2, 7 + // .name() // 1 + // This is because FileDescriptorProto.message_type has field number 4: + // repeated DescriptorProto message_type = 4; + // and DescriptorProto.field has field number 2: + // repeated FieldDescriptorProto field = 2; + // and FieldDescriptorProto.name has field number 1: + // optional string name = 1; + // + // Thus, the above path gives the location of a field name. If we removed + // the last element: + // [ 4, 3, 2, 7 ] + // this path refers to the whole field declaration (from the beginning + // of the label to the terminating semicolon). + repeated int32 path = 1 [packed = true]; + + // Always has exactly three or four elements: start line, start column, + // end line (optional, otherwise assumed same as start line), end column. + // These are packed into a single field for efficiency. Note that line + // and column numbers are zero-based -- typically you will want to add + // 1 to each before displaying to a user. + repeated int32 span = 2 [packed = true]; + + // If this SourceCodeInfo represents a complete declaration, these are any + // comments appearing before and after the declaration which appear to be + // attached to the declaration. + // + // A series of line comments appearing on consecutive lines, with no other + // tokens appearing on those lines, will be treated as a single comment. + // + // leading_detached_comments will keep paragraphs of comments that appear + // before (but not connected to) the current element. Each paragraph, + // separated by empty lines, will be one comment element in the repeated + // field. + // + // Only the comment content is provided; comment markers (e.g. //) are + // stripped out. For block comments, leading whitespace and an asterisk + // will be stripped from the beginning of each line other than the first. + // Newlines are included in the output. + // + // Examples: + // + // optional int32 foo = 1; // Comment attached to foo. + // // Comment attached to bar. + // optional int32 bar = 2; + // + // optional string baz = 3; + // // Comment attached to baz. + // // Another line attached to baz. + // + // // Comment attached to qux. + // // + // // Another line attached to qux. + // optional double qux = 4; + // + // // Detached comment for corge. This is not leading or trailing comments + // // to qux or corge because there are blank lines separating it from + // // both. + // + // // Detached comment for corge paragraph 2. + // + // optional string corge = 5; + // /* Block comment attached + // * to corge. Leading asterisks + // * will be removed. */ + // /* Block comment attached to + // * grault. */ + // optional int32 grault = 6; + // + // // ignored detached comments. + optional string leading_comments = 3; + optional string trailing_comments = 4; + repeated string leading_detached_comments = 6; + } +} + +// Describes the relationship between generated code and its original source +// file. A GeneratedCodeInfo message is associated with only one generated +// source file, but may contain references to different source .proto files. +message GeneratedCodeInfo { + // An Annotation connects some span of text in generated code to an element + // of its generating .proto file. + repeated Annotation annotation = 1; + message Annotation { + // Identifies the element in the original source .proto file. This field + // is formatted the same as SourceCodeInfo.Location.path. + repeated int32 path = 1 [packed = true]; + + // Identifies the filesystem path to the original source .proto. + optional string source_file = 2; + + // Identifies the starting offset in bytes in the generated code + // that relates to the identified object. + optional int32 begin = 3; + + // Identifies the ending offset in bytes in the generated code that + // relates to the identified offset. The end offset should be one past + // the last relevant byte (so the length of the text = end - begin). + optional int32 end = 4; + } +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/duration.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/duration.proto new file mode 100644 index 0000000000..99cb102c35 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/duration.proto @@ -0,0 +1,116 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +syntax = "proto3"; + +package google.protobuf; + +option csharp_namespace = "Google.Protobuf.WellKnownTypes"; +option cc_enable_arenas = true; +option go_package = "github.com/golang/protobuf/ptypes/duration"; +option java_package = "com.google.protobuf"; +option java_outer_classname = "DurationProto"; +option java_multiple_files = true; +option objc_class_prefix = "GPB"; + +// A Duration represents a signed, fixed-length span of time represented +// as a count of seconds and fractions of seconds at nanosecond +// resolution. It is independent of any calendar and concepts like "day" +// or "month". It is related to Timestamp in that the difference between +// two Timestamp values is a Duration and it can be added or subtracted +// from a Timestamp. Range is approximately +-10,000 years. +// +// # Examples +// +// Example 1: Compute Duration from two Timestamps in pseudo code. +// +// Timestamp start = ...; +// Timestamp end = ...; +// Duration duration = ...; +// +// duration.seconds = end.seconds - start.seconds; +// duration.nanos = end.nanos - start.nanos; +// +// if (duration.seconds < 0 && duration.nanos > 0) { +// duration.seconds += 1; +// duration.nanos -= 1000000000; +// } else if (duration.seconds > 0 && duration.nanos < 0) { +// duration.seconds -= 1; +// duration.nanos += 1000000000; +// } +// +// Example 2: Compute Timestamp from Timestamp + Duration in pseudo code. +// +// Timestamp start = ...; +// Duration duration = ...; +// Timestamp end = ...; +// +// end.seconds = start.seconds + duration.seconds; +// end.nanos = start.nanos + duration.nanos; +// +// if (end.nanos < 0) { +// end.seconds -= 1; +// end.nanos += 1000000000; +// } else if (end.nanos >= 1000000000) { +// end.seconds += 1; +// end.nanos -= 1000000000; +// } +// +// Example 3: Compute Duration from datetime.timedelta in Python. +// +// td = datetime.timedelta(days=3, minutes=10) +// duration = Duration() +// duration.FromTimedelta(td) +// +// # JSON Mapping +// +// In JSON format, the Duration type is encoded as a string rather than an +// object, where the string ends in the suffix "s" (indicating seconds) and +// is preceded by the number of seconds, with nanoseconds expressed as +// fractional seconds. For example, 3 seconds with 0 nanoseconds should be +// encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should +// be expressed in JSON format as "3.000000001s", and 3 seconds and 1 +// microsecond should be expressed in JSON format as "3.000001s". +// +// +message Duration { + // Signed seconds of the span of time. Must be from -315,576,000,000 + // to +315,576,000,000 inclusive. Note: these bounds are computed from: + // 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years + int64 seconds = 1; + + // Signed fractions of a second at nanosecond resolution of the span + // of time. Durations less than one second are represented with a 0 + // `seconds` field and a positive or negative `nanos` field. For durations + // of one second or more, a non-zero value for the `nanos` field must be + // of the same sign as the `seconds` field. Must be from -999,999,999 + // to +999,999,999 inclusive. + int32 nanos = 2; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/empty.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/empty.proto new file mode 100644 index 0000000000..03cacd2330 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/empty.proto @@ -0,0 +1,52 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +syntax = "proto3"; + +package google.protobuf; + +option csharp_namespace = "Google.Protobuf.WellKnownTypes"; +option go_package = "github.com/golang/protobuf/ptypes/empty"; +option java_package = "com.google.protobuf"; +option java_outer_classname = "EmptyProto"; +option java_multiple_files = true; +option objc_class_prefix = "GPB"; +option cc_enable_arenas = true; + +// A generic empty message that you can re-use to avoid defining duplicated +// empty messages in your APIs. A typical example is to use it as the request +// or the response type of an API method. For instance: +// +// service Foo { +// rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); +// } +// +// The JSON representation for `Empty` is empty JSON object `{}`. +message Empty {} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/field_mask.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/field_mask.proto new file mode 100644 index 0000000000..baac8744cb --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/field_mask.proto @@ -0,0 +1,245 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +syntax = "proto3"; + +package google.protobuf; + +option csharp_namespace = "Google.Protobuf.WellKnownTypes"; +option java_package = "com.google.protobuf"; +option java_outer_classname = "FieldMaskProto"; +option java_multiple_files = true; +option objc_class_prefix = "GPB"; +option go_package = "google.golang.org/genproto/protobuf/field_mask;field_mask"; +option cc_enable_arenas = true; + +// `FieldMask` represents a set of symbolic field paths, for example: +// +// paths: "f.a" +// paths: "f.b.d" +// +// Here `f` represents a field in some root message, `a` and `b` +// fields in the message found in `f`, and `d` a field found in the +// message in `f.b`. +// +// Field masks are used to specify a subset of fields that should be +// returned by a get operation or modified by an update operation. +// Field masks also have a custom JSON encoding (see below). +// +// # Field Masks in Projections +// +// When used in the context of a projection, a response message or +// sub-message is filtered by the API to only contain those fields as +// specified in the mask. For example, if the mask in the previous +// example is applied to a response message as follows: +// +// f { +// a : 22 +// b { +// d : 1 +// x : 2 +// } +// y : 13 +// } +// z: 8 +// +// The result will not contain specific values for fields x,y and z +// (their value will be set to the default, and omitted in proto text +// output): +// +// +// f { +// a : 22 +// b { +// d : 1 +// } +// } +// +// A repeated field is not allowed except at the last position of a +// paths string. +// +// If a FieldMask object is not present in a get operation, the +// operation applies to all fields (as if a FieldMask of all fields +// had been specified). +// +// Note that a field mask does not necessarily apply to the +// top-level response message. In case of a REST get operation, the +// field mask applies directly to the response, but in case of a REST +// list operation, the mask instead applies to each individual message +// in the returned resource list. In case of a REST custom method, +// other definitions may be used. Where the mask applies will be +// clearly documented together with its declaration in the API. In +// any case, the effect on the returned resource/resources is required +// behavior for APIs. +// +// # Field Masks in Update Operations +// +// A field mask in update operations specifies which fields of the +// targeted resource are going to be updated. The API is required +// to only change the values of the fields as specified in the mask +// and leave the others untouched. If a resource is passed in to +// describe the updated values, the API ignores the values of all +// fields not covered by the mask. +// +// If a repeated field is specified for an update operation, new values will +// be appended to the existing repeated field in the target resource. Note that +// a repeated field is only allowed in the last position of a `paths` string. +// +// If a sub-message is specified in the last position of the field mask for an +// update operation, then new value will be merged into the existing sub-message +// in the target resource. +// +// For example, given the target message: +// +// f { +// b { +// d: 1 +// x: 2 +// } +// c: [1] +// } +// +// And an update message: +// +// f { +// b { +// d: 10 +// } +// c: [2] +// } +// +// then if the field mask is: +// +// paths: ["f.b", "f.c"] +// +// then the result will be: +// +// f { +// b { +// d: 10 +// x: 2 +// } +// c: [1, 2] +// } +// +// An implementation may provide options to override this default behavior for +// repeated and message fields. +// +// In order to reset a field's value to the default, the field must +// be in the mask and set to the default value in the provided resource. +// Hence, in order to reset all fields of a resource, provide a default +// instance of the resource and set all fields in the mask, or do +// not provide a mask as described below. +// +// If a field mask is not present on update, the operation applies to +// all fields (as if a field mask of all fields has been specified). +// Note that in the presence of schema evolution, this may mean that +// fields the client does not know and has therefore not filled into +// the request will be reset to their default. If this is unwanted +// behavior, a specific service may require a client to always specify +// a field mask, producing an error if not. +// +// As with get operations, the location of the resource which +// describes the updated values in the request message depends on the +// operation kind. In any case, the effect of the field mask is +// required to be honored by the API. +// +// ## Considerations for HTTP REST +// +// The HTTP kind of an update operation which uses a field mask must +// be set to PATCH instead of PUT in order to satisfy HTTP semantics +// (PUT must only be used for full updates). +// +// # JSON Encoding of Field Masks +// +// In JSON, a field mask is encoded as a single string where paths are +// separated by a comma. Fields name in each path are converted +// to/from lower-camel naming conventions. +// +// As an example, consider the following message declarations: +// +// message Profile { +// User user = 1; +// Photo photo = 2; +// } +// message User { +// string display_name = 1; +// string address = 2; +// } +// +// In proto a field mask for `Profile` may look as such: +// +// mask { +// paths: "user.display_name" +// paths: "photo" +// } +// +// In JSON, the same mask is represented as below: +// +// { +// mask: "user.displayName,photo" +// } +// +// # Field Masks and Oneof Fields +// +// Field masks treat fields in oneofs just as regular fields. Consider the +// following message: +// +// message SampleMessage { +// oneof test_oneof { +// string name = 4; +// SubMessage sub_message = 9; +// } +// } +// +// The field mask can be: +// +// mask { +// paths: "name" +// } +// +// Or: +// +// mask { +// paths: "sub_message" +// } +// +// Note that oneof type names ("test_oneof" in this case) cannot be used in +// paths. +// +// ## Field Mask Verification +// +// The implementation of any API method which has a FieldMask type field in the +// request should verify the included field paths, and return an +// `INVALID_ARGUMENT` error if any path is unmappable. +message FieldMask { + // The set of field mask paths. + repeated string paths = 1; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/source_context.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/source_context.proto new file mode 100644 index 0000000000..f3b2c96681 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/source_context.proto @@ -0,0 +1,48 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +syntax = "proto3"; + +package google.protobuf; + +option csharp_namespace = "Google.Protobuf.WellKnownTypes"; +option java_package = "com.google.protobuf"; +option java_outer_classname = "SourceContextProto"; +option java_multiple_files = true; +option objc_class_prefix = "GPB"; +option go_package = "google.golang.org/genproto/protobuf/source_context;source_context"; + +// `SourceContext` represents information about the source of a +// protobuf element, like the file in which it is defined. +message SourceContext { + // The path-qualified name of the .proto file that contained the associated + // protobuf element. For example: `"google/protobuf/source_context.proto"`. + string file_name = 1; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/struct.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/struct.proto new file mode 100644 index 0000000000..ed990e31d9 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/struct.proto @@ -0,0 +1,95 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +syntax = "proto3"; + +package google.protobuf; + +option csharp_namespace = "Google.Protobuf.WellKnownTypes"; +option cc_enable_arenas = true; +option go_package = "github.com/golang/protobuf/ptypes/struct;structpb"; +option java_package = "com.google.protobuf"; +option java_outer_classname = "StructProto"; +option java_multiple_files = true; +option objc_class_prefix = "GPB"; + +// `Struct` represents a structured data value, consisting of fields +// which map to dynamically typed values. In some languages, `Struct` +// might be supported by a native representation. For example, in +// scripting languages like JS a struct is represented as an +// object. The details of that representation are described together +// with the proto support for the language. +// +// The JSON representation for `Struct` is JSON object. +message Struct { + // Unordered map of dynamically typed values. + map fields = 1; +} + +// `Value` represents a dynamically typed value which can be either +// null, a number, a string, a boolean, a recursive struct value, or a +// list of values. A producer of value is expected to set one of that +// variants, absence of any variant indicates an error. +// +// The JSON representation for `Value` is JSON value. +message Value { + // The kind of value. + oneof kind { + // Represents a null value. + NullValue null_value = 1; + // Represents a double value. + double number_value = 2; + // Represents a string value. + string string_value = 3; + // Represents a boolean value. + bool bool_value = 4; + // Represents a structured value. + Struct struct_value = 5; + // Represents a repeated `Value`. + ListValue list_value = 6; + } +} + +// `NullValue` is a singleton enumeration to represent the null value for the +// `Value` type union. +// +// The JSON representation for `NullValue` is JSON `null`. +enum NullValue { + // Null value. + NULL_VALUE = 0; +} + +// `ListValue` is a wrapper around a repeated field of values. +// +// The JSON representation for `ListValue` is JSON array. +message ListValue { + // Repeated field of dynamically typed values. + repeated Value values = 1; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/timestamp.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/timestamp.proto new file mode 100644 index 0000000000..cd357864a9 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/timestamp.proto @@ -0,0 +1,138 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +syntax = "proto3"; + +package google.protobuf; + +option csharp_namespace = "Google.Protobuf.WellKnownTypes"; +option cc_enable_arenas = true; +option go_package = "github.com/golang/protobuf/ptypes/timestamp"; +option java_package = "com.google.protobuf"; +option java_outer_classname = "TimestampProto"; +option java_multiple_files = true; +option objc_class_prefix = "GPB"; + +// A Timestamp represents a point in time independent of any time zone or local +// calendar, encoded as a count of seconds and fractions of seconds at +// nanosecond resolution. The count is relative to an epoch at UTC midnight on +// January 1, 1970, in the proleptic Gregorian calendar which extends the +// Gregorian calendar backwards to year one. +// +// All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap +// second table is needed for interpretation, using a [24-hour linear +// smear](https://developers.google.com/time/smear). +// +// The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By +// restricting to that range, we ensure that we can convert to and from [RFC +// 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings. +// +// # Examples +// +// Example 1: Compute Timestamp from POSIX `time()`. +// +// Timestamp timestamp; +// timestamp.set_seconds(time(NULL)); +// timestamp.set_nanos(0); +// +// Example 2: Compute Timestamp from POSIX `gettimeofday()`. +// +// struct timeval tv; +// gettimeofday(&tv, NULL); +// +// Timestamp timestamp; +// timestamp.set_seconds(tv.tv_sec); +// timestamp.set_nanos(tv.tv_usec * 1000); +// +// Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`. +// +// FILETIME ft; +// GetSystemTimeAsFileTime(&ft); +// UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime; +// +// // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z +// // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z. +// Timestamp timestamp; +// timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL)); +// timestamp.set_nanos((INT32) ((ticks % 10000000) * 100)); +// +// Example 4: Compute Timestamp from Java `System.currentTimeMillis()`. +// +// long millis = System.currentTimeMillis(); +// +// Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) +// .setNanos((int) ((millis % 1000) * 1000000)).build(); +// +// +// Example 5: Compute Timestamp from current time in Python. +// +// timestamp = Timestamp() +// timestamp.GetCurrentTime() +// +// # JSON Mapping +// +// In JSON format, the Timestamp type is encoded as a string in the +// [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the +// format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" +// where {year} is always expressed using four digits while {month}, {day}, +// {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional +// seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), +// are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone +// is required. A proto3 JSON serializer should always use UTC (as indicated by +// "Z") when printing the Timestamp type and a proto3 JSON parser should be +// able to accept both UTC and other timezones (as indicated by an offset). +// +// For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past +// 01:30 UTC on January 15, 2017. +// +// In JavaScript, one can convert a Date object to this format using the +// standard +// [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString) +// method. In Python, a standard `datetime.datetime` object can be converted +// to this format using +// [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with +// the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use +// the Joda Time's [`ISODateTimeFormat.dateTime()`]( +// http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D +// ) to obtain a formatter capable of generating timestamps in this format. +// +// +message Timestamp { + // Represents seconds of UTC time since Unix epoch + // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to + // 9999-12-31T23:59:59Z inclusive. + int64 seconds = 1; + + // Non-negative fractions of a second at nanosecond resolution. Negative + // second values with fractions must still have non-negative nanos values + // that count forward in time. Must be from 0 to 999,999,999 + // inclusive. + int32 nanos = 2; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/type.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/type.proto new file mode 100644 index 0000000000..e4b1d3a4ab --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/type.proto @@ -0,0 +1,187 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +syntax = "proto3"; + +package google.protobuf; + +import "google/protobuf/any.proto"; +import "google/protobuf/source_context.proto"; + +option csharp_namespace = "Google.Protobuf.WellKnownTypes"; +option cc_enable_arenas = true; +option java_package = "com.google.protobuf"; +option java_outer_classname = "TypeProto"; +option java_multiple_files = true; +option objc_class_prefix = "GPB"; +option go_package = "google.golang.org/genproto/protobuf/ptype;ptype"; + +// A protocol buffer message type. +message Type { + // The fully qualified message name. + string name = 1; + // The list of fields. + repeated Field fields = 2; + // The list of types appearing in `oneof` definitions in this type. + repeated string oneofs = 3; + // The protocol buffer options. + repeated Option options = 4; + // The source context. + SourceContext source_context = 5; + // The source syntax. + Syntax syntax = 6; +} + +// A single field of a message type. +message Field { + // Basic field types. + enum Kind { + // Field type unknown. + TYPE_UNKNOWN = 0; + // Field type double. + TYPE_DOUBLE = 1; + // Field type float. + TYPE_FLOAT = 2; + // Field type int64. + TYPE_INT64 = 3; + // Field type uint64. + TYPE_UINT64 = 4; + // Field type int32. + TYPE_INT32 = 5; + // Field type fixed64. + TYPE_FIXED64 = 6; + // Field type fixed32. + TYPE_FIXED32 = 7; + // Field type bool. + TYPE_BOOL = 8; + // Field type string. + TYPE_STRING = 9; + // Field type group. Proto2 syntax only, and deprecated. + TYPE_GROUP = 10; + // Field type message. + TYPE_MESSAGE = 11; + // Field type bytes. + TYPE_BYTES = 12; + // Field type uint32. + TYPE_UINT32 = 13; + // Field type enum. + TYPE_ENUM = 14; + // Field type sfixed32. + TYPE_SFIXED32 = 15; + // Field type sfixed64. + TYPE_SFIXED64 = 16; + // Field type sint32. + TYPE_SINT32 = 17; + // Field type sint64. + TYPE_SINT64 = 18; + } + + // Whether a field is optional, required, or repeated. + enum Cardinality { + // For fields with unknown cardinality. + CARDINALITY_UNKNOWN = 0; + // For optional fields. + CARDINALITY_OPTIONAL = 1; + // For required fields. Proto2 syntax only. + CARDINALITY_REQUIRED = 2; + // For repeated fields. + CARDINALITY_REPEATED = 3; + }; + + // The field type. + Kind kind = 1; + // The field cardinality. + Cardinality cardinality = 2; + // The field number. + int32 number = 3; + // The field name. + string name = 4; + // The field type URL, without the scheme, for message or enumeration + // types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`. + string type_url = 6; + // The index of the field type in `Type.oneofs`, for message or enumeration + // types. The first type has index 1; zero means the type is not in the list. + int32 oneof_index = 7; + // Whether to use alternative packed wire representation. + bool packed = 8; + // The protocol buffer options. + repeated Option options = 9; + // The field JSON name. + string json_name = 10; + // The string value of the default value of this field. Proto2 syntax only. + string default_value = 11; +} + +// Enum type definition. +message Enum { + // Enum type name. + string name = 1; + // Enum value definitions. + repeated EnumValue enumvalue = 2; + // Protocol buffer options. + repeated Option options = 3; + // The source context. + SourceContext source_context = 4; + // The source syntax. + Syntax syntax = 5; +} + +// Enum value definition. +message EnumValue { + // Enum value name. + string name = 1; + // Enum value number. + int32 number = 2; + // Protocol buffer options. + repeated Option options = 3; +} + +// A protocol buffer option, which can be attached to a message, field, +// enumeration, etc. +message Option { + // The option's name. For protobuf built-in options (options defined in + // descriptor.proto), this is the short name. For example, `"map_entry"`. + // For custom options, it should be the fully-qualified name. For example, + // `"google.api.http"`. + string name = 1; + // The option's value packed in an Any message. If the value is a primitive, + // the corresponding wrapper type defined in google/protobuf/wrappers.proto + // should be used. If the value is an enum, it should be stored as an int32 + // value using the google.protobuf.Int32Value type. + Any value = 2; +} + +// The syntax in which a protocol buffer element is defined. +enum Syntax { + // Syntax `proto2`. + SYNTAX_PROTO2 = 0; + // Syntax `proto3`. + SYNTAX_PROTO3 = 1; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/wrappers.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/wrappers.proto new file mode 100644 index 0000000000..9ee41e384a --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/google/protobuf/wrappers.proto @@ -0,0 +1,123 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// Wrappers for primitive (non-message) types. These types are useful +// for embedding primitives in the `google.protobuf.Any` type and for places +// where we need to distinguish between the absence of a primitive +// typed field and its default value. +// +// These wrappers have no meaningful use within repeated fields as they lack +// the ability to detect presence on individual elements. +// These wrappers have no meaningful use within a map or a oneof since +// individual entries of a map or fields of a oneof can already detect presence. + +syntax = "proto3"; + +package google.protobuf; + +option csharp_namespace = "Google.Protobuf.WellKnownTypes"; +option cc_enable_arenas = true; +option go_package = "github.com/golang/protobuf/ptypes/wrappers"; +option java_package = "com.google.protobuf"; +option java_outer_classname = "WrappersProto"; +option java_multiple_files = true; +option objc_class_prefix = "GPB"; + +// Wrapper message for `double`. +// +// The JSON representation for `DoubleValue` is JSON number. +message DoubleValue { + // The double value. + double value = 1; +} + +// Wrapper message for `float`. +// +// The JSON representation for `FloatValue` is JSON number. +message FloatValue { + // The float value. + float value = 1; +} + +// Wrapper message for `int64`. +// +// The JSON representation for `Int64Value` is JSON string. +message Int64Value { + // The int64 value. + int64 value = 1; +} + +// Wrapper message for `uint64`. +// +// The JSON representation for `UInt64Value` is JSON string. +message UInt64Value { + // The uint64 value. + uint64 value = 1; +} + +// Wrapper message for `int32`. +// +// The JSON representation for `Int32Value` is JSON number. +message Int32Value { + // The int32 value. + int32 value = 1; +} + +// Wrapper message for `uint32`. +// +// The JSON representation for `UInt32Value` is JSON number. +message UInt32Value { + // The uint32 value. + uint32 value = 1; +} + +// Wrapper message for `bool`. +// +// The JSON representation for `BoolValue` is JSON `true` and `false`. +message BoolValue { + // The bool value. + bool value = 1; +} + +// Wrapper message for `string`. +// +// The JSON representation for `StringValue` is JSON string. +message StringValue { + // The string value. + string value = 1; +} + +// Wrapper message for `bytes`. +// +// The JSON representation for `BytesValue` is JSON string. +message BytesValue { + // The bytes value. + bytes value = 1; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/header.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/header.proto new file mode 100644 index 0000000000..2a50a1702d --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/header.proto @@ -0,0 +1,23 @@ +syntax = "proto2"; + +package common; + +message Time { + optional uint32 sec = 1; + optional uint32 nsec = 2; +} + +message Header { + // Sequence number for each message. Each module maintains its own counter for + // sequence_num, always starting from 1 on boot. + optional uint32 seq = 1; + + // Message publishing time in seconds. + optional Time stamp = 2; + + // frame id + optional string frame_id = 3; + + // Module name. + optional string module_name = 4; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/message_pad.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/message_pad.proto new file mode 100644 index 0000000000..f96fe6fa96 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/message_pad.proto @@ -0,0 +1,589 @@ +syntax = "proto3"; +package mogo.telematics.pad; + +import "geometry.proto"; + +enum ProtocolVersion +{ + Defaultver = 0; + CurrentVersion = 10; //每次修改proto文件增加1 +} + +enum MessageType +{ + MsgTypeDefault = 0; + + MsgTypePlanningDecisionState = 0x00001; //planning决策状态, 透传 + MsgTypeSweeperTaskIndexData = 0x00002; //清扫车指标数据 + MsgTypeObuWarningData = 0x00003; //obu预警事件 + + MsgTypeTrajectory = 0x10000; //局部轨迹,车前引导线 + MsgTypeTrackedObjects = 0x10001; //障碍物信息 + MsgTypeGnssInfo = 0x10002; //惯导信息 + MsgTypeVehicleState = 0x10003; //底盘信息, 透传底盘状态,pb参考底盘 + MsgTypeAutopilotState = 0x10004; //自动驾驶状态 + MsgTypeReportMessage = 0x10005; //监控事件报告 + MsgTypePerceptionTrafficLight = 0x10006; //感知红绿灯 + MsgTypePredictionObstacleTrajectory = 0x10007; //他车轨迹预测 + MsgTypePointCloud = 0x10008; //点云透传 + MsgTypePlanningObjects = 0x10009; //planning障碍物 + MsgTypeOBU = 0x1000a; //OBU + MsgTypeChassisStates = 0x1000b; //重构后的底盘状态, 透传 + MsgTypeFunctionStates = 0x1000c; //重构后的功能状态, 透传 + + MsgTypeBasicInfoReq = 0x10100; //自动驾驶设备基础信息请求 + MsgTypeBasicInfoResp = 0x10101; //自动驾驶设备基础信息应答 + MsgTypeSetAutopilotModeReq = 0x10102; //设置自动驾驶模式 + MsgTypeSetDemoModeReq = 0x10103; //设置演示模式 + MsgTypeCarConfigReq = 0x10104; //车机基础信息请求 + MsgTypeCarConfigResp = 0x10105; //车机基础信息应答 + MsgTypeRecordCause = 0x10106; //记录人工接管原因 + MsgTypeRecordData = 0x10107; //数据采集请求 + MsgTypeRecordResult = 0x10108; //数据采集结果 + MsgTypeSetAutopilotSpeedReq = 0x10109; //设置自动驾驶最大速度 + MsgTypeGlobalPathReq = 0x1010a; //自动驾驶路径请求 + MsgTypeGlobalPathResp = 0x1010b; //自动驾驶路径应答 + MsgTypeTrafficLightData = 0x1010c; //发送红绿灯数据到工控机 + MsgTypeWarn = 0x1010d; //预警数据 + MsgTypeArrivalNotification = 0x1010e; //到站提醒 + MsgTypeSystemCmdReq = 0x1010f; //系统命令请求, 比如系统重启,启用新镜像 + MsgTypeTrajectoryDownloadReq = 0x10110; //轨迹下载请求 + MsgTypeStatusQueryReq = 0x10111; //状态查询请求 + MsgTypeStatusQueryResp = 0x10112; //状态查询应答 + MsgTypeSetRainModeReq = 0x10113; //设置雨天模式 + MsgTypeRecordDataConfigReq = 0x10114; //数据采集配置查询请求 + MsgTypeRecordDataConfigResp = 0x10115; //数据采集配置查询应答 + MsgTypeOperatorCmdReq = 0x10116; //操控指令 + MsgTypeSubscribeDataReq = 0x10117; //数据订阅、取消订阅请求 + MsgTypeSpecialVehicleTaskCmd = 0x10118; //特种车辆命令 + MsgTypeSetParamReq = 0x10119; //设置参数命令 + MsgTypeTripInfoEvent = 0x1011a; //行程信息 + MsgTypeBagManagerCmd = 0x1011b; //bag管理 + MsgTypePlanningCmd = 0x1011c; //给planning的指令 +} + +message Header +{ + uint64 msgID = 1; //消息唯一id,自增 + MessageType msgType = 2; //消息类型 + double timestamp = 3; //消息发送时间, 单位:秒 + double sourceTimestamp = 4; //数据源消息发送时间, 单位:秒 +} + +// message definition for MsgTypeTrajectory +message TrajectoryPoint +{ + double longitude = 1; + double latitude = 2; + double altitude = 3; + double time = 4; //时间, 单位:秒 + double velocity = 5; //速度, m/s + double acceleration = 6; //加速度, m/s^2 + double theta = 7; //速度方向 + double kappa = 8; //曲率 + double accumulatedDis = 9; //从起点到目前的总距离 + double reversedAccumulatedDis = 10; //从当前到终点的距离 +} + +message Trajectory +{ + repeated TrajectoryPoint points = 1; +} + +// message definition for MsgTypeTrackedObjects +message SubSource +{ + uint32 source = 1; // TrackedSource=1:1-lidar 2-camera 3-radar 4-vidar 5-falcon + // TrackedSource=2:1-v2v_bsm 2-v2i_rsm 3-v2v_ssm 4-v2n_rsm 5-v2n_rsi 6-v2i_ssm + string id = 2; //HEX_string -bsm_id +} + +message TrackedSource +{ + uint32 source = 1; // 1-car 2-v2x + repeated SubSource sub_source = 2; +} + +message TrackedObject +{ + uint32 type = 1; //物体类型, 0:Background, 1:Person, 2:Bicycle, 3:Car, 4:MotorCycle, + //5:TrafficSign, 6:Bus, 7:CellPhone, 8:Truck, 9:Bottle, 10:TrafficLight, + //11:Rider, 12:TriangleRoadblock, 13:WarningTriangle, 100:Unknown, + //501:RoadWork_occupy_0501, 502:RoadWork_break_0502 + double longitude = 2; //经度 + double latitude = 3; //纬度 + double altitude = 4; //海拔 + double systemTime = 5; //系统时间 单位:秒s + double satelliteTime = 6; //gps时间 单位:秒s + uint32 uuid = 7; //车辆id + string carID = 8; //车牌id + string color = 9; //车辆颜色 + double heading = 10; //车辆朝向 + double speed = 11; //车辆速度 + uint32 drawLevel = 12; //危险等级 1 绿,2 黄,3 红 + double driverTime = 13; //驱动感知时间, abandoned + repeated TrackedSource tracked_source = 14; + repeated Location polygon = 15; + geometry.Point center = 16; +} + +message TrackedObjects +{ + repeated TrackedObject objs = 1; +} + +// message definition for MsgTypeGnssInfo +message GnssInfo +{ + double longitude = 1; //经度 + double latitude = 2; //纬度 + double altitude = 3; //海拔 + double heading = 4; //航向角 + double acceleration = 5; //加速度 + double yawRate = 6; //曲率 + double gnssSpeed = 7; //惯导车速 m/s + double vehicleSpeed = 8; //车辆车速 m/s + double satelliteTime = 9; //gps时间 单位:秒s + double systemTime = 10; //系统时间 单位:秒s +} + +// message definition for MessageType: MsgTypeVehicleState +// refer to VehicleState in vehicle_state.proto + +// message definition for MessageType: MsgTypeAutopilotState +message AutopilotState +{ + uint32 state = 1; //0: 不可用(abandoned), 1:ready, 2:自动驾驶中, 7:平行驾驶中 + uint32 camera = 2; //camera节点状态 1:开启,0:关闭 + uint32 radar = 3; //雷达节点状态 1:开启,0:关闭 + uint32 rtk = 4; //RTK节点状态 1:开启,0:关闭 + uint32 autopilotMode = 5; //自动驾驶状态 0: 非自动驾驶,1: 自动驾驶, 6:平行驾驶 + double speed = 6; //惯导车速 m/s + string reason = 7; //不可用原因(abandoned) +} + +// message definition for MessageType: MsgTypeReportMessage +// refer to mogo_report_msg.proto + +// message definition for MessageType: MsgTypePerceptionTrafficLight +// refer to traffic_light.proto + +// message definition for MessageType: MsgTypePredictionObstacleTrajectory +// refer to prediction.proto + +// message definition for MessageType: MsgTypePointCloud +// refer to mogo_point_cloud.proto + +// message definition for MessageType: MsgTypePlanningObjects +message PlanningObject +{ + uint32 uuid = 1; + uint32 type = 2; //影响自车决策的类型, 和感知的障碍物类型不是一回事 0是leading障碍物,1是避障和择机的障碍物 +} + +message PlanningObjects +{ + repeated PlanningObject objs = 1; +} + +// message definition for MessageType: MsgTypeOBU +// refer to obu.proto + + +// message definition for MsgTypeTrajectoryDownloadReq +message Line +{ + uint64 lineId = 1; //路线id,默认-1 + string trajUrl = 2; //轨迹文件下载的cos url,默认“” + string trajMd5 = 3; //轨迹文件md5,默认“” + string stopUrl = 4; //打点文件下载的cos url,默认“” + string stopMd5 = 5; //轨迹文件md5,默认“” + uint64 timestamp = 6; //上传轨迹完成时间戳(ms):用于MEC本地手动导入轨迹验证时不会被云端轨迹覆盖 + string vehicleModel = 7; //车型号(如红旗H9),默认“”,暂不加入校验逻辑、用于人工排查问题 + string trajUrl_dpqp = 8; //轨迹文件下载的cos url,默认“” + string trajMd5_dpqp = 9; //轨迹文件md5,默认“” + string stopUrl_dpqp = 10; //打点文件下载的cos url,默认“” + string stopMd5_dpqp = 11; //轨迹文件md5,默认“” + uint64 timestamp_dpqp = 12; //上传轨迹完成时间戳(ms):用于MEC本地手动导入轨迹验证时不会被云端轨迹覆盖 +} + +message TrajectoryDownloadReq +{ + Line line = 1; //路线 +} + +// message definition for MessageType: MsgTypeBasicInfoReq +message BasicInfoReq +{ +} + +// message definition for MessageType: MsgTypeBasicInfoRsp +message BasicInfoResp +{ + string sn = 1; + uint32 environment = 2; //1: 研发环境, 2:测试环境, 3:生产环境 4:演示环境 + uint32 role = 3; //客户端角色:0: 司机屏,1: 乘客屏,2: 调试屏 +} + +// message definition for MsgTypeSetAutopilotModeReq +message Location +{ + double longitude = 1; + double latitude = 2; + double altitude = 3; + double heading = 4; +} + +message RouteInfo +{ + Location startLocation = 1; + string startName = 2; + Location endLocation = 3; + string endName = 4; + repeated Location wayPoints = 5; + double speedLimit = 6; //单位: km/h + uint32 vehicleType = 7; + bool isSpeakVoice = 8; //abandoned + uint32 routeID = 9; + string routeName = 10; + Line line = 11; //路线信息 +} + +message SetAutopilotModeReq +{ + uint32 mode = 1; //1: enter autopilot mode, 0: quit autopilot mode + uint32 source = 2; //命令来源: 0: pad模拟, 1: aicloud业务 + RouteInfo routeInfo = 3; //自动驾驶路径信息 +} + +// message definition for MsgTypeSetDemoModeReq +message SetDemoModeReq +{ + uint32 enable = 1; //1: enable, 0: disable +} + +// message definition for MsgTypeCarConfigReq +message CarConfigReq +{ +} + +// message definition for MsgTypeCarConfigResp +message CarConfigResp +{ + string dockVersion = 1; + string plateNumber = 2; //车牌 + string macAddress = 3; + ProtocolVersion protocolVersion = 4; //通信协议版本 + double speedLimit = 5; //自动驾驶限速, 单位:m/s + double maxSpeedLimit = 6; //最大自动驾驶限速, 单位:m/s + double minAcceleration = 7; //最小加速度, 单位:m/s² + double maxAcceleration = 8; //最大加速度, 单位:m/s² +} + +// message definition for MsgTypeRecordCause +message RecordCause +{ + uint64 key = 1; //bag key 唯一标识 + string filename = 2; //文件路径 + string reason = 3; //接管原因 + string reasonID = 4; //接管原因id +} + +// message definition for MsgTypeRecordData +message RecordData +{ + uint32 id = 1; //采集id + uint32 duration = 2; //采集时间长 + uint32 type = 3; //采集类型, 1:badcase, 2: map; 3: rests + bool isRecord = 4; //采集指令, true: 采集, false: 停止采集 + bool sustain = 5; //是否持续采集 + uint32 bduration = 6; //前溯时长 + repeated string topics = 7; //topic列表 +} + +// message definition for MsgTypeRecordResult +// refer to RecordPanel in record_panel.proto + +// message definition for MsgTypeSetAutopilotSpeedReq +message SetAutopilotSpeedReq +{ + double speedLimit = 1; //最大车辆速度, 单位:m/s +} + +// message definition for MsgTypeGlobalPathReq +message GlobalPathReq +{ +} + +// message definition for MsgTypeGlobalPathResp +message GlobalPathResp +{ + repeated Location wayPoints = 1; +} + +// message definition for MsgTypeTrafficLightData +message TrafficLightStatus +{ + string phaseNo = 1; //相位编号 + string color = 2; //灯态: 红灯-R,绿灯-G,绿闪-FG,黄-Y,B-黑 + int32 remain = 3; //倒计时-秒 +} + +message TrafficLightDetail +{ + TrafficLightStatus left = 1; //左灯 + TrafficLightStatus mid = 2; //中间灯 + TrafficLightStatus right = 3; //右灯 +} + +message TrafficLightData +{ + string crossID = 1; //roadID + double latitude = 2; + double longitude = 3; + string heading = 4; //红绿灯方向 + string direction = 5; //路的航向角 + int32 lightId = 6; //红绿灯ID + int32 laneNo = 7; //车道号 + int32 arrowNo = 8; //当前车道对应地面要素转向 + int32 flashYellow = 9; //黄灯总时间 + TrafficLightDetail laneDetail = 10; //灯态具体信息 + uint64 timestamp = 11;//当前卫星时间, 单位: ms +} + +// message definition for MsgTypeWarn +message Warn +{ + uint32 type = 1; //16: 小心行人, 17: 前车起步, 18: 左车道偏离, 19: 右车道偏离 + //20: 保持车距/小心前车, 23:摩托车碰撞 + //40: 禁止掉头, 41: 禁止左转, 42: 禁止右转, 43: 禁止鸣喇叭, 44: 禁止通行, 45: 限速%d + string content = 2; //words describe type + uint32 level = 3; //1:low 2:high + string value = 4; //reserved +} + +// message definition for MsgTypeArrivalNotification +message ArrivalNotification +{ + uint32 carType = 1; //abandoned + Location endLocation = 2; +} + +// message definition for MsgTypeSystemCmdReq +enum SystemCmdType +{ + SYSTEMCMD_NONE = 0; + SYSTEMCMD_REBOOT = 1; +} + +message SystemCmdReq +{ + SystemCmdType cmdType = 1; // +} + +// message definition for MsgTypeStatusQueryReq +message StatusQueryReq +{ +} + +// message definition for MsgTypeStatusQueryResp +// refer to system_status_info.proto + +// message definition for MsgTypeSetRainModeReq +message SetRainModeReq +{ + uint32 enable = 1; //1: enable, 0: disable +} + +// message definition for MsgTypeRecordDataConfigReq +message RecordDataConfigReq +{ + uint32 reqType = 1; // 0: all, 1:获取当前所有topic列表, 2:配置需要预加载的topic组合 + uint32 recordType = 2; // 0:不需要修改内置类型的topic组合, 1:需要修改内置类型的topic组合 + repeated string topicsNeedToCache = 3; +} + +// message definition for MsgTypeRecordDataConfigResp +message RecordDataType +{ + uint32 id = 1; //采集类型id + string desc = 2; //采集类型描述 + repeated string topics = 3; //采集类型必须采集的topic列表 +} + +message RecordDataConfig +{ + repeated RecordDataType recordTypes = 1; + repeated string allTopics = 2; //当前所有topic列表 +} + +// message definition for MsgTypeSubscribeDataReq +message SubscribeDataReq +{ + uint32 role = 1; //客户端角色:0: 司机屏,1: 乘客屏,2: 调试屏 + uint32 reqType = 2; //1:订阅, 2:取消订阅 + repeated uint32 dataTypes = 3; //订阅/取消订阅的消息类型列表, 透传的消息类型参考配置列表,其他消息类型见MsgType +} + +// message definition for MsgTypeOperatorCmdReq +enum OperatorCmdType +{ + OPERATOR_CMD_NONE = 0; + OPERATOR_CMD_CHANGE_LANE = 1; + OPERATOR_CMD_SET_ACCELERATED_SPEED = 2; + OPERATOR_CMD_SET_HORN = 3; +} + +message OperatorCmdReq +{ + OperatorCmdType cmdType = 1; + double value = 2; //OPERATOR_CMD_CHANGE_LANE: 1: left 2: right + //OPERATOR_CMD_SET_ACCELERATED_SPEED: accelerated speed + //OPERATOR_CMD_SET_HORN: 1: honk 2: stop honking +} + +//message definition for MsgTypePlanningDecisionState +enum DrivingState +{ + NO_AUTODRIVING = 0; //不在自动驾驶状态 + LANKE_KEEP = 1; //车道保持状态 + TRAFFIC_LIGHT = 2; //红绿灯通行状态: driving_action:1 表示停止动作;driving_action:2 表示通行动作 + FOLLOW_LANE_CHANGE_LEFT = 3; //follow全局择机向左变道状态: driving_action:1 表示触发变道;driving_action:2 表示择机保持;driving_action:3 表示变道完成 + FOLLOW_LANE_CHANGE_RIGHT = 4; //follow全局择机向右变道状态: driving_action:1 表示触发变道;driving_action:2 表示择机保持;driving_action:3 表示变道完成 + AUTO_LANE_CHANGE_LEFT = 5; //主动向左变道状态: driving_action:1 表示触发变道;driving_action:2 表示执行变道;driving_action:3 表示变道取消;driving_action:4 表示变道完成 + AUTO_LANE_CHANGE_RIGHT = 6; //主动向左变道状态: driving_action:1 表示触发变道;driving_action:2 表示执行变道;driving_action:3 表示变道取消;driving_action:4 表示变道完成 + LANE_AVOID_LEFT = 7; //主动向左绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + LANE_AVOID_RIGHT = 8; //主动向右绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + START_UP = 9; //起步状态: driving_action:1 表示正常启动;driving_action:2 表示择机起步 + PULL_OVER = 10; //靠边停车状态: driving_action:1 表示正常靠边停车;driving_action:2 表示择机靠边停车 + UN_PROTECTED_INTERSECTION = 11; //路口预测响应状态: driving_action:1 表示触发了预测响应 + + AUTO_LANE_CHANGE_LEFT_V2N = 12; //V2N主动向左变道状态: driving_action:1 表示触发变道;driving_action:2 表示执行变道;driving_action:3 表示变道取消;driving_action:4 表示变道完成 + AUTO_LANE_CHANGE_RIGHT_V2N = 13; //V2N主动向右变道状态: driving_action:1 表示触发变道;driving_action:2 表示执行变道;driving_action:3 表示变道取消;driving_action:4 表示变道完成 + LANE_AVOID_LEFT_V2N = 14; //V2N主动向左绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + LANE_AVOID_RIGHT_V2N = 15; //V2N主动向右绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + WAITING_V2N = 16; //V2N正在等待变道避让施工场景/静止障碍物: driving_action:1 表示正在等待;driving_action:2 表示等待超时请求平行驾驶; + + AUTO_LANE_CHANGE_LEFT_RSI = 17; //V2N RSI主动向左变道状态: driving_action:1 表示触发变道;driving_action:2 表示执行变道;driving_action:3 表示变道取消;driving_action:4 表示变道完成 + AUTO_LANE_CHANGE_RIGHT_RSI = 18; //V2N RSI主动向右变道状态: driving_action:1 表示触发变道;driving_action:2 表示执行变道;driving_action:3 表示变道取消;driving_action:4 表示变道完成 + LANE_AVOID_LEFT_RSI = 19; //V2N RSI主动向左绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + LANE_AVOID_RIGHT_RSI = 20; //V2N RSI主动向右绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + WAITING_RSI = 21; //V2N RSI正在等待变道避让施工场景/静止障碍物: driving_action:1 表示正在等待;driving_action:2 表示等待超时请求平行驾驶; + + AUTO_LANE_CHANGE_LEFT_RSM = 22; //V2N RSM主动向左变道状态: driving_action:1 表示触发变道;driving_action:2 表示执行变道;driving_action:3 表示变道取消;driving_action:4 表示变道完成 + AUTO_LANE_CHANGE_RIGHT_RSM = 23; //V2N RSM主动向右变道状态: driving_action:1 表示触发变道;driving_action:2 表示执行变道;driving_action:3 表示变道取消;driving_action:4 表示变道完成 + LANE_AVOID_LEFT_RSM = 24; //V2N RSM主动向左绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + LANE_AVOID_RIGHT_RSM = 25; //V2N RSM主动向右绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + WAITING_RSM = 26; //V2N RSM正在等待变道避让施工场景/静止障碍物: driving_action:1 表示正在等待;driving_action:2 表示等待超时请求平行驾驶; + + AUTO_LANE_CHANGE_LEFT_RSI_TRIANGLE = 27; //V2N 三角锥主动向左变道状态: driving_action:1 表示触发变道;driving_action:2 表示执行变道;driving_action:3 表示变道取消;driving_action:4 表示变道完成 + AUTO_LANE_CHANGE_RIGHT_RSI_TRIANGLE = 28; //V2N 三角锥主动向右变道状态: driving_action:1 表示触发变道;driving_action:2 表示执行变道;driving_action:3 表示变道取消;driving_action:4 表示变道完成 + LANE_AVOID_LEFT_RSI_TRIANGLE = 29; //V2N 三角锥主动向左绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + LANE_AVOID_RIGHT_RSI_TRIANGLE = 30; //V2N 三角锥主动向右绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + WAITING_RSI_TRIANGLE = 31; //V2N 三角锥正在等待变道避让施工场景/静止障碍物: driving_action:1 表示正在等待;driving_action:2 表示等待超时请求平行驾驶 +} + +enum DrivingAction +{ + DRIVING_Action_STATE_NONE = 0; + DRIVING_ACTION_STATE_ONE = 1; + DRIVING_ACTION_STATE_TWO = 2; + DRIVING_ACTION_STATE_THREE = 3; + DRIVING_ACTION_STATE_FOUR = 4; + DRIVING_ACTION_STATE_FIVE = 5; + DRIVING_ACTION_STATE_SIX = 6; + DRIVING_ACTION_STATE_SEVEN = 7; + DRIVING_ACTION_STATE_EIGHT = 8; + DRIVING_ACTION_STATE_NINE = 9; +} + +message DrivingActionMsg +{ + DrivingState driving_state = 1; + DrivingAction driving_action = 2; +} + +enum ParkScenarioDrivingState +{ + PARK_SENARIO_NO_AUTODRIVING = 0; //不在自动驾驶状态 + PARK_SENARIO_LANKE_KEEP = 1; //车道保持状态 + PARK_SENARIO_LANE_AVOID_LEFT = 2; //主动向左绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + PARK_SENARIO_LANE_AVOID_RIGHT = 3; //主动向右绕行状态: driving_action:1 表示触发绕行;driving_action:2 表示执行绕行;driving_action:3 表示绕行取消;driving_action:4 表示绕行完成 + PARK_SENARIO_START_UP = 4; //起步状态: driving_action:1 表示正常启动;driving_action:2 表示择机起步; + PARK_SENARIO_PULL_OVER = 5; //站点停车状态: driving_action:1 表示正常站点停车;driving_action:2 表示择机站点停车; + PARK_SENARIO_FORCE_PULL_OVER_ON = 6; //响应触发靠边停车状态: driving_action:1 表示开始靠边停车;driving_action:2 表示靠边停车成功;3:靠边停车失败; + PARK_SENARIO_FORCE_PULL_OVER_OFF = 7; //不响应触发靠边停车状态: driving_action:1 表示距离前方站点100m;driving_action:2 表示距离路口100m;3: 正在变道 。。。 +} + +message ParkScenarioDrivingAction +{ + ParkScenarioDrivingState driving_state = 1; //决策场景 + DrivingAction driving_action = 2; //决策场景状态 +} + +message ParkScenarioPlanningAction +{ + ParkScenarioDrivingAction action_msg = 1; //决策场景(包含场景以及响应状态) + double destination_acc = 2; //驾驶的意图(规划期望的加速或者减速值) +} + +message PlanningActionMsg +{ + DrivingActionMsg action_msg = 1; + double destination_acc = 2; //驾驶的意图(规划期望的加速或者减速值) + + ParkScenarioPlanningAction park_scenario_action = 3; +} + +//message definition for MsgTypeSpecialVehicleTaskCmd +//refer to special_vehicle_task_cmd.proto for details + +//message definition for MsgTypeSetParamReq +message SetOneParam +{ + uint32 type = 1; // 0:default 1:绕障类功能开关(bool) 2:变道绕障的目标障碍物速度阈值(double, m/s) + string value = 2; // 转成字符串的值 +} + +message SetParamReq +{ + repeated SetOneParam reqs = 1; +} + +//message definition for MsgTypeTripInfoEvent +message TripInfoEvent +{ + uint32 type = 1; //事件类型, 1:行程开始, 2:行程结束, 3:出站, 4:进站, 5:城市占道施工预警 + string lineName = 2; //路线名 + string departureStopName = 3; //出站站点名 + string arrivalStopName = 4; //下一站到达站点名 + bool isLastStop = 5; //下一站到达站是否最终站 +} + +//message definition for MsgTypeChassisStates +//refer to chassis_states.proto for details + +//message definition for MsgTypeFunctionStates +//refer to function_states.proto for details + +//message definition for MsgTypeSweeperTaskIndexData +//refer to robo_sweeper_task_index.proto for details + +//message definition for MsgTypeObuWarningData +//refer to obu_warning_event.proto for details + +//message definition for MsgTypeBagManagerCmd +//refer to bag_manager.proto for details + +//message definition for MsgTypePlanningCmd +message PullOverCmd +{ + uint32 cmd = 1; //0: default 1: 靠边停车 2:重新起步 +} + +message PlanningCmd +{ + PullOverCmd pullOverCmd = 1; +} + + diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/mogo_point_cloud.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/mogo_point_cloud.proto new file mode 100644 index 0000000000..a55b1a0629 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/mogo_point_cloud.proto @@ -0,0 +1,17 @@ +syntax="proto2"; +package rule_segement; + +import "header.proto"; + +message MogoPointCloud +{ + optional common.Header header = 1; + optional double self_longitude = 2; + optional double self_latitude = 3; + optional double self_altitude = 4; + optional double self_roll = 5; + optional double self_pitch = 6; + optional double self_yaw = 7; + repeated int32 add_data = 8 [packed=true]; + optional double newgpstimestamp = 9; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/mogo_report_msg.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/mogo_report_msg.proto new file mode 100644 index 0000000000..e916a30383 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/mogo_report_msg.proto @@ -0,0 +1,21 @@ +syntax = "proto2"; +package mogo_msg; + +message MogoMsgTimestamp { + required fixed32 sec = 1; + required fixed32 nsec = 2; +} + +message MogoReportMessage { + required MogoMsgTimestamp timestamp = 1; //来自消息源的时间戳,转发消息时不应修改 + required string src = 2; //消息来源 + required string level = 3; //error info + optional string msg = 4; //研发自己看的信息;对标准日志来说就是日志内容 + optional string code = 5; //error日志中的错误原因,这是一个类似宏的受约束字段,用字符串的目的是便于排查问题时查看 + + repeated string result = 6; //带来的后果;例如pad无法启动驾驶,远程驾驶无法启动等;可供监控后台做错误分类;pad无法理解code时也可参考此字段 + + repeated string actions = 16; //试验性字段。消息发出者希望触发的动作,例如:触发短信报警,自动创建工单,要求pad弹框等 +} + + diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/mogo_v2x.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/mogo_v2x.proto new file mode 100644 index 0000000000..987485620f --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/mogo_v2x.proto @@ -0,0 +1,88 @@ +syntax = "proto2"; + +package mogo.v2x; + +message VerticalOffset_PB{ + oneof VerticalOffset{ + int32 offset1 = 1; + int32 offset2 = 2; + int32 offset3 = 3; + int32 offset4 = 4; + int32 offset5 = 5; + int32 offset6 = 6; + int32 elevation = 7; + } +} + +message VehicleSize_PB { + required int32 width = 1; + required int32 length = 2; + optional int32 height = 3; +} + +message AccelerationSet4Way_PB { + required int32 lon = 1; + required int32 lat = 2; + required int32 vert = 3; + required int32 yaw = 4; +} + +////////////////////////////////////////////////////////////////// +//经纬度偏差,来描述一个坐标点的相对位置。约定偏差值等于真实值减去参考值。 +//提供了 7 种尺度的描述方式 +message PositionOffsetLL_PB{ + oneof PositionOffsetLL{ + Position_LL_24B position_LL1 = 1; + Position_LL_28B position_LL2 = 2; + Position_LL_32B position_LL3 = 3; + Position_LL_36B position_LL4 = 4; + Position_LL_44B position_LL5 = 5; + Position_LL_48B position_LL6 = 6; + Position_LLmD_64b position_LatLon = 7; + } +} +message Position_LL_24B{ + // (-2048..2047) + required int64 lon = 1; + required int64 lat = 2; +} +message Position_LL_28B{ + // (-8192..8191) + required int64 lon = 1; + required int64 lat = 2; +} +message Position_LL_32B{ + // (-32768..32767) + required int64 lon = 1; + required int64 lat = 2; +} +message Position_LL_36B{ + // (-131072..131071) + required int64 lon = 1; + required int64 lat = 2; +} +message Position_LL_44B{ + // (-2097152..2097151) + required int64 lon = 1; + required int64 lat = 2; +} +message Position_LL_48B{ + // (-8388608..8388607) + required int64 lon = 1; + required int64 lat = 2; +} +message Position_LLmD_64b{ + // 定义经度数值。东经为正,西经为负。 + //分辨率为1e-7°。 + required int64 lon = 1; + required int64 lat = 2; +} +////////////////////////////////////////////////////////////////// + +message PositionOffsetLLV_PB{ + required PositionOffsetLL_PB offsetLL = 1; + + optional VerticalOffset_PB offsetV = 2; +} + + diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/obu.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/obu.proto new file mode 100644 index 0000000000..28852ca9fc --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/obu.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; +package mogo.telematics.pad; +//第三方OBU接入 + +import "header.proto"; + +enum Type{ + Default = 0; + DF_OBU = 1;//宜宾东风OBU msg格式:Json字符串 +} +message Obu +{ + common.Header header = 1; + Type type = 2;//第三方类型 目前只有东风OBU + bytes msg = 3;//OBU 数据 +} + diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/obu_warning_event.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/obu_warning_event.proto new file mode 100644 index 0000000000..a0fc6b36f8 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/obu_warning_event.proto @@ -0,0 +1,117 @@ +syntax = "proto3"; +package mogo.v2x; + +import "header.proto"; +import "mogo_v2x.proto"; + +message RsiWarning { + int32 unitMask = 1; /* 描述所属字段有效性 */ + int32 sceneType = 2; /* 预警类型,0:无效,1:限速信息,2:道路危险,3:车内标牌,4:前方拥堵 */ + PositionOffsetLLV_PB position = 3; /* 交通标志/事件位置信息 */ + int32 signSerialNum = 4; /* 交通标志类型序号,根据预警类型匹配,0:无效,参照国标《GB 5768.2-2009中“交通标志中文名称索引》表序号 */ + int32 eventSerialNum = 5; /* 交通事件类型序号,根据预警类型匹配,0:无效,参考国标《GB/T 29100-2012》中定义的事件分类代码 */ + int32 speedMaxLimit = 6; /* 建议最大车速,单位(0.02m/s) */ + int32 speedMinLimit = 7; /* 建议最小车速,单位(0.02m/s) */ + int32 eventRadius = 8; /* 交通事件触发半径,根据预警类型匹配,0:无效,单位(0.1m) */ + int32 warningLevel = 9; /* 预警等级,0:无效,1:DETECTED,2:INFORM,3:WARNING */ + int32 targetPosition = 10; /* 目标方位,参考mg_rti_target_position_t */ + int32 distance = 11; /* 预警触发时与自车之间的距离,单位(0.01m) */ +} + +//预警事件 RSI Warning event +message RsiWarningData { + int32 status = 1; /* 状态信息,0:更新,1:添加,2:删除 */ + //int32 warning_num = 2; /* 预警信息数量 */ + repeated RsiWarning warningMsg = 2; /* 预警信息集合 */ +} + +message participant{ + int32 ptcType = 1; /* 交通参与者类型,0:未知,1:机动车,2:非机动车,3:行人,4:OBU自身 */ + int32 ptcID = 2; /* 临时ID,取值范围(1..255) */ + int32 source = 3; /* 监测信息来源,0:未知,1:RSU自身,2:V2X广播,3:视频传感器,4:微波雷达,5:地磁线圈传感器,6:激光雷达传感器,7:两类或以上感知数据融合 */ + int64 secMark = 4; /* UTC时间,单位(ms) */ + int64 latitude = 5; /* 维度,单位(1e-7°) */ + int64 longitude = 6; /* 经度,单位(1e-7°) */ + int64 elevation = 7; /* 海拔,单位(0.1m) */ + int64 speed = 8; /* 速度,单位(0.02m/s) */ + int32 heading = 9; /* 航向角,单位(0.0125°) */ + AccelerationSet4Way_PB accFourAxes = 10; /* 四轴加速度 */ + VehicleSize_PB ptcSize = 11; /* 交通参与者尺寸信息 */ + int32 vehicleClass = 12; /* 车辆类型,参考《OBU软件SDK使用文档》附录A中的表1 */ + int32 targetPosition = 13; /* 目标方位,参考mg_veh_target_position_t */ +} + +message ParticipantWarningData{ + int32 unitMask = 1; /* 描述所属字段有效性 */ + int32 status = 2; /* 状态信息,0:更新,1:添加,2:删除 */ + int32 warningType = 3; /* 预警类型,0:前向碰撞预警,1:交叉路口碰撞预警,2:左转辅助预警,3:盲区预警,4:变道预警, + 5:逆向超车预警,6:紧急制动预警,7:异常车辆提醒,8:失控车辆预警,9:紧急车辆预警,10:弱势交通参与者碰撞预警 */ + int32 warningLevel = 4; /* 预警等级,0:无效,1:DETECTED,2:INFORM,3:WARNING */ + int32 warningPriority = 5; /* 预警优先级,默认为0,预留 */ +} + +message DateTime{ + int32 year = 1; /* 年份 */ + int32 month = 2; /* 月份 */ + int32 day = 3; /* 日期 */ + int32 hour = 4; /* 小时 */ + int32 minute = 5; /* 分钟 */ + int32 millisecond = 6; /* 毫秒 */ + int32 offset = 7; /* 定义与UTC时间的分钟差 */ +} + +message ParticipantWarning{ + int32 unitMask = 1; /* 描述所属字段有效性 */ + repeated ParticipantWarningData warningData = 2; + DateTime warningTime = 3; /* 预警触发时间 */ + int32 distance = 4; /* 预警触发时与自车之间的距离,单位(0.01m) */ +} + + +//RSM Warning Msg +message RsmWarningData{ + int32 status = 1; /* 状态信息,0:更新,1:添加,2:删除 */ + participant participantOfOne = 2; /* 弱势交通参与者信息 */ + ParticipantWarning warningMsg = 3; /* 弱势交通参与者预警信息 */ +} + +message SpatLight{ + int32 phaseID = 1; /* 信号灯相位ID */ + int32 maneuvers = 2; /* 允许转向关系,bit0:直行,bit1:左转,bit2:右转,bit3:掉头 */ + int32 light = 3; /* 灯色,0:不可用,1:黑色,2:红闪,3:红色,4:绿闪,5:permissive_green,6:protected_green,7:黄色,8:黄闪 */ + int32 countDown = 4; /* 灯色倒计时,单位(0.1s) */ + int32 suggestMaxSpeed = 5; /* 建议最大车速,单位(0.02m/s) */ + int32 suggestMinSpeed = 6; /* 建议最小车速,单位(0.02m/s) */ +} + +//SPAT Msg +message SpatWarningData{ + int32 status = 1; /* 状态信息,0:更新,1:添加,2:删除 */ + int32 warningType = 2; /* 预警类型信息 */ + repeated SpatLight lights = 3; /* 灯色信息集合 */ +} + +message NodeID{ + int32 region = 1;/* 定义地图中划分区域的ID号 */ + int32 id = 2; /* 定义地图节点ID */ +} + +message MapMatchData{ + int32 status = 1;/* 状态信息,0:更新,1:添加,2:删除 */ + int32 unitMask = 2;/* 描述所属字段有效性 */ + NodeID currentNodeID = 3;/* 前方节点信息 */ + NodeID upstreamNodeID = 4;/* 上游节点信息 */ + int32 matchingLaneID = 5;/* 匹配车道ID,0:无效 */ + int32 speedMaxLimit = 6;/* 建议最大车速,单位(0.02m/s) */ + int32 speedMinLimit = 7;/* 建议最小车速,单位(0.02m/s) */ +} + +message ObuWarningData{ + common.Header header = 1; + int32 msgDataType = 2; /*1:rsiEvent; 2:rsmEvent; 3:spatEvent; 4:mapMatchData*/ + RsiWarningData rsiEvent = 3; + RsmWarningData rsmEvent = 4; + SpatWarningData spatEvent = 5; + MapMatchData mapMatchData = 6; +} + diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/prediction.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/prediction.proto new file mode 100644 index 0000000000..a7bb52d0bc --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/prediction.proto @@ -0,0 +1,33 @@ +syntax = "proto2"; + +package prediction; + +// common +import "header.proto"; +import "geometry.proto"; + + +// estimated obstacle intent + +message mPredictionObject { + optional int64 m_nid =1; //target id + optional int32 m_nquality =2; //target tracking life quality + optional int32 classtype =3; //target classtype + optional int32 m_preconfidence=4; //target predciton confidence + + repeated geometry.Point prediction_trajectory = 5; //target prediction trajectory :vector : meter + repeated geometry.Point prediction_pose = 6; //targe prediciton pose vector angle:° + optional geometry.Vector3 objsize = 7; //length width height :meter + +} + +message mPredictionObjects { + optional common.Header header = 1; + optional int32 m_nnum0 =2; // all target number + optional int64 allcyclenum =3;//process cycle number + optional double m_ftime=4; //time stamp + optional double fdeltat=5; // deltatime prediciton time stamp default:0.1s + repeated mPredictionObject objs=6; //obj capcity + +} + diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/record_panel.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/record_panel.proto new file mode 100644 index 0000000000..5d556eb7a6 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/record_panel.proto @@ -0,0 +1,35 @@ +syntax = "proto2"; + +package record_cache; + +import "header.proto"; + +message RecordItem { + optional string topic = 1; //topic name of record data + optional int32 nums = 2; //quantity of this topic's data +} + +message TriggerInfo { + required bool auto_trig = 1; //trigger mode: true - auto trig when autopilot mode turn to handle | false - subscribe topic to trig + optional string trig_topic = 2; //name of topic used to trig(mode is 0 available) + optional string trig_msg = 3; //topic message(mode is 0 available) +} + +message RecordPanel { + optional common.Header header = 1; + optional int32 stat = 2; //record stat:100 - record succeed,auto stop | 101 - record succeed,handle stop | 200 - record failed + optional int64 disk_free = 3; //disk space available + optional int64 total_size = 4; //space used by bag + optional string timestamp = 5; //timestamp + optional float duration = 6; //data duration + optional TriggerInfo triggerinfo = 7; //information of trigger + optional string filename = 8; //bag's filename + repeated RecordItem records = 9; //information of each topic's record + optional string note = 10; //other message(warn,error or other message included) + optional int32 type = 11; + optional int32 id = 12; + required uint64 key = 13; + repeated string topics = 14; +} + + diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/robo_sweeper_task_index.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/robo_sweeper_task_index.proto new file mode 100644 index 0000000000..9f78494d75 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/robo_sweeper_task_index.proto @@ -0,0 +1,24 @@ +syntax = "proto3"; +package planning; + +import "header.proto"; + +message RoboSweeperTaskIndex { + common.Header header = 1; + + uint32 edge_clean_state = 2; // 贴边工作状态 0--非贴边作业 1--靠右贴边作业, 2–靠左贴边作业 + uint32 edge_clean_avoid = 3; // 清扫绕障状态 0–非绕障状态 , 1–绕障状态 + double loc_utm_x = 4; // 自车RTK定位utm坐标下 x值 + double loc_utm_y = 5; // 自车RTK定位utm坐标下 y值 + double loc_lon = 6; // 自车RTK定位经度 + double loc_lat= 7; // 自车RTK定位纬度 + double ref_edge_point_x = 8; // 投影边沿点utm坐标下 x值 + double ref_edge_point_y = 9; // 投影边沿点utm坐标下 y值 + double ref_edge_point_lon = 10; // 投影边沿点经度 + double ref_edge_point_lat = 11; // 投影边沿点纬度 + double dist_to_ref_edge_point = 12; // 自车到投影边沿点的距离 正值为在投影边沿点的右边 ,负值为在投影边沿点的右边 + + uint32 clean_mode = 13; // 清扫作业模式 1–纯扫 2--洗扫, 3--纯洗, 4--纯吸 + uint32 clean_direction = 14; // 清扫方向 1--两侧, 2--左侧, 3--右侧 + uint32 clean_intensity= 15; // 作业强度 1–标准 2--强力 +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/special_vehicle_task_cmd.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/special_vehicle_task_cmd.proto new file mode 100644 index 0000000000..b3d273c353 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/special_vehicle_task_cmd.proto @@ -0,0 +1,49 @@ +syntax = "proto2"; +package chassis; + +import "header.proto"; + +message RoboSweeperFuTianCleanCmd { + optional uint32 clean_open_requirement = 1 [default = 0]; // 清扫作业开启需求 0--no req 1--Req_clean_work, 2--No_clean_work + optional uint32 clean_mode_requirement = 2 [default = 0]; // 清扫作业模式需求 0--no req, 1--Sweeping mode, 2--Wash sweeper mode, 3--Pure wash mode, 4--Pure draw mode, 5--close clean mode + optional uint32 clean_direction_requirement = 3 [default = 0]; // 清扫方向需求指 0--no req, 1--both side work, 2--left side work, 3--right side work, 4--close side work + optional uint32 clean_intensity_requirement = 4 [default = 0]; // 作业强度需求 0--no req, 1--stand clean work, 2--strong clean work + optional uint32 dusk_close_requirement = 5 [default = 0]; // 降尘关闭需求 0--no req, 1--close dusk, 2--open dusk + optional uint32 suction_nozzlefle_open_requirement = 6 [default = 0]; // 吸嘴挡板需求 0--no req, 1--open, 2--close + optional uint32 spray_gun_open_requirement = 7 [default = 0]; // 喷雾枪需求 0--no req, 1--open, 2--close + optional uint32 sweepdisk_speed_requirement = 8 [default = 0]; // 扫盘加速需求 0--no req, 1--decelerate req, 2--accelerate req(扫盘加速需求,每点一次为加速一次,每次加速为5%pwm) +} + +message RoboSweeperFuTianTaskCmd { + optional RoboSweeperFuTianCleanCmd robo_sweeper_futian_clean_cmd = 1; // 福田清扫车清扫作业指令 + +} + +message RoboVanSkywellTaskCmd { + optional uint32 door_cmd = 1 [default = 0]; //1: 开门 2:关门 + optional uint32 horn_cmd = 2 [default = 0]; //1:开始鸣笛 2:停止鸣笛 +} + +message RoboBusJinlvM1Cmd { + optional uint32 air_conditioner_cmd = 1; //0: default, 1: 开启空调, 2: 关闭空调 + optional uint32 air_conditioner_mode_cmd = 2; //模式 0: default, 1: 自动模式, 2: 制冷模式, 3: 通风模式(仅送风,无温度) + optional uint32 air_conditioner_wind_speed_cmd = 3; //风速 0: default, 1: 1档,2: 2档,3:3档 + optional uint32 air_conditioner_temperature_cmd = 4; //温度 0: default, 16-26: 温度 + + optional uint32 header_cmd = 5; //0: default, 1: 开启暖风机, 2: 关闭暖风机 + optional uint32 header_wind_speed_cmd = 6; //风速 0: default, 1: 1档,2: 2档 + + optional uint32 main_lamp1_cmd = 7; //0: default, 1: 开启顶灯1, 2: 关闭顶灯1 + optional uint32 main_lamp2_cmd = 8; //0: default, 1: 开启顶灯2, 2: 关闭顶灯2 + optional uint32 small_lamp_cmd = 9; //0: default, 1: 开启小灯(氛围灯), 2: 关闭小灯(氛围灯) + + optional uint32 front_door_cmd = 10; //0: default, 1: 开启车门, 2: 关闭车门 +} + + +message SpecialVehicleTaskCmd { + optional common.Header header = 1; + optional RoboSweeperFuTianTaskCmd robo_sweeper_futian_task_cmd = 2; // 福田清扫车业务指令 + optional RoboVanSkywellTaskCmd robo_van_skywell_task_cmd = 3; // 开沃小巴业务指令 + optional RoboBusJinlvM1Cmd robo_bus_jinlv_m1_cmd = 4; //金旅定制车m1指令 +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/system_status_info.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/system_status_info.proto new file mode 100644 index 0000000000..0a4953f7f8 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/system_status_info.proto @@ -0,0 +1,64 @@ +syntax = "proto2"; + +package system_master; + +enum SystemState { + SYS_STARTING = 0; //系统正在启动 + SYS_RUNNING = 1; //系统运行中 + SYS_EXITING = 2; //系统正在关闭 例如重启 + SYS_FAULT = 3; //系统异常 + PILOT_READY = 4; //自动驾驶准备就绪,轨迹下载完成,可以开始自动驾驶 + AUTO_PILOT_STARTING = 5; //正在开始自动驾驶 自动驾驶命令已下发,正在启动中 + AUTO_PILOT_RUNNING = 6; //自动驾驶运行中 + REMOTE_PILOT_STARTING = 7; //平行驾驶启动中 + REMOTE_PILOT_RUNNING = 8; //平行驾驶运行中 +} + +enum HealthState { + NORMAL = 0;//正常 + FAULT = 1;//异常 + UNKNOW = 2;//未知 +} + +message HealthInfo{ + required string name = 1; //node name + required HealthState state = 2; //health state + optional string code = 3; //code 与系统事件错误码对应,如有该错误填写,没有不填 + optional string desc = 4; //补充描述,用于未知情况 +} + +message TopicInfo{ + optional string name = 1; //topic name + optional int32 hz = 2; //Topic发送的频率 +} + +message DropTopic{ + required int32 sum = 1; //dropped topic sum 有多少个Topic掉帧 + repeated TopicInfo topic = 2; +} + +message NodeInfo{ + optional string node_name = 1; //node name + optional string launch_name = 2; //launch name + optional int32 state = 3; //0:未知状态None,1:依赖未就绪Waiting,2:启动中Starting,3:运行running,4:停止stopping,5:无法启动状态,6:人为启动状态,7:人为关闭状态 +} + +message NodeFaultList{ + required int32 sum = 1; //下述node总数 + repeated NodeInfo node = 2; +} + +message StatusInfo { + required SystemState sys_state=1; // 当前系统状态 + repeated HealthInfo health_info=2; // 健康检查状态信息 + optional DropTopic topic_drop_info=3; // topic 掉频信息, 如有掉频添加没有不添加 + optional string reserved = 4; // 用于表示idle模式,'idle' 表示idle模式 'work' 表示正常工作 + // add by liyl 20220907 + optional int32 pilot_mode = 5; // 0: manaul 1: autopilot 2: RemotePilot + optional string map_version = 6; // MAP 版本信息 + optional string master_version = 7; // system_master 版本信息 + optional bool auto_pilot_ready = 8; // 自动驾驶状态就绪, 20221111增加 + optional bool remote_pilot_ready = 9; // 平行驾驶状态就绪 + optional NodeFaultList auto_pilot_unready_list = 10; //20221128 增加 + optional NodeFaultList remote_pilot_unready_list = 11; //20221128 增加 +} diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/traffic_light.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/traffic_light.proto new file mode 100644 index 0000000000..0a49cd52b1 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/traffic_light.proto @@ -0,0 +1,38 @@ +syntax = "proto2"; +package perception; + +import "header.proto"; + +enum LightType { + TYPE_DEFAULT = 0; + TYPE_VEHICLE = 1;//机动车道 + TYPE_BICYLE = 2;//自行车道 + TYPE_PEDSTRIAN = 3;//行人道 + TYPE_LANE = 5;//车道 +} + +enum LightState { + STATE_OFF = 0;//没检测到灯 + STATE_RED = 1; + STATE_YELLOW = 2; + STATE_GREEN = 3; + STATE_FLASH = 4;//闪烁 +} + +message TrafficLight { + optional int64 id = 1; + optional LightType type = 2 [default = TYPE_DEFAULT];//灯所处的车道类型 + optional LightState state = 3 [default = STATE_OFF];//灯态 + optional float duration = 4; // seconds since the last state changed +} + +//触发方式:120m以内会有信号,但远的时候可能不准,越近越准 +//straight left right u_turn 同一时间只有会有一个触发 +message TrafficLights { + optional common.Header header = 1; + + optional TrafficLight straight = 2;//直行灯 + optional TrafficLight left = 3;//左转灯 + optional TrafficLight right = 4;//右转灯 + optional TrafficLight u_turn = 5;//掉头灯 +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/vehicle_state.proto b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/vehicle_state.proto new file mode 100644 index 0000000000..de1b6f386b --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/extracted-include-protos/debug/vehicle_state.proto @@ -0,0 +1,143 @@ +syntax = "proto2"; +package chassis; + +import "header.proto"; +import "chassis.proto"; + +message SweeperFuTianCleanSystemState { + optional bool secu_rem_ctrl_sts = 1 [default = false]; // 远程控制使能信号 + optional bool secu_mot_work_sts = 2 [default = false]; // 电机启停控制状态信号 + optional bool secu_dup_tail_door_open_sts = 3 [default = false]; // 垃圾箱尾门开状态信号 + optional bool secu_dup_tail_door_close_sts = 4 [default = false]; // 垃圾箱尾门关状态信号 + optional bool secu_auto_dup_tail_tip_sts = 5 [default = false]; // 垃圾箱倾翻状态信号 + optional bool secu_dup_tail_ret_sts = 6 [default = false]; // 垃圾箱回位状态信号 + optional bool secu_work_stand_sts = 7 [default = false]; // 标准作业状态信号 + optional bool secu_work_strong_sts = 8 [default = false]; // 强力作业状态信号 + optional bool secu_suctionnozzlebaffle_sts = 9 [default = false]; // 吸嘴挡板开状态信号 + optional bool secu_dusk_close_sts = 10 [default = false]; // 降尘关闭状态信号 + optional bool secu_work_left_sts = 11 [default = false]; // 左侧作业状态信号 + optional bool secu_work_on_bothsides_sts = 12 [default = false]; // 两侧作业状态信号 + optional bool secu_work_right_sts = 13 [default = false]; // 右侧作业状态信号 + optional bool secu_work_ton_sts = 14 [default = false]; // 纯吸作业状态信号 + optional bool secu_work_spray_gun_sts = 15 [default = false]; // 喷雾喷枪作业状态信号 + optional bool secu_work_enc_des_sts = 16 [default = false]; // 箱体清淤作业状态信号 + optional bool secu_mod_wash_sweep_sts = 17 [default = false]; // 洗扫模式状态信号 + optional bool secu_mod_wash_sts = 18 [default = false]; // 纯洗模式状态信号 + optional bool secu_sweepdisk_red_sts = 19 [default = false]; // 扫盘减速开关状态信号 + optional bool secu_sweepdisk_acc_sts = 20 [default = false]; // 扫盘加速开关状态信号 + optional bool secu_arrowlight_sts = 21 [default = false]; // 箭头灯开关状态信号 + optional bool secu_floodlight_sts = 22 [default = false]; // 照明灯开关状态信号 + optional bool secu_work_cleaning_sts = 23 [default = false]; // 保洁作业状态信号 + optional bool secu_clean_music_sts = 24 [default = false]; // 音乐开关状态信号 + + optional bool secu_motor_oil_com_fail = 25 [default = false]; // 油泵电机通讯失败报警 + optional bool secu_motor_water_com_fail = 26 [default = false]; // 水泵电机通讯失败报警 + optional bool secu_motor_air_com_fail = 27 [default = false]; // 风机电机通讯失败报警 + optional bool secu_fan_fault = 28 [default = false]; // 散热风扇故障报警 + optional bool secu_chassis_com_fail = 29 [default = false]; // 底盘通讯失败报警 + optional bool secu_panel_com_fail = 30 [default = false]; // 操作面板通讯失败报警 + optional bool secu_oillevel_check = 31 [default = false]; // 液压油位低请停机检查报警信号 + optional bool secu_oilstmjam_check = 32 [default = false]; // 液压油滤堵塞请停机检查报警信号 + optional bool secu_water_valve_close = 33 [default = false]; // 出水阀门关闭不能清洗作业报警信号 + optional bool secu_clean_water_tank_low = 34 [default = false]; // 清水箱水位低不能清洗作业报警信号 + optional bool secu_sewage_water_tank_full = 35 [default = false]; // 污水箱满请停止作业报警信号 + optional bool secu_coolwatertemp_high = 36 [default = false]; // 水温过高请停机检查报警信号 + optional bool secu_coolwater_less = 37 [default = false]; // 冷却液位低报警信号 + optional bool secu_tail_gate_open = 38 [default = false]; // 尾门打开接近开关 + optional bool secu_manual_intervention_sts = 39 [default = false]; // 提示是否有人为介入 + optional bool secu_ready_finish_sts = 40 [default = false]; // 上装ready完成 + optional float secu_sweepdisk_speed = 41 [default = 0]; // 扫盘转速 +} + +message RoboTaxiState { + optional bool veh_rta_recover = 1 [default = false]; // 车辆可进入自动驾驶标志位,不可进入时一定时间内恢复可自动进入 + optional bool veh_rta_no_recover = 2 [default = false]; // 车辆可进入自动驾驶标志位,不可进入时恢复无法自动进入 +} + +message RoboBusState { + optional bool reserved = 1; // 预留 +} + +message AirConditionerState { + optional bool is_on = 1; //是否开启 + optional uint32 mode = 2; //模式, 1: 自动模式, 2: 制冷模式, 3: 通风模式(仅送风,无温度) + optional uint32 temperature = 3; //温度 + optional uint32 wind_speed = 4; //风速, 1-3: 1-3档 +} + +message HeaterState { + optional bool is_on = 1; //是否开启 + optional uint32 wind_speed = 2; //风速, 1-2: 1-2档 +} + +message DoorState { + optional bool is_on = 1; //是否开启 +} + +message LightState { + optional bool is_on = 1; //是否开启 + optional uint32 color = 2; //颜色 +} + +message RoboBusJinlvM1State { + optional AirConditionerState air_conditioner_state = 1; //空调 + optional HeaterState heater_state = 2; //暖风机 + optional DoorState front_door_state = 3; //车门 + optional LightState main_lamp1_state = 4; //顶灯1 + optional LightState main_lamp2_state = 5; //顶灯2 + optional LightState small_lamp_state = 6; //小灯(氛围灯) +} + +message VehicleState { + optional common.Header header = 1; + optional chassis.PilotMode pilot_mode = 2 [default = MODE_MANUAL]; + optional float steering = 3 [default = 0]; // steering angle in degrees + optional float speed = 4 [default = 0]; // speed in m/s + optional float accel = 5 [default = 0]; // target acceleration in m/s^2 + optional float throttle = 6 [default = 0]; // target throttle in percentage [0, 100] + optional float brake = 7 [default = 0]; // target brake in percentage [0, 100] + + optional chassis.GearPosition gear = 8 [default = GEAR_NONE]; + optional chassis.LightSwitch light = 9 [default = LIGHT_NONE]; + + //TODO: move to chassis + optional bool horn = 10 [default = false]; //鸣笛 + optional bool highbeam = 11 [default = false]; //远光灯 + optional bool lowbeam = 12 [default = false]; //近光灯 + optional bool foglight = 13 [default = false]; //雾灯 + optional bool clearance_lamps = 14 [default = false]; //示廓灯 + optional bool warn_light = 15 [default = false]; //报警灯 + optional bool parking_brake = 16 [default = false]; + + optional chassis.LongitudeDrivingMode longitude_driving_mode = 20; + optional chassis.EPSSteeringMode eps_steering_mode = 21; + optional uint32 steering_sign = 22; + + optional bool steer_inference = 23 [default = false]; //方向盘干预 + optional bool brake_inference = 24 [default = false]; //制动踏板干预 + optional bool accel_inference = 25 [default = false]; //加速踏板干预 + optional bool gear_switch_inference = 26 [default = false]; //档位切换干预 + optional bool location_missing = 27 [default = false]; //未收到定位 + optional bool trajectory_missing = 28 [default = false]; //未收到轨迹 + optional bool chassis_status_missing = 29 [default = false]; //未收到车辆底盘反馈信息 + optional bool brake_light_status = 30 [default = false]; //自驾模式下制动灯状态 + optional bool pilot_mode_condition_met = 31 [default = false]; + + optional float steeringSpd = 32 [default = 0]; // steering angle speed in degrees/s + + optional float leftFrontWheelAngle = 33 [default = 0];//左前轮角度(deg),左负右正 + optional float rightFrontWheelAngle = 34 [default = 0]; //右前轮角度(deg),左负右正 + + optional chassis.EPBWorkStatus epb = 35 [default = EPBSTATUS_NONE]; // EPB工作状态 + optional chassis.VehicleTakeOverStatus vehicletakeoverstatus = 36 [default = None_TakeOver]; // 车辆人工接管状态 + optional bool Emergency_Stop_Switch = 37 [default = false]; // 急停开关状态 + optional chassis.VehicleFaultLevel vehiclefaultlevel = 38 [default = None_Fault]; // 整车故障状态 + + optional float bms_soc = 40 [default = 0]; // 电量百分比范围 0~100 + optional float fuel_value = 41 [default = 0]; // 油车剩余油量 + + optional SweeperFuTianCleanSystemState sweeper_futian_clean_system_state = 200; // 福田清扫车上装状态信息 + optional RoboTaxiState robo_taxi_state = 201; // taxi状态 + optional RoboBusState robo_bus_state = 202; // bus状态 + optional RoboBusJinlvM1State robo_bus_jinlv_m1_state = 203; //金旅定制车m1状态 +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/buildConfig/debug/com/zhjt/mogo_core_function_devatools/BuildConfig.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/buildConfig/debug/com/zhjt/mogo_core_function_devatools/BuildConfig.java new file mode 100644 index 0000000000..3f279b4f8b --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/buildConfig/debug/com/zhjt/mogo_core_function_devatools/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.zhjt.mogo_core_function_devatools; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "com.zhjt.mogo_core_function_devatools"; + /** + * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME + */ + @Deprecated + public static final String APPLICATION_ID = "com.zhjt.mogo_core_function_devatools"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "0.0.58.10"; +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$deva.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$deva.java new file mode 100644 index 0000000000..d0a4a87e22 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$deva.java @@ -0,0 +1,19 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.zhjt.mogo_core_function_devatools.DevaToolsProvider; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. + */ +public class ARouter$$Group$$deva implements IRouteGroup { + @Override + public void loadInto(Map atlas) { + atlas.put("/deva/tools", RouteMeta.build(RouteType.PROVIDER, DevaToolsProvider.class, "/deva/tools", "deva", null, -1, -2147483648)); + } +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctiondevatools.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctiondevatools.java new file mode 100644 index 0000000000..229897d222 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctiondevatools.java @@ -0,0 +1,19 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IProviderGroup; +import com.zhjt.mogo_core_function_devatools.DevaToolsProvider; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. + */ +public class ARouter$$Providers$$mogocorefunctiondevatools implements IProviderGroup { + @Override + public void loadInto(Map providers) { + providers.put("com.mogo.eagle.core.function.api.devatools.IDevaToolsProvider", RouteMeta.build(RouteType.PROVIDER, DevaToolsProvider.class, "/deva/tools", "deva", null, -1, -2147483648)); + } +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctiondevatools.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctiondevatools.java new file mode 100644 index 0000000000..cdfc82677a --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctiondevatools.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.alibaba.android.arouter.facade.template.IRouteRoot; +import java.lang.Class; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. + */ +public class ARouter$$Root$$mogocorefunctiondevatools implements IRouteRoot { + @Override + public void loadInto(Map> routes) { + routes.put("deva", ARouter$$Group$$deva.class); + } +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb_Impl.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb_Impl.java new file mode 100644 index 0000000000..ce01290ca9 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb_Impl.java @@ -0,0 +1,176 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.db; + +import androidx.annotation.NonNull; +import androidx.room.DatabaseConfiguration; +import androidx.room.InvalidationTracker; +import androidx.room.RoomOpenHelper; +import androidx.room.RoomOpenHelper.Delegate; +import androidx.room.RoomOpenHelper.ValidationResult; +import androidx.room.migration.AutoMigrationSpec; +import androidx.room.migration.Migration; +import androidx.room.util.DBUtil; +import androidx.room.util.TableInfo; +import androidx.room.util.TableInfo.Column; +import androidx.room.util.TableInfo.ForeignKey; +import androidx.room.util.TableInfo.Index; +import androidx.sqlite.db.SupportSQLiteDatabase; +import androidx.sqlite.db.SupportSQLiteOpenHelper; +import androidx.sqlite.db.SupportSQLiteOpenHelper.Callback; +import androidx.sqlite.db.SupportSQLiteOpenHelper.Configuration; +import com.zhjt.mogo_core_function_devatools.badcase.repository.db.dao.IBadCaseRecordDao; +import com.zhjt.mogo_core_function_devatools.badcase.repository.db.dao.IBadCaseRecordDao_Impl; +import java.lang.Class; +import java.lang.Override; +import java.lang.String; +import java.lang.SuppressWarnings; +import java.util.Arrays; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +@SuppressWarnings({"unchecked", "deprecation"}) +public final class BadCaseDb_Impl extends BadCaseDb { + private volatile IBadCaseRecordDao _iBadCaseRecordDao; + + @Override + protected SupportSQLiteOpenHelper createOpenHelper(DatabaseConfiguration configuration) { + final SupportSQLiteOpenHelper.Callback _openCallback = new RoomOpenHelper(configuration, new RoomOpenHelper.Delegate(1) { + @Override + public void createAllTables(SupportSQLiteDatabase _db) { + _db.execSQL("CREATE TABLE IF NOT EXISTS `record` (`disk_free` INTEGER NOT NULL, `duration` REAL NOT NULL, `file_name` TEXT, `note` TEXT, `key` TEXT, `stat` INTEGER NOT NULL, `type` INTEGER NOT NULL, `id` INTEGER NOT NULL, `timestamp` TEXT NOT NULL, `total` INTEGER, `consumed` INTEGER NOT NULL, PRIMARY KEY(`timestamp`))"); + _db.execSQL("CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)"); + _db.execSQL("INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'b18a4ec36f03771ed46f95b414bff91b')"); + } + + @Override + public void dropAllTables(SupportSQLiteDatabase _db) { + _db.execSQL("DROP TABLE IF EXISTS `record`"); + if (mCallbacks != null) { + for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) { + mCallbacks.get(_i).onDestructiveMigration(_db); + } + } + } + + @Override + protected void onCreate(SupportSQLiteDatabase _db) { + if (mCallbacks != null) { + for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) { + mCallbacks.get(_i).onCreate(_db); + } + } + } + + @Override + public void onOpen(SupportSQLiteDatabase _db) { + mDatabase = _db; + internalInitInvalidationTracker(_db); + if (mCallbacks != null) { + for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) { + mCallbacks.get(_i).onOpen(_db); + } + } + } + + @Override + public void onPreMigrate(SupportSQLiteDatabase _db) { + DBUtil.dropFtsSyncTriggers(_db); + } + + @Override + public void onPostMigrate(SupportSQLiteDatabase _db) { + } + + @Override + protected RoomOpenHelper.ValidationResult onValidateSchema(SupportSQLiteDatabase _db) { + final HashMap _columnsRecord = new HashMap(11); + _columnsRecord.put("disk_free", new TableInfo.Column("disk_free", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsRecord.put("duration", new TableInfo.Column("duration", "REAL", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsRecord.put("file_name", new TableInfo.Column("file_name", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsRecord.put("note", new TableInfo.Column("note", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsRecord.put("key", new TableInfo.Column("key", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsRecord.put("stat", new TableInfo.Column("stat", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsRecord.put("type", new TableInfo.Column("type", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsRecord.put("id", new TableInfo.Column("id", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsRecord.put("timestamp", new TableInfo.Column("timestamp", "TEXT", true, 1, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsRecord.put("total", new TableInfo.Column("total", "INTEGER", false, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsRecord.put("consumed", new TableInfo.Column("consumed", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + final HashSet _foreignKeysRecord = new HashSet(0); + final HashSet _indicesRecord = new HashSet(0); + final TableInfo _infoRecord = new TableInfo("record", _columnsRecord, _foreignKeysRecord, _indicesRecord); + final TableInfo _existingRecord = TableInfo.read(_db, "record"); + if (! _infoRecord.equals(_existingRecord)) { + return new RoomOpenHelper.ValidationResult(false, "record(com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord).\n" + + " Expected:\n" + _infoRecord + "\n" + + " Found:\n" + _existingRecord); + } + return new RoomOpenHelper.ValidationResult(true, null); + } + }, "b18a4ec36f03771ed46f95b414bff91b", "56a6881a09666fd043231f13280fc24d"); + final SupportSQLiteOpenHelper.Configuration _sqliteConfig = SupportSQLiteOpenHelper.Configuration.builder(configuration.context) + .name(configuration.name) + .callback(_openCallback) + .build(); + final SupportSQLiteOpenHelper _helper = configuration.sqliteOpenHelperFactory.create(_sqliteConfig); + return _helper; + } + + @Override + protected InvalidationTracker createInvalidationTracker() { + final HashMap _shadowTablesMap = new HashMap(0); + HashMap> _viewTables = new HashMap>(0); + return new InvalidationTracker(this, _shadowTablesMap, _viewTables, "record"); + } + + @Override + public void clearAllTables() { + super.assertNotMainThread(); + final SupportSQLiteDatabase _db = super.getOpenHelper().getWritableDatabase(); + try { + super.beginTransaction(); + _db.execSQL("DELETE FROM `record`"); + super.setTransactionSuccessful(); + } finally { + super.endTransaction(); + _db.query("PRAGMA wal_checkpoint(FULL)").close(); + if (!_db.inTransaction()) { + _db.execSQL("VACUUM"); + } + } + } + + @Override + protected Map, List>> getRequiredTypeConverters() { + final HashMap, List>> _typeConvertersMap = new HashMap, List>>(); + _typeConvertersMap.put(IBadCaseRecordDao.class, IBadCaseRecordDao_Impl.getRequiredConverters()); + return _typeConvertersMap; + } + + @Override + public Set> getRequiredAutoMigrationSpecs() { + final HashSet> _autoMigrationSpecsSet = new HashSet>(); + return _autoMigrationSpecsSet; + } + + @Override + public List getAutoMigrations( + @NonNull Map, AutoMigrationSpec> autoMigrationSpecsMap) { + return Arrays.asList(); + } + + @Override + public IBadCaseRecordDao dao() { + if (_iBadCaseRecordDao != null) { + return _iBadCaseRecordDao; + } else { + synchronized(this) { + if(_iBadCaseRecordDao == null) { + _iBadCaseRecordDao = new IBadCaseRecordDao_Impl(this); + } + return _iBadCaseRecordDao; + } + } + } +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl.java new file mode 100644 index 0000000000..0b096a4c83 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl.java @@ -0,0 +1,229 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.db.dao; + +import android.database.Cursor; +import android.os.CancellationSignal; +import androidx.room.CoroutinesRoom; +import androidx.room.EntityDeletionOrUpdateAdapter; +import androidx.room.EntityInsertionAdapter; +import androidx.room.RoomDatabase; +import androidx.room.RoomSQLiteQuery; +import androidx.room.util.CursorUtil; +import androidx.room.util.DBUtil; +import androidx.sqlite.db.SupportSQLiteStatement; +import com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord; +import java.lang.Class; +import java.lang.Exception; +import java.lang.Integer; +import java.lang.Long; +import java.lang.Object; +import java.lang.Override; +import java.lang.String; +import java.lang.SuppressWarnings; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.concurrent.Callable; +import kotlin.coroutines.Continuation; + +@SuppressWarnings({"unchecked", "deprecation"}) +public final class IBadCaseRecordDao_Impl implements IBadCaseRecordDao { + private final RoomDatabase __db; + + private final EntityInsertionAdapter __insertionAdapterOfAutoPilotRecord; + + private final EntityDeletionOrUpdateAdapter __deletionAdapterOfAutoPilotRecord; + + public IBadCaseRecordDao_Impl(RoomDatabase __db) { + this.__db = __db; + this.__insertionAdapterOfAutoPilotRecord = new EntityInsertionAdapter(__db) { + @Override + public String createQuery() { + return "INSERT OR REPLACE INTO `record` (`disk_free`,`duration`,`file_name`,`note`,`key`,`stat`,`type`,`id`,`timestamp`,`total`,`consumed`) VALUES (?,?,?,?,?,?,?,?,?,?,?)"; + } + + @Override + public void bind(SupportSQLiteStatement stmt, AutoPilotRecord value) { + stmt.bindLong(1, value.getDiskFree()); + stmt.bindDouble(2, value.getDuration()); + if (value.getFileName() == null) { + stmt.bindNull(3); + } else { + stmt.bindString(3, value.getFileName()); + } + if (value.getNote() == null) { + stmt.bindNull(4); + } else { + stmt.bindString(4, value.getNote()); + } + if (value.getKey() == null) { + stmt.bindNull(5); + } else { + stmt.bindString(5, value.getKey()); + } + stmt.bindLong(6, value.getStat()); + stmt.bindLong(7, value.getType()); + stmt.bindLong(8, value.getId()); + if (value.getTimestamp() == null) { + stmt.bindNull(9); + } else { + stmt.bindString(9, value.getTimestamp()); + } + if (value.getTotal() == null) { + stmt.bindNull(10); + } else { + stmt.bindLong(10, value.getTotal()); + } + final int _tmp = value.getConsumed() ? 1 : 0; + stmt.bindLong(11, _tmp); + } + }; + this.__deletionAdapterOfAutoPilotRecord = new EntityDeletionOrUpdateAdapter(__db) { + @Override + public String createQuery() { + return "DELETE FROM `record` WHERE `timestamp` = ?"; + } + + @Override + public void bind(SupportSQLiteStatement stmt, AutoPilotRecord value) { + if (value.getTimestamp() == null) { + stmt.bindNull(1); + } else { + stmt.bindString(1, value.getTimestamp()); + } + } + }; + } + + @Override + public Object insertRecord(final AutoPilotRecord record, + final Continuation continuation) { + return CoroutinesRoom.execute(__db, true, new Callable() { + @Override + public Long call() throws Exception { + __db.beginTransaction(); + try { + long _result = __insertionAdapterOfAutoPilotRecord.insertAndReturnId(record); + __db.setTransactionSuccessful(); + return _result; + } finally { + __db.endTransaction(); + } + } + }, continuation); + } + + @Override + public Object deleteRecord(final AutoPilotRecord record, + final Continuation continuation) { + return CoroutinesRoom.execute(__db, true, new Callable() { + @Override + public Integer call() throws Exception { + int _total = 0; + __db.beginTransaction(); + try { + _total +=__deletionAdapterOfAutoPilotRecord.handle(record); + __db.setTransactionSuccessful(); + return _total; + } finally { + __db.endTransaction(); + } + } + }, continuation); + } + + @Override + public Object getAllUnConsumedRecords( + final Continuation> continuation) { + final String _sql = "SELECT * FROM record ORDER BY timestamp ASC"; + final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 0); + final CancellationSignal _cancellationSignal = DBUtil.createCancellationSignal(); + return CoroutinesRoom.execute(__db, false, _cancellationSignal, new Callable>() { + @Override + public List call() throws Exception { + final Cursor _cursor = DBUtil.query(__db, _statement, false, null); + try { + final int _cursorIndexOfDiskFree = CursorUtil.getColumnIndexOrThrow(_cursor, "disk_free"); + final int _cursorIndexOfDuration = CursorUtil.getColumnIndexOrThrow(_cursor, "duration"); + final int _cursorIndexOfFileName = CursorUtil.getColumnIndexOrThrow(_cursor, "file_name"); + final int _cursorIndexOfNote = CursorUtil.getColumnIndexOrThrow(_cursor, "note"); + final int _cursorIndexOfKey = CursorUtil.getColumnIndexOrThrow(_cursor, "key"); + final int _cursorIndexOfStat = CursorUtil.getColumnIndexOrThrow(_cursor, "stat"); + final int _cursorIndexOfType = CursorUtil.getColumnIndexOrThrow(_cursor, "type"); + final int _cursorIndexOfId = CursorUtil.getColumnIndexOrThrow(_cursor, "id"); + final int _cursorIndexOfTimestamp = CursorUtil.getColumnIndexOrThrow(_cursor, "timestamp"); + final int _cursorIndexOfTotal = CursorUtil.getColumnIndexOrThrow(_cursor, "total"); + final int _cursorIndexOfConsumed = CursorUtil.getColumnIndexOrThrow(_cursor, "consumed"); + final List _result = new ArrayList(_cursor.getCount()); + while(_cursor.moveToNext()) { + final AutoPilotRecord _item; + _item = new AutoPilotRecord(); + final long _tmpDiskFree; + _tmpDiskFree = _cursor.getLong(_cursorIndexOfDiskFree); + _item.setDiskFree(_tmpDiskFree); + final double _tmpDuration; + _tmpDuration = _cursor.getDouble(_cursorIndexOfDuration); + _item.setDuration(_tmpDuration); + final String _tmpFileName; + if (_cursor.isNull(_cursorIndexOfFileName)) { + _tmpFileName = null; + } else { + _tmpFileName = _cursor.getString(_cursorIndexOfFileName); + } + _item.setFileName(_tmpFileName); + final String _tmpNote; + if (_cursor.isNull(_cursorIndexOfNote)) { + _tmpNote = null; + } else { + _tmpNote = _cursor.getString(_cursorIndexOfNote); + } + _item.setNote(_tmpNote); + final String _tmpKey; + if (_cursor.isNull(_cursorIndexOfKey)) { + _tmpKey = null; + } else { + _tmpKey = _cursor.getString(_cursorIndexOfKey); + } + _item.setKey(_tmpKey); + final int _tmpStat; + _tmpStat = _cursor.getInt(_cursorIndexOfStat); + _item.setStat(_tmpStat); + final int _tmpType; + _tmpType = _cursor.getInt(_cursorIndexOfType); + _item.setType(_tmpType); + final int _tmpId; + _tmpId = _cursor.getInt(_cursorIndexOfId); + _item.setId(_tmpId); + final String _tmpTimestamp; + if (_cursor.isNull(_cursorIndexOfTimestamp)) { + _tmpTimestamp = null; + } else { + _tmpTimestamp = _cursor.getString(_cursorIndexOfTimestamp); + } + _item.setTimestamp(_tmpTimestamp); + final Long _tmpTotal; + if (_cursor.isNull(_cursorIndexOfTotal)) { + _tmpTotal = null; + } else { + _tmpTotal = _cursor.getLong(_cursorIndexOfTotal); + } + _item.setTotal(_tmpTotal); + final boolean _tmpConsumed; + final int _tmp; + _tmp = _cursor.getInt(_cursorIndexOfConsumed); + _tmpConsumed = _tmp != 0; + _item.setConsumed(_tmpConsumed); + _result.add(_item); + } + return _result; + } finally { + _cursor.close(); + _statement.release(); + } + } + }, continuation); + } + + public static List> getRequiredConverters() { + return Collections.emptyList(); + } +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl.java new file mode 100644 index 0000000000..a80c5adca5 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl.java @@ -0,0 +1,197 @@ +package com.zhjt.mogo_core_function_devatools.monitor.db; + +import android.database.Cursor; +import androidx.room.EntityInsertionAdapter; +import androidx.room.RoomDatabase; +import androidx.room.RoomSQLiteQuery; +import androidx.room.util.CursorUtil; +import androidx.room.util.DBUtil; +import androidx.sqlite.db.SupportSQLiteStatement; +import java.lang.Class; +import java.lang.Override; +import java.lang.String; +import java.lang.SuppressWarnings; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +@SuppressWarnings({"unchecked", "deprecation"}) +public final class MonitorDao_Impl implements MonitorDao { + private final RoomDatabase __db; + + private final EntityInsertionAdapter __insertionAdapterOfCpuInfo; + + private final EntityInsertionAdapter __insertionAdapterOfMemInfo; + + public MonitorDao_Impl(RoomDatabase __db) { + this.__db = __db; + this.__insertionAdapterOfCpuInfo = new EntityInsertionAdapter(__db) { + @Override + public String createQuery() { + return "INSERT OR REPLACE INTO `t_cpu` (`id`,`save_time`,`cpu_percent`) VALUES (nullif(?, 0),?,?)"; + } + + @Override + public void bind(SupportSQLiteStatement stmt, CpuInfo value) { + stmt.bindLong(1, value.getUuid()); + if (value.getSaveTime() == null) { + stmt.bindNull(2); + } else { + stmt.bindString(2, value.getSaveTime()); + } + stmt.bindDouble(3, value.getCpuPercent()); + } + }; + this.__insertionAdapterOfMemInfo = new EntityInsertionAdapter(__db) { + @Override + public String createQuery() { + return "INSERT OR REPLACE INTO `t_memory` (`id`,`save_time`,`total_pss`,`dalvik_pss`,`native_pss`,`other_pss`) VALUES (nullif(?, 0),?,?,?,?,?)"; + } + + @Override + public void bind(SupportSQLiteStatement stmt, MemInfo value) { + stmt.bindLong(1, value.getUuid()); + if (value.getSaveTime() == null) { + stmt.bindNull(2); + } else { + stmt.bindString(2, value.getSaveTime()); + } + stmt.bindDouble(3, value.getTotalPss()); + stmt.bindDouble(4, value.getDalvikPss()); + stmt.bindDouble(5, value.getNativePss()); + stmt.bindDouble(6, value.getOtherPss()); + } + }; + } + + @Override + public void saveCpu(final CpuInfo info) { + __db.assertNotSuspendingTransaction(); + __db.beginTransaction(); + try { + __insertionAdapterOfCpuInfo.insert(info); + __db.setTransactionSuccessful(); + } finally { + __db.endTransaction(); + } + } + + @Override + public void saveAllCpuInfos(final CpuInfo... cpuInfo) { + __db.assertNotSuspendingTransaction(); + __db.beginTransaction(); + try { + __insertionAdapterOfCpuInfo.insert(cpuInfo); + __db.setTransactionSuccessful(); + } finally { + __db.endTransaction(); + } + } + + @Override + public void saveMemory(final MemInfo info) { + __db.assertNotSuspendingTransaction(); + __db.beginTransaction(); + try { + __insertionAdapterOfMemInfo.insert(info); + __db.setTransactionSuccessful(); + } finally { + __db.endTransaction(); + } + } + + @Override + public void saveAllMemInfos(final MemInfo... memInfo) { + __db.assertNotSuspendingTransaction(); + __db.beginTransaction(); + try { + __insertionAdapterOfMemInfo.insert(memInfo); + __db.setTransactionSuccessful(); + } finally { + __db.endTransaction(); + } + } + + @Override + public List getAllCPUById(final long id) { + final String _sql = "SELECT * FROM t_cpu WHERE id =?"; + final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 1); + int _argIndex = 1; + _statement.bindLong(_argIndex, id); + __db.assertNotSuspendingTransaction(); + final Cursor _cursor = DBUtil.query(__db, _statement, false, null); + try { + final int _cursorIndexOfUuid = CursorUtil.getColumnIndexOrThrow(_cursor, "id"); + final int _cursorIndexOfSaveTime = CursorUtil.getColumnIndexOrThrow(_cursor, "save_time"); + final int _cursorIndexOfCpuPercent = CursorUtil.getColumnIndexOrThrow(_cursor, "cpu_percent"); + final List _result = new ArrayList(_cursor.getCount()); + while(_cursor.moveToNext()) { + final CpuInfo _item; + final long _tmpUuid; + _tmpUuid = _cursor.getLong(_cursorIndexOfUuid); + final String _tmpSaveTime; + if (_cursor.isNull(_cursorIndexOfSaveTime)) { + _tmpSaveTime = null; + } else { + _tmpSaveTime = _cursor.getString(_cursorIndexOfSaveTime); + } + final double _tmpCpuPercent; + _tmpCpuPercent = _cursor.getDouble(_cursorIndexOfCpuPercent); + _item = new CpuInfo(_tmpUuid,_tmpSaveTime,_tmpCpuPercent); + _result.add(_item); + } + return _result; + } finally { + _cursor.close(); + _statement.release(); + } + } + + @Override + public List getAllMemById(final long id) { + final String _sql = "SELECT * FROM t_memory WHERE id =?"; + final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 1); + int _argIndex = 1; + _statement.bindLong(_argIndex, id); + __db.assertNotSuspendingTransaction(); + final Cursor _cursor = DBUtil.query(__db, _statement, false, null); + try { + final int _cursorIndexOfUuid = CursorUtil.getColumnIndexOrThrow(_cursor, "id"); + final int _cursorIndexOfSaveTime = CursorUtil.getColumnIndexOrThrow(_cursor, "save_time"); + final int _cursorIndexOfTotalPss = CursorUtil.getColumnIndexOrThrow(_cursor, "total_pss"); + final int _cursorIndexOfDalvikPss = CursorUtil.getColumnIndexOrThrow(_cursor, "dalvik_pss"); + final int _cursorIndexOfNativePss = CursorUtil.getColumnIndexOrThrow(_cursor, "native_pss"); + final int _cursorIndexOfOtherPss = CursorUtil.getColumnIndexOrThrow(_cursor, "other_pss"); + final List _result = new ArrayList(_cursor.getCount()); + while(_cursor.moveToNext()) { + final MemInfo _item; + final long _tmpUuid; + _tmpUuid = _cursor.getLong(_cursorIndexOfUuid); + final String _tmpSaveTime; + if (_cursor.isNull(_cursorIndexOfSaveTime)) { + _tmpSaveTime = null; + } else { + _tmpSaveTime = _cursor.getString(_cursorIndexOfSaveTime); + } + final double _tmpTotalPss; + _tmpTotalPss = _cursor.getDouble(_cursorIndexOfTotalPss); + final double _tmpDalvikPss; + _tmpDalvikPss = _cursor.getDouble(_cursorIndexOfDalvikPss); + final double _tmpNativePss; + _tmpNativePss = _cursor.getDouble(_cursorIndexOfNativePss); + final double _tmpOtherPss; + _tmpOtherPss = _cursor.getDouble(_cursorIndexOfOtherPss); + _item = new MemInfo(_tmpUuid,_tmpSaveTime,_tmpTotalPss,_tmpDalvikPss,_tmpNativePss,_tmpOtherPss); + _result.add(_item); + } + return _result; + } finally { + _cursor.close(); + _statement.release(); + } + } + + public static List> getRequiredConverters() { + return Collections.emptyList(); + } +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb_Impl.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb_Impl.java new file mode 100644 index 0000000000..a94fa77b20 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/kapt/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb_Impl.java @@ -0,0 +1,185 @@ +package com.zhjt.mogo_core_function_devatools.monitor.db; + +import androidx.annotation.NonNull; +import androidx.room.DatabaseConfiguration; +import androidx.room.InvalidationTracker; +import androidx.room.RoomOpenHelper; +import androidx.room.RoomOpenHelper.Delegate; +import androidx.room.RoomOpenHelper.ValidationResult; +import androidx.room.migration.AutoMigrationSpec; +import androidx.room.migration.Migration; +import androidx.room.util.DBUtil; +import androidx.room.util.TableInfo; +import androidx.room.util.TableInfo.Column; +import androidx.room.util.TableInfo.ForeignKey; +import androidx.room.util.TableInfo.Index; +import androidx.sqlite.db.SupportSQLiteDatabase; +import androidx.sqlite.db.SupportSQLiteOpenHelper; +import androidx.sqlite.db.SupportSQLiteOpenHelper.Callback; +import androidx.sqlite.db.SupportSQLiteOpenHelper.Configuration; +import java.lang.Class; +import java.lang.Override; +import java.lang.String; +import java.lang.SuppressWarnings; +import java.util.Arrays; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +@SuppressWarnings({"unchecked", "deprecation"}) +public final class MonitorDb_Impl extends MonitorDb { + private volatile MonitorDao _monitorDao; + + @Override + protected SupportSQLiteOpenHelper createOpenHelper(DatabaseConfiguration configuration) { + final SupportSQLiteOpenHelper.Callback _openCallback = new RoomOpenHelper(configuration, new RoomOpenHelper.Delegate(1) { + @Override + public void createAllTables(SupportSQLiteDatabase _db) { + _db.execSQL("CREATE TABLE IF NOT EXISTS `t_cpu` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `save_time` TEXT, `cpu_percent` REAL NOT NULL)"); + _db.execSQL("CREATE TABLE IF NOT EXISTS `t_memory` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `save_time` TEXT NOT NULL, `total_pss` REAL NOT NULL, `dalvik_pss` REAL NOT NULL, `native_pss` REAL NOT NULL, `other_pss` REAL NOT NULL)"); + _db.execSQL("CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)"); + _db.execSQL("INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '5a9b09e5d73e022e24bc1b433755467e')"); + } + + @Override + public void dropAllTables(SupportSQLiteDatabase _db) { + _db.execSQL("DROP TABLE IF EXISTS `t_cpu`"); + _db.execSQL("DROP TABLE IF EXISTS `t_memory`"); + if (mCallbacks != null) { + for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) { + mCallbacks.get(_i).onDestructiveMigration(_db); + } + } + } + + @Override + protected void onCreate(SupportSQLiteDatabase _db) { + if (mCallbacks != null) { + for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) { + mCallbacks.get(_i).onCreate(_db); + } + } + } + + @Override + public void onOpen(SupportSQLiteDatabase _db) { + mDatabase = _db; + internalInitInvalidationTracker(_db); + if (mCallbacks != null) { + for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) { + mCallbacks.get(_i).onOpen(_db); + } + } + } + + @Override + public void onPreMigrate(SupportSQLiteDatabase _db) { + DBUtil.dropFtsSyncTriggers(_db); + } + + @Override + public void onPostMigrate(SupportSQLiteDatabase _db) { + } + + @Override + protected RoomOpenHelper.ValidationResult onValidateSchema(SupportSQLiteDatabase _db) { + final HashMap _columnsTCpu = new HashMap(3); + _columnsTCpu.put("id", new TableInfo.Column("id", "INTEGER", true, 1, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsTCpu.put("save_time", new TableInfo.Column("save_time", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsTCpu.put("cpu_percent", new TableInfo.Column("cpu_percent", "REAL", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + final HashSet _foreignKeysTCpu = new HashSet(0); + final HashSet _indicesTCpu = new HashSet(0); + final TableInfo _infoTCpu = new TableInfo("t_cpu", _columnsTCpu, _foreignKeysTCpu, _indicesTCpu); + final TableInfo _existingTCpu = TableInfo.read(_db, "t_cpu"); + if (! _infoTCpu.equals(_existingTCpu)) { + return new RoomOpenHelper.ValidationResult(false, "t_cpu(com.zhjt.mogo_core_function_devatools.monitor.db.CpuInfo).\n" + + " Expected:\n" + _infoTCpu + "\n" + + " Found:\n" + _existingTCpu); + } + final HashMap _columnsTMemory = new HashMap(6); + _columnsTMemory.put("id", new TableInfo.Column("id", "INTEGER", true, 1, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsTMemory.put("save_time", new TableInfo.Column("save_time", "TEXT", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsTMemory.put("total_pss", new TableInfo.Column("total_pss", "REAL", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsTMemory.put("dalvik_pss", new TableInfo.Column("dalvik_pss", "REAL", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsTMemory.put("native_pss", new TableInfo.Column("native_pss", "REAL", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsTMemory.put("other_pss", new TableInfo.Column("other_pss", "REAL", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + final HashSet _foreignKeysTMemory = new HashSet(0); + final HashSet _indicesTMemory = new HashSet(0); + final TableInfo _infoTMemory = new TableInfo("t_memory", _columnsTMemory, _foreignKeysTMemory, _indicesTMemory); + final TableInfo _existingTMemory = TableInfo.read(_db, "t_memory"); + if (! _infoTMemory.equals(_existingTMemory)) { + return new RoomOpenHelper.ValidationResult(false, "t_memory(com.zhjt.mogo_core_function_devatools.monitor.db.MemInfo).\n" + + " Expected:\n" + _infoTMemory + "\n" + + " Found:\n" + _existingTMemory); + } + return new RoomOpenHelper.ValidationResult(true, null); + } + }, "5a9b09e5d73e022e24bc1b433755467e", "9230993362df0e38f6ba1f461ea1ba9a"); + final SupportSQLiteOpenHelper.Configuration _sqliteConfig = SupportSQLiteOpenHelper.Configuration.builder(configuration.context) + .name(configuration.name) + .callback(_openCallback) + .build(); + final SupportSQLiteOpenHelper _helper = configuration.sqliteOpenHelperFactory.create(_sqliteConfig); + return _helper; + } + + @Override + protected InvalidationTracker createInvalidationTracker() { + final HashMap _shadowTablesMap = new HashMap(0); + HashMap> _viewTables = new HashMap>(0); + return new InvalidationTracker(this, _shadowTablesMap, _viewTables, "t_cpu","t_memory"); + } + + @Override + public void clearAllTables() { + super.assertNotMainThread(); + final SupportSQLiteDatabase _db = super.getOpenHelper().getWritableDatabase(); + try { + super.beginTransaction(); + _db.execSQL("DELETE FROM `t_cpu`"); + _db.execSQL("DELETE FROM `t_memory`"); + super.setTransactionSuccessful(); + } finally { + super.endTransaction(); + _db.query("PRAGMA wal_checkpoint(FULL)").close(); + if (!_db.inTransaction()) { + _db.execSQL("VACUUM"); + } + } + } + + @Override + protected Map, List>> getRequiredTypeConverters() { + final HashMap, List>> _typeConvertersMap = new HashMap, List>>(); + _typeConvertersMap.put(MonitorDao.class, MonitorDao_Impl.getRequiredConverters()); + return _typeConvertersMap; + } + + @Override + public Set> getRequiredAutoMigrationSpecs() { + final HashSet> _autoMigrationSpecsSet = new HashSet>(); + return _autoMigrationSpecsSet; + } + + @Override + public List getAutoMigrations( + @NonNull Map, AutoMigrationSpec> autoMigrationSpecsMap) { + return Arrays.asList(); + } + + @Override + public MonitorDao monitorDao() { + if (_monitorDao != null) { + return _monitorDao; + } else { + synchronized(this) { + if(_monitorDao == null) { + _monitorDao = new MonitorDao_Impl(this); + } + return _monitorDao; + } + } + } +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses.java new file mode 100644 index 0000000000..ffcb918499 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses.java @@ -0,0 +1,1431 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: badcase.proto + +package com.zhjt.mogo_core_function_devatools.badcase.generated; + +/** + * Protobuf type {@code BadCauses} + */ +public final class BadCauses extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:BadCauses) + BadCausesOrBuilder { +private static final long serialVersionUID = 0L; + // Use BadCauses.newBuilder() to construct. + private BadCauses(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private BadCauses() { + drivenData_ = java.util.Collections.emptyList(); + drivingData_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new BadCauses(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private BadCauses( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: { + + lastModified_ = input.readInt64(); + break; + } + case 18: { + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + drivenData_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + drivenData_.add( + input.readMessage(com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.parser(), extensionRegistry)); + break; + } + case 24: { + + taskId_ = input.readInt32(); + break; + } + case 34: { + if (!((mutable_bitField0_ & 0x00000002) != 0)) { + drivingData_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000002; + } + drivingData_.add( + input.readMessage(com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.parser(), extensionRegistry)); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) != 0)) { + drivenData_ = java.util.Collections.unmodifiableList(drivenData_); + } + if (((mutable_bitField0_ & 0x00000002) != 0)) { + drivingData_ = java.util.Collections.unmodifiableList(drivingData_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesProto.internal_static_BadCauses_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesProto.internal_static_BadCauses_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses.class, com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses.Builder.class); + } + + public static final int LASTMODIFIED_FIELD_NUMBER = 1; + private long lastModified_; + /** + * int64 lastModified = 1; + * @return The lastModified. + */ + @java.lang.Override + public long getLastModified() { + return lastModified_; + } + + public static final int DRIVENDATA_FIELD_NUMBER = 2; + private java.util.List drivenData_; + /** + *
+   *被动触发BadCase数据
+   * 
+ * + * repeated .Cause drivenData = 2; + */ + @java.lang.Override + public java.util.List getDrivenDataList() { + return drivenData_; + } + /** + *
+   *被动触发BadCase数据
+   * 
+ * + * repeated .Cause drivenData = 2; + */ + @java.lang.Override + public java.util.List + getDrivenDataOrBuilderList() { + return drivenData_; + } + /** + *
+   *被动触发BadCase数据
+   * 
+ * + * repeated .Cause drivenData = 2; + */ + @java.lang.Override + public int getDrivenDataCount() { + return drivenData_.size(); + } + /** + *
+   *被动触发BadCase数据
+   * 
+ * + * repeated .Cause drivenData = 2; + */ + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause getDrivenData(int index) { + return drivenData_.get(index); + } + /** + *
+   *被动触发BadCase数据
+   * 
+ * + * repeated .Cause drivenData = 2; + */ + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder getDrivenDataOrBuilder( + int index) { + return drivenData_.get(index); + } + + public static final int TASKID_FIELD_NUMBER = 3; + private int taskId_; + /** + * int32 taskId = 3; + * @return The taskId. + */ + @java.lang.Override + public int getTaskId() { + return taskId_; + } + + public static final int DRIVINGDATA_FIELD_NUMBER = 4; + private java.util.List drivingData_; + /** + *
+   *主动触发BadCase数据
+   * 
+ * + * repeated .Cause drivingData = 4; + */ + @java.lang.Override + public java.util.List getDrivingDataList() { + return drivingData_; + } + /** + *
+   *主动触发BadCase数据
+   * 
+ * + * repeated .Cause drivingData = 4; + */ + @java.lang.Override + public java.util.List + getDrivingDataOrBuilderList() { + return drivingData_; + } + /** + *
+   *主动触发BadCase数据
+   * 
+ * + * repeated .Cause drivingData = 4; + */ + @java.lang.Override + public int getDrivingDataCount() { + return drivingData_.size(); + } + /** + *
+   *主动触发BadCase数据
+   * 
+ * + * repeated .Cause drivingData = 4; + */ + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause getDrivingData(int index) { + return drivingData_.get(index); + } + /** + *
+   *主动触发BadCase数据
+   * 
+ * + * repeated .Cause drivingData = 4; + */ + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder getDrivingDataOrBuilder( + int index) { + return drivingData_.get(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (lastModified_ != 0L) { + output.writeInt64(1, lastModified_); + } + for (int i = 0; i < drivenData_.size(); i++) { + output.writeMessage(2, drivenData_.get(i)); + } + if (taskId_ != 0) { + output.writeInt32(3, taskId_); + } + for (int i = 0; i < drivingData_.size(); i++) { + output.writeMessage(4, drivingData_.get(i)); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (lastModified_ != 0L) { + size += com.google.protobuf.CodedOutputStream + .computeInt64Size(1, lastModified_); + } + for (int i = 0; i < drivenData_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, drivenData_.get(i)); + } + if (taskId_ != 0) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(3, taskId_); + } + for (int i = 0; i < drivingData_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, drivingData_.get(i)); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses)) { + return super.equals(obj); + } + com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses other = (com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses) obj; + + if (getLastModified() + != other.getLastModified()) return false; + if (!getDrivenDataList() + .equals(other.getDrivenDataList())) return false; + if (getTaskId() + != other.getTaskId()) return false; + if (!getDrivingDataList() + .equals(other.getDrivingDataList())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + LASTMODIFIED_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getLastModified()); + if (getDrivenDataCount() > 0) { + hash = (37 * hash) + DRIVENDATA_FIELD_NUMBER; + hash = (53 * hash) + getDrivenDataList().hashCode(); + } + hash = (37 * hash) + TASKID_FIELD_NUMBER; + hash = (53 * hash) + getTaskId(); + if (getDrivingDataCount() > 0) { + hash = (37 * hash) + DRIVINGDATA_FIELD_NUMBER; + hash = (53 * hash) + getDrivingDataList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code BadCauses} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:BadCauses) + com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesProto.internal_static_BadCauses_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesProto.internal_static_BadCauses_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses.class, com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses.Builder.class); + } + + // Construct using com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getDrivenDataFieldBuilder(); + getDrivingDataFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + lastModified_ = 0L; + + if (drivenDataBuilder_ == null) { + drivenData_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + drivenDataBuilder_.clear(); + } + taskId_ = 0; + + if (drivingDataBuilder_ == null) { + drivingData_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + } else { + drivingDataBuilder_.clear(); + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesProto.internal_static_BadCauses_descriptor; + } + + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses getDefaultInstanceForType() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses.getDefaultInstance(); + } + + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses build() { + com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses buildPartial() { + com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses result = new com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses(this); + int from_bitField0_ = bitField0_; + result.lastModified_ = lastModified_; + if (drivenDataBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + drivenData_ = java.util.Collections.unmodifiableList(drivenData_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.drivenData_ = drivenData_; + } else { + result.drivenData_ = drivenDataBuilder_.build(); + } + result.taskId_ = taskId_; + if (drivingDataBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0)) { + drivingData_ = java.util.Collections.unmodifiableList(drivingData_); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.drivingData_ = drivingData_; + } else { + result.drivingData_ = drivingDataBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses) { + return mergeFrom((com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses other) { + if (other == com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses.getDefaultInstance()) return this; + if (other.getLastModified() != 0L) { + setLastModified(other.getLastModified()); + } + if (drivenDataBuilder_ == null) { + if (!other.drivenData_.isEmpty()) { + if (drivenData_.isEmpty()) { + drivenData_ = other.drivenData_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureDrivenDataIsMutable(); + drivenData_.addAll(other.drivenData_); + } + onChanged(); + } + } else { + if (!other.drivenData_.isEmpty()) { + if (drivenDataBuilder_.isEmpty()) { + drivenDataBuilder_.dispose(); + drivenDataBuilder_ = null; + drivenData_ = other.drivenData_; + bitField0_ = (bitField0_ & ~0x00000001); + drivenDataBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getDrivenDataFieldBuilder() : null; + } else { + drivenDataBuilder_.addAllMessages(other.drivenData_); + } + } + } + if (other.getTaskId() != 0) { + setTaskId(other.getTaskId()); + } + if (drivingDataBuilder_ == null) { + if (!other.drivingData_.isEmpty()) { + if (drivingData_.isEmpty()) { + drivingData_ = other.drivingData_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureDrivingDataIsMutable(); + drivingData_.addAll(other.drivingData_); + } + onChanged(); + } + } else { + if (!other.drivingData_.isEmpty()) { + if (drivingDataBuilder_.isEmpty()) { + drivingDataBuilder_.dispose(); + drivingDataBuilder_ = null; + drivingData_ = other.drivingData_; + bitField0_ = (bitField0_ & ~0x00000002); + drivingDataBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getDrivingDataFieldBuilder() : null; + } else { + drivingDataBuilder_.addAllMessages(other.drivingData_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private long lastModified_ ; + /** + * int64 lastModified = 1; + * @return The lastModified. + */ + @java.lang.Override + public long getLastModified() { + return lastModified_; + } + /** + * int64 lastModified = 1; + * @param value The lastModified to set. + * @return This builder for chaining. + */ + public Builder setLastModified(long value) { + + lastModified_ = value; + onChanged(); + return this; + } + /** + * int64 lastModified = 1; + * @return This builder for chaining. + */ + public Builder clearLastModified() { + + lastModified_ = 0L; + onChanged(); + return this; + } + + private java.util.List drivenData_ = + java.util.Collections.emptyList(); + private void ensureDrivenDataIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + drivenData_ = new java.util.ArrayList(drivenData_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder, com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder> drivenDataBuilder_; + + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public java.util.List getDrivenDataList() { + if (drivenDataBuilder_ == null) { + return java.util.Collections.unmodifiableList(drivenData_); + } else { + return drivenDataBuilder_.getMessageList(); + } + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public int getDrivenDataCount() { + if (drivenDataBuilder_ == null) { + return drivenData_.size(); + } else { + return drivenDataBuilder_.getCount(); + } + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause getDrivenData(int index) { + if (drivenDataBuilder_ == null) { + return drivenData_.get(index); + } else { + return drivenDataBuilder_.getMessage(index); + } + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public Builder setDrivenData( + int index, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause value) { + if (drivenDataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDrivenDataIsMutable(); + drivenData_.set(index, value); + onChanged(); + } else { + drivenDataBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public Builder setDrivenData( + int index, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder builderForValue) { + if (drivenDataBuilder_ == null) { + ensureDrivenDataIsMutable(); + drivenData_.set(index, builderForValue.build()); + onChanged(); + } else { + drivenDataBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public Builder addDrivenData(com.zhjt.mogo_core_function_devatools.badcase.generated.Cause value) { + if (drivenDataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDrivenDataIsMutable(); + drivenData_.add(value); + onChanged(); + } else { + drivenDataBuilder_.addMessage(value); + } + return this; + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public Builder addDrivenData( + int index, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause value) { + if (drivenDataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDrivenDataIsMutable(); + drivenData_.add(index, value); + onChanged(); + } else { + drivenDataBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public Builder addDrivenData( + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder builderForValue) { + if (drivenDataBuilder_ == null) { + ensureDrivenDataIsMutable(); + drivenData_.add(builderForValue.build()); + onChanged(); + } else { + drivenDataBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public Builder addDrivenData( + int index, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder builderForValue) { + if (drivenDataBuilder_ == null) { + ensureDrivenDataIsMutable(); + drivenData_.add(index, builderForValue.build()); + onChanged(); + } else { + drivenDataBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public Builder addAllDrivenData( + java.lang.Iterable values) { + if (drivenDataBuilder_ == null) { + ensureDrivenDataIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, drivenData_); + onChanged(); + } else { + drivenDataBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public Builder clearDrivenData() { + if (drivenDataBuilder_ == null) { + drivenData_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + drivenDataBuilder_.clear(); + } + return this; + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public Builder removeDrivenData(int index) { + if (drivenDataBuilder_ == null) { + ensureDrivenDataIsMutable(); + drivenData_.remove(index); + onChanged(); + } else { + drivenDataBuilder_.remove(index); + } + return this; + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder getDrivenDataBuilder( + int index) { + return getDrivenDataFieldBuilder().getBuilder(index); + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder getDrivenDataOrBuilder( + int index) { + if (drivenDataBuilder_ == null) { + return drivenData_.get(index); } else { + return drivenDataBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public java.util.List + getDrivenDataOrBuilderList() { + if (drivenDataBuilder_ != null) { + return drivenDataBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(drivenData_); + } + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder addDrivenDataBuilder() { + return getDrivenDataFieldBuilder().addBuilder( + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.getDefaultInstance()); + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder addDrivenDataBuilder( + int index) { + return getDrivenDataFieldBuilder().addBuilder( + index, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.getDefaultInstance()); + } + /** + *
+     *被动触发BadCase数据
+     * 
+ * + * repeated .Cause drivenData = 2; + */ + public java.util.List + getDrivenDataBuilderList() { + return getDrivenDataFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder, com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder> + getDrivenDataFieldBuilder() { + if (drivenDataBuilder_ == null) { + drivenDataBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder, com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder>( + drivenData_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + drivenData_ = null; + } + return drivenDataBuilder_; + } + + private int taskId_ ; + /** + * int32 taskId = 3; + * @return The taskId. + */ + @java.lang.Override + public int getTaskId() { + return taskId_; + } + /** + * int32 taskId = 3; + * @param value The taskId to set. + * @return This builder for chaining. + */ + public Builder setTaskId(int value) { + + taskId_ = value; + onChanged(); + return this; + } + /** + * int32 taskId = 3; + * @return This builder for chaining. + */ + public Builder clearTaskId() { + + taskId_ = 0; + onChanged(); + return this; + } + + private java.util.List drivingData_ = + java.util.Collections.emptyList(); + private void ensureDrivingDataIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + drivingData_ = new java.util.ArrayList(drivingData_); + bitField0_ |= 0x00000002; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder, com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder> drivingDataBuilder_; + + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public java.util.List getDrivingDataList() { + if (drivingDataBuilder_ == null) { + return java.util.Collections.unmodifiableList(drivingData_); + } else { + return drivingDataBuilder_.getMessageList(); + } + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public int getDrivingDataCount() { + if (drivingDataBuilder_ == null) { + return drivingData_.size(); + } else { + return drivingDataBuilder_.getCount(); + } + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause getDrivingData(int index) { + if (drivingDataBuilder_ == null) { + return drivingData_.get(index); + } else { + return drivingDataBuilder_.getMessage(index); + } + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public Builder setDrivingData( + int index, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause value) { + if (drivingDataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDrivingDataIsMutable(); + drivingData_.set(index, value); + onChanged(); + } else { + drivingDataBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public Builder setDrivingData( + int index, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder builderForValue) { + if (drivingDataBuilder_ == null) { + ensureDrivingDataIsMutable(); + drivingData_.set(index, builderForValue.build()); + onChanged(); + } else { + drivingDataBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public Builder addDrivingData(com.zhjt.mogo_core_function_devatools.badcase.generated.Cause value) { + if (drivingDataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDrivingDataIsMutable(); + drivingData_.add(value); + onChanged(); + } else { + drivingDataBuilder_.addMessage(value); + } + return this; + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public Builder addDrivingData( + int index, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause value) { + if (drivingDataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDrivingDataIsMutable(); + drivingData_.add(index, value); + onChanged(); + } else { + drivingDataBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public Builder addDrivingData( + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder builderForValue) { + if (drivingDataBuilder_ == null) { + ensureDrivingDataIsMutable(); + drivingData_.add(builderForValue.build()); + onChanged(); + } else { + drivingDataBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public Builder addDrivingData( + int index, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder builderForValue) { + if (drivingDataBuilder_ == null) { + ensureDrivingDataIsMutable(); + drivingData_.add(index, builderForValue.build()); + onChanged(); + } else { + drivingDataBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public Builder addAllDrivingData( + java.lang.Iterable values) { + if (drivingDataBuilder_ == null) { + ensureDrivingDataIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, drivingData_); + onChanged(); + } else { + drivingDataBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public Builder clearDrivingData() { + if (drivingDataBuilder_ == null) { + drivingData_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + } else { + drivingDataBuilder_.clear(); + } + return this; + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public Builder removeDrivingData(int index) { + if (drivingDataBuilder_ == null) { + ensureDrivingDataIsMutable(); + drivingData_.remove(index); + onChanged(); + } else { + drivingDataBuilder_.remove(index); + } + return this; + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder getDrivingDataBuilder( + int index) { + return getDrivingDataFieldBuilder().getBuilder(index); + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder getDrivingDataOrBuilder( + int index) { + if (drivingDataBuilder_ == null) { + return drivingData_.get(index); } else { + return drivingDataBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public java.util.List + getDrivingDataOrBuilderList() { + if (drivingDataBuilder_ != null) { + return drivingDataBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(drivingData_); + } + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder addDrivingDataBuilder() { + return getDrivingDataFieldBuilder().addBuilder( + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.getDefaultInstance()); + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder addDrivingDataBuilder( + int index) { + return getDrivingDataFieldBuilder().addBuilder( + index, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.getDefaultInstance()); + } + /** + *
+     *主动触发BadCase数据
+     * 
+ * + * repeated .Cause drivingData = 4; + */ + public java.util.List + getDrivingDataBuilderList() { + return getDrivingDataFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder, com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder> + getDrivingDataFieldBuilder() { + if (drivingDataBuilder_ == null) { + drivingDataBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder, com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder>( + drivingData_, + ((bitField0_ & 0x00000002) != 0), + getParentForChildren(), + isClean()); + drivingData_ = null; + } + return drivingDataBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:BadCauses) + } + + // @@protoc_insertion_point(class_scope:BadCauses) + private static final com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses(); + } + + public static com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BadCauses parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new BadCauses(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.BadCauses getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesOrBuilder.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesOrBuilder.java new file mode 100644 index 0000000000..1bc1eb1407 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesOrBuilder.java @@ -0,0 +1,109 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: badcase.proto + +package com.zhjt.mogo_core_function_devatools.badcase.generated; + +public interface BadCausesOrBuilder extends + // @@protoc_insertion_point(interface_extends:BadCauses) + com.google.protobuf.MessageOrBuilder { + + /** + * int64 lastModified = 1; + * @return The lastModified. + */ + long getLastModified(); + + /** + *
+   *被动触发BadCase数据
+   * 
+ * + * repeated .Cause drivenData = 2; + */ + java.util.List + getDrivenDataList(); + /** + *
+   *被动触发BadCase数据
+   * 
+ * + * repeated .Cause drivenData = 2; + */ + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause getDrivenData(int index); + /** + *
+   *被动触发BadCase数据
+   * 
+ * + * repeated .Cause drivenData = 2; + */ + int getDrivenDataCount(); + /** + *
+   *被动触发BadCase数据
+   * 
+ * + * repeated .Cause drivenData = 2; + */ + java.util.List + getDrivenDataOrBuilderList(); + /** + *
+   *被动触发BadCase数据
+   * 
+ * + * repeated .Cause drivenData = 2; + */ + com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder getDrivenDataOrBuilder( + int index); + + /** + * int32 taskId = 3; + * @return The taskId. + */ + int getTaskId(); + + /** + *
+   *主动触发BadCase数据
+   * 
+ * + * repeated .Cause drivingData = 4; + */ + java.util.List + getDrivingDataList(); + /** + *
+   *主动触发BadCase数据
+   * 
+ * + * repeated .Cause drivingData = 4; + */ + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause getDrivingData(int index); + /** + *
+   *主动触发BadCase数据
+   * 
+ * + * repeated .Cause drivingData = 4; + */ + int getDrivingDataCount(); + /** + *
+   *主动触发BadCase数据
+   * 
+ * + * repeated .Cause drivingData = 4; + */ + java.util.List + getDrivingDataOrBuilderList(); + /** + *
+   *主动触发BadCase数据
+   * 
+ * + * repeated .Cause drivingData = 4; + */ + com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder getDrivingDataOrBuilder( + int index); +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesProto.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesProto.java new file mode 100644 index 0000000000..3b21857109 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesProto.java @@ -0,0 +1,63 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: badcase.proto + +package com.zhjt.mogo_core_function_devatools.badcase.generated; + +public final class BadCausesProto { + private BadCausesProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_BadCauses_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_BadCauses_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_Cause_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_Cause_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\n\rbadcase.proto\"j\n\tBadCauses\022\024\n\014lastModi" + + "fied\030\001 \001(\003\022\032\n\ndrivenData\030\002 \003(\0132\006.Cause\022\016" + + "\n\006taskId\030\003 \001(\005\022\033\n\013drivingData\030\004 \003(\0132\006.Ca" + + "use\"4\n\005Cause\022\n\n\002id\030\001 \001(\t\022\016\n\006reason\030\002 \001(\t" + + "\022\017\n\007channel\030\003 \001(\tBK\n7com.zhjt.mogo_core_" + + "function_devatools.badcase.generatedB\016Ba" + + "dCausesProtoP\001b\006proto3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + }); + internal_static_BadCauses_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_BadCauses_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_BadCauses_descriptor, + new java.lang.String[] { "LastModified", "DrivenData", "TaskId", "DrivingData", }); + internal_static_Cause_descriptor = + getDescriptor().getMessageTypes().get(1); + internal_static_Cause_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_Cause_descriptor, + new java.lang.String[] { "Id", "Reason", "Channel", }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause.java new file mode 100644 index 0000000000..3b7039a492 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause.java @@ -0,0 +1,833 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: badcase.proto + +package com.zhjt.mogo_core_function_devatools.badcase.generated; + +/** + * Protobuf type {@code Cause} + */ +public final class Cause extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:Cause) + CauseOrBuilder { +private static final long serialVersionUID = 0L; + // Use Cause.newBuilder() to construct. + private Cause(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private Cause() { + id_ = ""; + reason_ = ""; + channel_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new Cause(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private Cause( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + + id_ = s; + break; + } + case 18: { + java.lang.String s = input.readStringRequireUtf8(); + + reason_ = s; + break; + } + case 26: { + java.lang.String s = input.readStringRequireUtf8(); + + channel_ = s; + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesProto.internal_static_Cause_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesProto.internal_static_Cause_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.class, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder.class); + } + + public static final int ID_FIELD_NUMBER = 1; + private volatile java.lang.Object id_; + /** + * string id = 1; + * @return The id. + */ + @java.lang.Override + public java.lang.String getId() { + java.lang.Object ref = id_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + id_ = s; + return s; + } + } + /** + * string id = 1; + * @return The bytes for id. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getIdBytes() { + java.lang.Object ref = id_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + id_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int REASON_FIELD_NUMBER = 2; + private volatile java.lang.Object reason_; + /** + * string reason = 2; + * @return The reason. + */ + @java.lang.Override + public java.lang.String getReason() { + java.lang.Object ref = reason_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + reason_ = s; + return s; + } + } + /** + * string reason = 2; + * @return The bytes for reason. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getReasonBytes() { + java.lang.Object ref = reason_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + reason_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int CHANNEL_FIELD_NUMBER = 3; + private volatile java.lang.Object channel_; + /** + * string channel = 3; + * @return The channel. + */ + @java.lang.Override + public java.lang.String getChannel() { + java.lang.Object ref = channel_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + channel_ = s; + return s; + } + } + /** + * string channel = 3; + * @return The bytes for channel. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getChannelBytes() { + java.lang.Object ref = channel_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + channel_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!getIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, id_); + } + if (!getReasonBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, reason_); + } + if (!getChannelBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, channel_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, id_); + } + if (!getReasonBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, reason_); + } + if (!getChannelBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, channel_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.zhjt.mogo_core_function_devatools.badcase.generated.Cause)) { + return super.equals(obj); + } + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause other = (com.zhjt.mogo_core_function_devatools.badcase.generated.Cause) obj; + + if (!getId() + .equals(other.getId())) return false; + if (!getReason() + .equals(other.getReason())) return false; + if (!getChannel() + .equals(other.getChannel())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + ID_FIELD_NUMBER; + hash = (53 * hash) + getId().hashCode(); + hash = (37 * hash) + REASON_FIELD_NUMBER; + hash = (53 * hash) + getReason().hashCode(); + hash = (37 * hash) + CHANNEL_FIELD_NUMBER; + hash = (53 * hash) + getChannel().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.zhjt.mogo_core_function_devatools.badcase.generated.Cause prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code Cause} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:Cause) + com.zhjt.mogo_core_function_devatools.badcase.generated.CauseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesProto.internal_static_Cause_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesProto.internal_static_Cause_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.class, com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.Builder.class); + } + + // Construct using com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + id_ = ""; + + reason_ = ""; + + channel_ = ""; + + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.BadCausesProto.internal_static_Cause_descriptor; + } + + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause getDefaultInstanceForType() { + return com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.getDefaultInstance(); + } + + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause build() { + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause buildPartial() { + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause result = new com.zhjt.mogo_core_function_devatools.badcase.generated.Cause(this); + result.id_ = id_; + result.reason_ = reason_; + result.channel_ = channel_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.zhjt.mogo_core_function_devatools.badcase.generated.Cause) { + return mergeFrom((com.zhjt.mogo_core_function_devatools.badcase.generated.Cause)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.zhjt.mogo_core_function_devatools.badcase.generated.Cause other) { + if (other == com.zhjt.mogo_core_function_devatools.badcase.generated.Cause.getDefaultInstance()) return this; + if (!other.getId().isEmpty()) { + id_ = other.id_; + onChanged(); + } + if (!other.getReason().isEmpty()) { + reason_ = other.reason_; + onChanged(); + } + if (!other.getChannel().isEmpty()) { + channel_ = other.channel_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.zhjt.mogo_core_function_devatools.badcase.generated.Cause parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.zhjt.mogo_core_function_devatools.badcase.generated.Cause) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private java.lang.Object id_ = ""; + /** + * string id = 1; + * @return The id. + */ + public java.lang.String getId() { + java.lang.Object ref = id_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + id_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * string id = 1; + * @return The bytes for id. + */ + public com.google.protobuf.ByteString + getIdBytes() { + java.lang.Object ref = id_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + id_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * string id = 1; + * @param value The id to set. + * @return This builder for chaining. + */ + public Builder setId( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + id_ = value; + onChanged(); + return this; + } + /** + * string id = 1; + * @return This builder for chaining. + */ + public Builder clearId() { + + id_ = getDefaultInstance().getId(); + onChanged(); + return this; + } + /** + * string id = 1; + * @param value The bytes for id to set. + * @return This builder for chaining. + */ + public Builder setIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + id_ = value; + onChanged(); + return this; + } + + private java.lang.Object reason_ = ""; + /** + * string reason = 2; + * @return The reason. + */ + public java.lang.String getReason() { + java.lang.Object ref = reason_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + reason_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * string reason = 2; + * @return The bytes for reason. + */ + public com.google.protobuf.ByteString + getReasonBytes() { + java.lang.Object ref = reason_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + reason_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * string reason = 2; + * @param value The reason to set. + * @return This builder for chaining. + */ + public Builder setReason( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + reason_ = value; + onChanged(); + return this; + } + /** + * string reason = 2; + * @return This builder for chaining. + */ + public Builder clearReason() { + + reason_ = getDefaultInstance().getReason(); + onChanged(); + return this; + } + /** + * string reason = 2; + * @param value The bytes for reason to set. + * @return This builder for chaining. + */ + public Builder setReasonBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + reason_ = value; + onChanged(); + return this; + } + + private java.lang.Object channel_ = ""; + /** + * string channel = 3; + * @return The channel. + */ + public java.lang.String getChannel() { + java.lang.Object ref = channel_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + channel_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * string channel = 3; + * @return The bytes for channel. + */ + public com.google.protobuf.ByteString + getChannelBytes() { + java.lang.Object ref = channel_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + channel_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * string channel = 3; + * @param value The channel to set. + * @return This builder for chaining. + */ + public Builder setChannel( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + channel_ = value; + onChanged(); + return this; + } + /** + * string channel = 3; + * @return This builder for chaining. + */ + public Builder clearChannel() { + + channel_ = getDefaultInstance().getChannel(); + onChanged(); + return this; + } + /** + * string channel = 3; + * @param value The bytes for channel to set. + * @return This builder for chaining. + */ + public Builder setChannelBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + channel_ = value; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:Cause) + } + + // @@protoc_insertion_point(class_scope:Cause) + private static final com.zhjt.mogo_core_function_devatools.badcase.generated.Cause DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.zhjt.mogo_core_function_devatools.badcase.generated.Cause(); + } + + public static com.zhjt.mogo_core_function_devatools.badcase.generated.Cause getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public Cause parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new Cause(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.zhjt.mogo_core_function_devatools.badcase.generated.Cause getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/CauseOrBuilder.java b/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/CauseOrBuilder.java new file mode 100644 index 0000000000..2b4f86a8ed --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/generated/source/proto/debug/java/com/zhjt/mogo_core_function_devatools/badcase/generated/CauseOrBuilder.java @@ -0,0 +1,45 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: badcase.proto + +package com.zhjt.mogo_core_function_devatools.badcase.generated; + +public interface CauseOrBuilder extends + // @@protoc_insertion_point(interface_extends:Cause) + com.google.protobuf.MessageOrBuilder { + + /** + * string id = 1; + * @return The id. + */ + java.lang.String getId(); + /** + * string id = 1; + * @return The bytes for id. + */ + com.google.protobuf.ByteString + getIdBytes(); + + /** + * string reason = 2; + * @return The reason. + */ + java.lang.String getReason(); + /** + * string reason = 2; + * @return The bytes for reason. + */ + com.google.protobuf.ByteString + getReasonBytes(); + + /** + * string channel = 3; + * @return The channel. + */ + java.lang.String getChannel(); + /** + * string channel = 3; + * @return The bytes for channel. + */ + com.google.protobuf.ByteString + getChannelBytes(); +} diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000000..5f06c269fc --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/core/function-impl/mogo-core-function-devatools/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000000..c5949885fd --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"0.0.58.10","enabled":true,"outputFile":"mogo-core-function-devatools-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.zhjt.mogo_core_function_devatools","split":""}}] \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/core/function-impl/mogo-core-function-devatools/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/compile_library_classes/debug/classes.jar b/core/function-impl/mogo-core-function-devatools/build/intermediates/compile_library_classes/debug/classes.jar new file mode 100644 index 0000000000..efc1b4f360 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/compile_library_classes/debug/classes.jar differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/core/function-impl/mogo-core-function-devatools/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000..5295b6c4c0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000..3518b967b0 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/mergeDebugShaders/merger.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000..9aa6a9ec29 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugAssets/merger.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000000..d4d9e95df3 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000000..2e8688ba45 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,63 @@ +#Wed Jan 11 22:51:40 CST 2023 +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_bad_case_normal.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_normal.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/template_list_bg.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/template_list_bg.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/layout_status_bar.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_status_bar.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/bad_case_search_bg.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_search_bg.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_can_disable.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_can_disable.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_rtk_good.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_good.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_audio_bg.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_audio_bg.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_bad_case_select.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_select.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_trace_unkown.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_trace_unkown.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_track_enable.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_track_enable.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/dialog_case_topic_list.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/dialog_case_topic_list.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_rtk_error.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_error.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_expand.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_expand.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_num_bg.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_num_bg.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_route_enable.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_route_enable.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_slam_good.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_slam_good.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/ai_collect_title_bg.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/ai_collect_title_bg.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_ap_badcase_default.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ap_badcase_default.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_ipc_enable.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_ipc_enable.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/rv_scroll_bar_track.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/rv_scroll_bar_track.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/badcase_radio_button_style.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/badcase_radio_button_style.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_rtk_inaccurate.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_inaccurate.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_bad_case_audio_select.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_audio_select.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/badcase_record_edit_bg.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/badcase_record_edit_bg.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/item_case_list.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_case_list.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/case_list_select.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_select.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_bad_case_delect.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_delect.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_gps_disable.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_gps_disable.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/case_list_selector.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_selector.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_gps_enable.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_gps_enable.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/layout_badcase_config.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_badcase_config.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_can_enable.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_can_enable.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_ai_select.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ai_select.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_bad_case_search.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_search.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/case_list_normal.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_normal.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_ap_badcase_check.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ap_badcase_check.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_ipc_disable.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_ipc_disable.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_un_fold.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_un_fold.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_audio.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_audio.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/item_topic_list.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_topic_list.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_rtk_not_credible.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_not_credible.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_net_enable.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_net_enable.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_net_disable.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_net_disable.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/dialog_case_list.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/dialog_case_list.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/flex_divider.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/flex_divider.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/bad_case_selector.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_selector.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/view_ai_data_collect.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_ai_data_collect.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/ai_collect_selector.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/ai_collect_selector.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/shape_size_check_false.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/shape_size_check_false.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/view_passive_bad_case.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_passive_bad_case.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/item_record_template.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_record_template.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/bad_case_dialog_bg.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_dialog_bg.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/layout_status_bar_item.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_status_bar_item.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/shape_size_check_true.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/shape_size_check_true.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_dev_status_rtk_unknow.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_unknow.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_cancel_bg.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_cancel_bg.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/rv_scroll_bar_thumb.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/rv_scroll_bar_thumb.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_ai_normal.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ai_normal.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/save_button_bg.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/save_button_bg.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable/report_button_bg.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/report_button_bg.xml +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/drawable-xhdpi/icon_bad_case_audio_normal.png=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_audio_normal.png +/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/res/layout/view_initiative_bad_case.xml=/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_initiative_bad_case.xml diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000000..f0402050c9 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,20 @@ + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugResources/merger.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000000..cac57b4622 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,13 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$deva.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$deva.class new file mode 100644 index 0000000000..aa0ce3ff49 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$deva.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctiondevatools.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctiondevatools.class new file mode 100644 index 0000000000..dbaaecc8e4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctiondevatools.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctiondevatools.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctiondevatools.class new file mode 100644 index 0000000000..aaa026f2ca Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctiondevatools.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/BuildConfig.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/BuildConfig.class new file mode 100644 index 0000000000..e098f9f336 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/BuildConfig.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/biz/CaseListDialog.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/biz/CaseListDialog.class new file mode 100644 index 0000000000..916481ac98 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/biz/CaseListDialog.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/biz/CaseTopicListDialog$1.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/biz/CaseTopicListDialog$1.class new file mode 100644 index 0000000000..155a79ff22 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/biz/CaseTopicListDialog$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/biz/CaseTopicListDialog.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/biz/CaseTopicListDialog.class new file mode 100644 index 0000000000..c80e1d4b5f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/biz/CaseTopicListDialog.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses$1.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses$1.class new file mode 100644 index 0000000000..3112489b85 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses$Builder.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses$Builder.class new file mode 100644 index 0000000000..f1893fc5a6 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses$Builder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses.class new file mode 100644 index 0000000000..a9f61ef625 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesOrBuilder.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesOrBuilder.class new file mode 100644 index 0000000000..7f78b55e8a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesOrBuilder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesProto.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesProto.class new file mode 100644 index 0000000000..35afac2edc Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/BadCausesProto.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause$1.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause$1.class new file mode 100644 index 0000000000..b1b756c596 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause$Builder.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause$Builder.class new file mode 100644 index 0000000000..d057593c4a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause$Builder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause.class new file mode 100644 index 0000000000..5c3b6b4408 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/Cause.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/CauseOrBuilder.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/CauseOrBuilder.class new file mode 100644 index 0000000000..33e6655bb2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/generated/CauseOrBuilder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordConfig$RecordFormat.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordConfig$RecordFormat.class new file mode 100644 index 0000000000..c809c8e8ea Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordConfig$RecordFormat.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordConfig.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordConfig.class new file mode 100644 index 0000000000..49c9236669 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordConfig.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$1.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$1.class new file mode 100644 index 0000000000..040040deef Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$2.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$2.class new file mode 100644 index 0000000000..e919d4a1a4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$AudioRecordThread.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$AudioRecordThread.class new file mode 100644 index 0000000000..83cbccd0d0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$AudioRecordThread.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$RecordState.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$RecordState.class new file mode 100644 index 0000000000..7ed9779c48 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper$RecordState.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper.class new file mode 100644 index 0000000000..c4f6831d83 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordHelper.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordManager.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordManager.class new file mode 100644 index 0000000000..fbb35ac91c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/RecordManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/Complex.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/Complex.class new file mode 100644 index 0000000000..0d26c04a24 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/Complex.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FFT.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FFT.class new file mode 100644 index 0000000000..cb3042278d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FFT.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FftFactory$1.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FftFactory$1.class new file mode 100644 index 0000000000..55c0aae819 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FftFactory$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FftFactory$Level.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FftFactory$Level.class new file mode 100644 index 0000000000..f7510e71c5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FftFactory$Level.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FftFactory.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FftFactory.class new file mode 100644 index 0000000000..a373888f7e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/fft/FftFactory.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/listener/RecordListener.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/listener/RecordListener.class new file mode 100644 index 0000000000..4ce698dbe0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/listener/RecordListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3EncodeThread$ChangeBuffer.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3EncodeThread$ChangeBuffer.class new file mode 100644 index 0000000000..9d4a3c8651 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3EncodeThread$ChangeBuffer.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3EncodeThread$EncordFinishListener.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3EncodeThread$EncordFinishListener.class new file mode 100644 index 0000000000..b0fd64f4ea Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3EncodeThread$EncordFinishListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3EncodeThread.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3EncodeThread.class new file mode 100644 index 0000000000..7256ca9419 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3EncodeThread.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3Encoder.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3Encoder.class new file mode 100644 index 0000000000..16320e08b2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3Encoder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3Utils.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3Utils.class new file mode 100644 index 0000000000..2ddd79b8e6 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/mp3/Mp3Utils.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/utils/ByteUtils.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/utils/ByteUtils.class new file mode 100644 index 0000000000..b338b7cae7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/utils/ByteUtils.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/utils/WavUtils$WavHeader.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/utils/WavUtils$WavHeader.class new file mode 100644 index 0000000000..2f19e5f242 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/utils/WavUtils$WavHeader.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/utils/WavUtils.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/utils/WavUtils.class new file mode 100644 index 0000000000..266a4d61e4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/record/utils/WavUtils.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb_Impl$1.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb_Impl$1.class new file mode 100644 index 0000000000..0828b86a63 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb_Impl$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb_Impl.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb_Impl.class new file mode 100644 index 0000000000..b046463a4b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb_Impl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$1.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$1.class new file mode 100644 index 0000000000..2cf217a790 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$2.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$2.class new file mode 100644 index 0000000000..0c720c4a24 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$3.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$3.class new file mode 100644 index 0000000000..150001c266 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$3.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$4.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$4.class new file mode 100644 index 0000000000..365c6e0d46 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$4.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$5.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$5.class new file mode 100644 index 0000000000..7facd3f94c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl$5.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl.class new file mode 100644 index 0000000000..0ba04d8957 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao_Impl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/binding/BindingCarApiService.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/binding/BindingCarApiService.class new file mode 100644 index 0000000000..ecc713fa99 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/binding/BindingCarApiService.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl$1.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl$1.class new file mode 100644 index 0000000000..7007c2ad59 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl$2.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl$2.class new file mode 100644 index 0000000000..dbf1703ce1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl.class new file mode 100644 index 0000000000..c7faa5cf3b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao_Impl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb_Impl$1.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb_Impl$1.class new file mode 100644 index 0000000000..afd7f86047 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb_Impl$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb_Impl.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb_Impl.class new file mode 100644 index 0000000000..b6d752ad9b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb_Impl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/remote/IUserInterface.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/remote/IUserInterface.class new file mode 100644 index 0000000000..c65ae6b086 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/remote/IUserInterface.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/remote/RemoteUserServiceImp$Proxy.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/remote/RemoteUserServiceImp$Proxy.class new file mode 100644 index 0000000000..55372dbfc7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/remote/RemoteUserServiceImp$Proxy.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/remote/RemoteUserServiceImp.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/remote/RemoteUserServiceImp.class new file mode 100644 index 0000000000..6ceaad52dd Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/remote/RemoteUserServiceImp.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/utils/CpuUtils.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/utils/CpuUtils.class new file mode 100644 index 0000000000..22080fc97a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/utils/CpuUtils.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/utils/HookUtils.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/utils/HookUtils.class new file mode 100644 index 0000000000..703dc66484 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/utils/HookUtils.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/utils/MemUtils.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/utils/MemUtils.class new file mode 100644 index 0000000000..7146b328d3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/monitor/utils/MemUtils.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeApiService.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeApiService.class new file mode 100644 index 0000000000..c1df312e02 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeApiService.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeAppNetWorkManager$1.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeAppNetWorkManager$1.class new file mode 100644 index 0000000000..a80e626420 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeAppNetWorkManager$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeAppNetWorkManager.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeAppNetWorkManager.class new file mode 100644 index 0000000000..66be275648 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeAppNetWorkManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeAppRequest.class b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeAppRequest.class new file mode 100644 index 0000000000..5104f43f1c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/javac/debug/classes/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeAppRequest.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/library_java_res/debug/res.jar b/core/function-impl/mogo-core-function-devatools/build/intermediates/library_java_res/debug/res.jar new file mode 100644 index 0000000000..a959c17378 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/library_java_res/debug/res.jar differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/library_manifest/debug/AndroidManifest.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000000..5f06c269fc --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/core/function-impl/mogo-core-function-devatools/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000000..ec4b7e1c5d --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,139 @@ +R_DEF: Internal format may change without notice +local +drawable ai_collect_selector +drawable ai_collect_title_bg +drawable bad_case_dialog_bg +drawable bad_case_search_bg +drawable bad_case_selector +drawable badcase_radio_button_style +drawable badcase_record_edit_bg +drawable case_list_normal +drawable case_list_select +drawable case_list_selector +drawable flex_divider +drawable icon_ai_normal +drawable icon_ai_select +drawable icon_ap_badcase_check +drawable icon_ap_badcase_default +drawable icon_audio +drawable icon_audio_bg +drawable icon_bad_case_audio_normal +drawable icon_bad_case_audio_select +drawable icon_bad_case_delect +drawable icon_bad_case_normal +drawable icon_bad_case_search +drawable icon_bad_case_select +drawable icon_cancel_bg +drawable icon_dev_status_can_disable +drawable icon_dev_status_can_enable +drawable icon_dev_status_gps_disable +drawable icon_dev_status_gps_enable +drawable icon_dev_status_ipc_disable +drawable icon_dev_status_ipc_enable +drawable icon_dev_status_net_disable +drawable icon_dev_status_net_enable +drawable icon_dev_status_route_enable +drawable icon_dev_status_rtk_error +drawable icon_dev_status_rtk_good +drawable icon_dev_status_rtk_inaccurate +drawable icon_dev_status_rtk_not_credible +drawable icon_dev_status_rtk_unknow +drawable icon_dev_status_slam_good +drawable icon_dev_status_trace_unkown +drawable icon_dev_status_track_enable +drawable icon_dev_status_un_fold +drawable icon_expand +drawable icon_num_bg +drawable report_button_bg +drawable rv_scroll_bar_thumb +drawable rv_scroll_bar_track +drawable save_button_bg +drawable shape_size_check_false +drawable shape_size_check_true +drawable template_list_bg +id caseName +id clSearchLayout +id etInitiativeAfterTime +id etInitiativePreTime +id etPassiveAfterTime +id etPassivePreTime +id etSearch +id feed_back_badcase_count_down_job +id feed_back_badcase_job +id feed_back_badcase_tag +id feed_back_badcase_taskid_tag +id flReasonLayout +id iv +id ivConfigClose +id ivRecordTemplate +id ivSearch +id rbAccident +id rbConstruction +id rbDeveloper +id rbFive +id rbFour +id rbLargeCar +id rbNightTraffic +id rbOne +id rbProduct +id rbRain +id rbSafetyOfficer +id rbSix +id rbThree +id rbTrafficLight +id rbTwo +id rbWater +id rv +id rvCaseList +id rvTemplate +id rvTopicList +id topic_check_box +id tvAudioCountDown +id tvCancel +id tvCaseListTitle +id tvCaseName +id tvCollectCancel +id tvCollectNum +id tvCollectReport +id tvCollectTime +id tvConfigSave +id tvConfigTitle +id tvIdentityTitle +id tvInitiativeAfter +id tvInitiativeCancel +id tvInitiativeIdentity +id tvInitiativeNum +id tvInitiativePre +id tvInitiativeReport +id tvInitiativeTime +id tvInitiativeTitle +id tvPassiveAfter +id tvPassiveCancel +id tvPassiveIdentity +id tvPassiveNum +id tvPassivePre +id tvPassiveReport +id tvPassiveTime +id tvPassiveTitle +id tvRecordTemplate +id tvRecordTitle +id tvSave +id viewAudioBg +id viewAudioButton +id viewCancelDivider +id viewConfigTitleLine +id viewHorizontalLine +id viewVerticalLine +layout dialog_case_list +layout dialog_case_topic_list +layout item_case_list +layout item_record_template +layout item_topic_list +layout layout_badcase_config +layout layout_status_bar +layout layout_status_bar_item +layout view_ai_data_collect +layout view_initiative_bad_case +layout view_passive_bad_case +style bad_case_dialog +style rv_vertical_style diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/core/function-impl/mogo-core-function-devatools/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000000..0d6c5f0f32 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,32 @@ +1 +2 +6 +7 /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml +9 android:targetSdkVersion="27" /> +9-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml +10 +11 +11-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:5:5-79 +11-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:5:22-76 +12 +12-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:6:5-79 +12-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:6:22-76 +13 +13-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:7:5-76 +13-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:7:22-73 +14 +14-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:8:5-68 +14-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:8:22-65 +15 +15-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:9:5-74 +15-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:9:22-71 +16 +16-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:10:5-76 +16-->/Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:10:22-73 +17 +18 diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/merged_manifests/debug/output.json b/core/function-impl/mogo-core-function-devatools/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..0dcefe5df8 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"0.0.58.10","enabled":true,"outputFile":"mogo-core-function-devatools-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.zhjt.mogo_core_function_devatools","split":""}}] \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ai_normal.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ai_normal.png new file mode 100644 index 0000000000..f9ed275c13 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ai_normal.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ai_select.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ai_select.png new file mode 100644 index 0000000000..5d0ed862f3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ai_select.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ap_badcase_check.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ap_badcase_check.png new file mode 100644 index 0000000000..3f05565483 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ap_badcase_check.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ap_badcase_default.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ap_badcase_default.png new file mode 100644 index 0000000000..0114bb4f2b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_ap_badcase_default.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_audio.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_audio.png new file mode 100644 index 0000000000..2d9fde3655 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_audio.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_audio_bg.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_audio_bg.png new file mode 100644 index 0000000000..c67751750d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_audio_bg.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_audio_normal.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_audio_normal.png new file mode 100644 index 0000000000..cd3fee2a61 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_audio_normal.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_audio_select.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_audio_select.png new file mode 100644 index 0000000000..80b99b08c9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_audio_select.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_delect.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_delect.png new file mode 100644 index 0000000000..29f9d7c92c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_delect.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_normal.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_normal.png new file mode 100644 index 0000000000..3b8460c384 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_normal.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_search.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_search.png new file mode 100644 index 0000000000..ec19975a43 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_search.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_select.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_select.png new file mode 100644 index 0000000000..89a6eaa5dc Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_bad_case_select.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_cancel_bg.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_cancel_bg.png new file mode 100644 index 0000000000..cf7d73bddc Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_cancel_bg.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_can_disable.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_can_disable.png new file mode 100644 index 0000000000..7a40e74502 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_can_disable.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_can_enable.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_can_enable.png new file mode 100644 index 0000000000..5a8ba8f113 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_can_enable.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_gps_disable.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_gps_disable.png new file mode 100644 index 0000000000..c222f9e753 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_gps_disable.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_gps_enable.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_gps_enable.png new file mode 100644 index 0000000000..ef0fb961bd Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_gps_enable.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_ipc_disable.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_ipc_disable.png new file mode 100644 index 0000000000..8af610ac55 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_ipc_disable.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_ipc_enable.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_ipc_enable.png new file mode 100644 index 0000000000..679d995098 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_ipc_enable.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_net_disable.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_net_disable.png new file mode 100644 index 0000000000..885b4603f0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_net_disable.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_net_enable.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_net_enable.png new file mode 100644 index 0000000000..ea9f95dfa3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_net_enable.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_route_enable.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_route_enable.png new file mode 100644 index 0000000000..aab25db226 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_route_enable.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_error.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_error.png new file mode 100644 index 0000000000..34b284c771 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_error.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_good.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_good.png new file mode 100644 index 0000000000..389ca405d9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_good.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_inaccurate.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_inaccurate.png new file mode 100644 index 0000000000..a70bddcd7b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_inaccurate.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_not_credible.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_not_credible.png new file mode 100644 index 0000000000..18de44bf02 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_not_credible.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_unknow.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_unknow.png new file mode 100644 index 0000000000..8b7e063f06 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_rtk_unknow.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_slam_good.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_slam_good.png new file mode 100644 index 0000000000..7669036a6a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_slam_good.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_trace_unkown.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_trace_unkown.png new file mode 100644 index 0000000000..29af9e896a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_trace_unkown.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_track_enable.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_track_enable.png new file mode 100644 index 0000000000..73e8ce9f30 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_track_enable.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_un_fold.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_un_fold.png new file mode 100644 index 0000000000..290ecce308 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_dev_status_un_fold.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_expand.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_expand.png new file mode 100644 index 0000000000..91cd5e3fa6 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_expand.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_num_bg.png b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_num_bg.png new file mode 100644 index 0000000000..c65c78d418 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/icon_num_bg.png differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/ai_collect_selector.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/ai_collect_selector.xml new file mode 100644 index 0000000000..a1211f3c47 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/ai_collect_selector.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/ai_collect_title_bg.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/ai_collect_title_bg.xml new file mode 100644 index 0000000000..405cfdcfff --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/ai_collect_title_bg.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_dialog_bg.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_dialog_bg.xml new file mode 100644 index 0000000000..80b95b1fa6 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_dialog_bg.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_search_bg.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_search_bg.xml new file mode 100644 index 0000000000..2c5e882fd9 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_search_bg.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_selector.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_selector.xml new file mode 100644 index 0000000000..bc47ce95d7 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/bad_case_selector.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/badcase_radio_button_style.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/badcase_radio_button_style.xml new file mode 100644 index 0000000000..2b50242af5 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/badcase_radio_button_style.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/badcase_record_edit_bg.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/badcase_record_edit_bg.xml new file mode 100644 index 0000000000..b565a8ee8a --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/badcase_record_edit_bg.xml @@ -0,0 +1,10 @@ + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_normal.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_normal.xml new file mode 100644 index 0000000000..2476e64166 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_normal.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_select.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_select.xml new file mode 100644 index 0000000000..62edf18e3a --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_select.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_selector.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_selector.xml new file mode 100644 index 0000000000..71a6fe9d65 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/case_list_selector.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/flex_divider.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/flex_divider.xml new file mode 100644 index 0000000000..c6eaf1378f --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/flex_divider.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/report_button_bg.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/report_button_bg.xml new file mode 100644 index 0000000000..e6263838e3 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/report_button_bg.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/rv_scroll_bar_thumb.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/rv_scroll_bar_thumb.xml new file mode 100644 index 0000000000..c315ebdebe --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/rv_scroll_bar_thumb.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/rv_scroll_bar_track.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/rv_scroll_bar_track.xml new file mode 100644 index 0000000000..ca304235cf --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/rv_scroll_bar_track.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/save_button_bg.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/save_button_bg.xml new file mode 100644 index 0000000000..c1a3517583 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/save_button_bg.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/shape_size_check_false.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/shape_size_check_false.xml new file mode 100644 index 0000000000..e15bf88f42 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/shape_size_check_false.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/shape_size_check_true.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/shape_size_check_true.xml new file mode 100644 index 0000000000..50ce551e98 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/shape_size_check_true.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/template_list_bg.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/template_list_bg.xml new file mode 100644 index 0000000000..baef1a8035 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/drawable/template_list_bg.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/dialog_case_list.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/dialog_case_list.xml new file mode 100644 index 0000000000..bd3b44bc55 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/dialog_case_list.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/dialog_case_topic_list.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/dialog_case_topic_list.xml new file mode 100644 index 0000000000..d1ef0d14ce --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/dialog_case_topic_list.xml @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_case_list.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_case_list.xml new file mode 100644 index 0000000000..c1860a8d78 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_case_list.xml @@ -0,0 +1,19 @@ + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_record_template.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_record_template.xml new file mode 100644 index 0000000000..ccbc85cf57 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_record_template.xml @@ -0,0 +1,18 @@ + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_topic_list.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_topic_list.xml new file mode 100644 index 0000000000..eb24543faa --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/item_topic_list.xml @@ -0,0 +1,14 @@ + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_badcase_config.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_badcase_config.xml new file mode 100644 index 0000000000..4d97f8b555 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_badcase_config.xml @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_status_bar.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_status_bar.xml new file mode 100644 index 0000000000..cb70767345 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_status_bar.xml @@ -0,0 +1,18 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_status_bar_item.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_status_bar_item.xml new file mode 100644 index 0000000000..d3a2d42858 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/layout_status_bar_item.xml @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_ai_data_collect.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_ai_data_collect.xml new file mode 100644 index 0000000000..f06a6d117d --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_ai_data_collect.xml @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_initiative_bad_case.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_initiative_bad_case.xml new file mode 100644 index 0000000000..515ca82ee0 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_initiative_bad_case.xml @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_passive_bad_case.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_passive_bad_case.xml new file mode 100644 index 0000000000..cb25782fc4 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/layout/view_passive_bad_case.xml @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/values/values.xml b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/values/values.xml new file mode 100644 index 0000000000..f0402050c9 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/packaged_res/debug/values/values.xml @@ -0,0 +1,20 @@ + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/core/function-impl/mogo-core-function-devatools/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000..85bad8bd20 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,5333 @@ +com.zhjt.mogo_core_function_devatools +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim btn_checkbox_to_checked_box_inner_merged_animation +anim btn_checkbox_to_checked_box_outer_merged_animation +anim btn_checkbox_to_checked_icon_null_animation +anim btn_checkbox_to_unchecked_box_inner_merged_animation +anim btn_checkbox_to_unchecked_check_path_merged_animation +anim btn_checkbox_to_unchecked_icon_null_animation +anim btn_radio_to_off_mtrl_dot_group_animation +anim btn_radio_to_off_mtrl_ring_outer_animation +anim btn_radio_to_off_mtrl_ring_outer_path_animation +anim btn_radio_to_on_mtrl_dot_group_animation +anim btn_radio_to_on_mtrl_ring_outer_animation +anim btn_radio_to_on_mtrl_ring_outer_path_animation +anim design_bottom_sheet_slide_in +anim design_bottom_sheet_slide_out +anim design_snackbar_in +anim design_snackbar_out +anim fragment_fast_out_extra_slow_in +anim mtrl_bottom_sheet_slide_in +anim mtrl_bottom_sheet_slide_out +anim mtrl_card_lowers_interpolator +animator design_appbar_state_list_animator +animator design_fab_hide_motion_spec +animator design_fab_show_motion_spec +animator fragment_close_enter +animator fragment_close_exit +animator fragment_fade_enter +animator fragment_fade_exit +animator fragment_open_enter +animator fragment_open_exit +animator linear_indeterminate_line1_head_interpolator +animator linear_indeterminate_line1_tail_interpolator +animator linear_indeterminate_line2_head_interpolator +animator linear_indeterminate_line2_tail_interpolator +animator mtrl_btn_state_list_anim +animator mtrl_btn_unelevated_state_list_anim +animator mtrl_card_state_list_anim +animator mtrl_chip_state_list_anim +animator mtrl_extended_fab_change_size_collapse_motion_spec +animator mtrl_extended_fab_change_size_expand_motion_spec +animator mtrl_extended_fab_hide_motion_spec +animator mtrl_extended_fab_show_motion_spec +animator mtrl_extended_fab_state_list_animator +animator mtrl_fab_hide_motion_spec +animator mtrl_fab_show_motion_spec +animator mtrl_fab_transformation_sheet_collapse_spec +animator mtrl_fab_transformation_sheet_expand_spec +attr ConstraintRotate +attr SharedValue +attr SharedValueId +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseContentDescription +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeTheme +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionTextColorAlpha +attr actionViewClass +attr activityChooserViewStyle +attr actualImageResource +attr actualImageScaleType +attr actualImageUri +attr ad_marker_color +attr ad_marker_width +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr alignContent +attr alignItems +attr allowStacking +attr alpha +attr alphabeticModifiers +attr altSrc +attr animateCircleAngleTo +attr animateRelativeTo +attr animate_relativeTo +attr animationMode +attr appBarLayoutStyle +attr applyMotionScene +attr arcMode +attr arrowHeadLength +attr arrowShaftLength +attr attributeName +attr autoCompleteMode +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr autoTransition +attr background +attr backgroundColor +attr backgroundImage +attr backgroundInsetBottom +attr backgroundInsetEnd +attr backgroundInsetStart +attr backgroundInsetTop +attr backgroundOverlayColorAlpha +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr badgeGravity +attr badgeStyle +attr badgeTextColor +attr barLength +attr bar_height +attr barrierAllowsGoneWidgets +attr barrierDirection +attr barrierMargin +attr behavior_autoHide +attr behavior_autoShrink +attr behavior_draggable +attr behavior_expandedOffset +attr behavior_fitToContents +attr behavior_halfExpandedRatio +attr behavior_hideable +attr behavior_overlapTop +attr behavior_peekHeight +attr behavior_saveFlags +attr behavior_skipCollapsed +attr blendSrc +attr borderRound +attr borderRoundPercent +attr borderWidth +attr borderlessButtonStyle +attr bottomAppBarStyle +attr bottomNavigationStyle +attr bottomSheetDialogTheme +attr bottomSheetStyle +attr boxBackgroundColor +attr boxBackgroundMode +attr boxCollapsedPaddingTop +attr boxCornerRadiusBottomEnd +attr boxCornerRadiusBottomStart +attr boxCornerRadiusTopEnd +attr boxCornerRadiusTopStart +attr boxStrokeColor +attr boxStrokeErrorColor +attr boxStrokeWidth +attr boxStrokeWidthFocused +attr brightness +attr btmText +attr btmTextSize +attr buffered_color +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonCompat +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr cardBackgroundColor +attr cardCornerRadius +attr cardElevation +attr cardForegroundColor +attr cardMaxElevation +attr cardPreventCornerOverlap +attr cardUseCompatPadding +attr cardViewStyle +attr carousel_backwardTransition +attr carousel_emptyViewsBehavior +attr carousel_firstView +attr carousel_forwardTransition +attr carousel_infinite +attr carousel_nextState +attr carousel_previousState +attr carousel_touchUpMode +attr carousel_touchUp_dampeningFactor +attr carousel_touchUp_velocityThreshold +attr chainUseRtl +attr checkboxStyle +attr checkedButton +attr checkedChip +attr checkedIcon +attr checkedIconEnabled +attr checkedIconMargin +attr checkedIconSize +attr checkedIconTint +attr checkedIconVisible +attr checkedTextViewStyle +attr chipBackgroundColor +attr chipCornerRadius +attr chipEndPadding +attr chipGroupStyle +attr chipIcon +attr chipIconEnabled +attr chipIconSize +attr chipIconTint +attr chipIconVisible +attr chipMinHeight +attr chipMinTouchTargetSize +attr chipSpacing +attr chipSpacingHorizontal +attr chipSpacingVertical +attr chipStandaloneStyle +attr chipStartPadding +attr chipStrokeColor +attr chipStrokeWidth +attr chipStyle +attr chipSurfaceColor +attr circleRadius +attr circularProgressIndicatorStyle +attr circularflow_angles +attr circularflow_defaultAngle +attr circularflow_defaultRadius +attr circularflow_radiusInDP +attr circularflow_viewCenter +attr civ_border_color +attr civ_border_overlay +attr civ_border_width +attr civ_fill_color +attr clearsTag +attr clickAction +attr clockFaceBackgroundColor +attr clockHandColor +attr clockIcon +attr clockNumberTextColor +attr closeIcon +attr closeIconEnabled +attr closeIconEndPadding +attr closeIconSize +attr closeIconStartPadding +attr closeIconTint +attr closeIconVisible +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr collapsedSize +attr collapsedTitleGravity +attr collapsedTitleTextAppearance +attr collapsingToolbarLayoutStyle +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorOnBackground +attr colorOnError +attr colorOnPrimary +attr colorOnPrimarySurface +attr colorOnSecondary +attr colorOnSurface +attr colorPrimary +attr colorPrimaryDark +attr colorPrimarySurface +attr colorPrimaryVariant +attr colorSecondary +attr colorSecondaryVariant +attr colorSurface +attr colorSwitchThumbNormal +attr commitIcon +attr constraintSet +attr constraintSetEnd +attr constraintSetStart +attr constraint_referenced_ids +attr constraint_referenced_tags +attr constraints +attr content +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr contentPadding +attr contentPaddingBottom +attr contentPaddingEnd +attr contentPaddingLeft +attr contentPaddingRight +attr contentPaddingStart +attr contentPaddingTop +attr contentScrim +attr contrast +attr controlBackground +attr controller_layout_id +attr coordinatorLayoutStyle +attr cornerFamily +attr cornerFamilyBottomLeft +attr cornerFamilyBottomRight +attr cornerFamilyTopLeft +attr cornerFamilyTopRight +attr cornerRadius +attr cornerSize +attr cornerSizeBottomLeft +attr cornerSizeBottomRight +attr cornerSizeTopLeft +attr cornerSizeTopRight +attr counterEnabled +attr counterMaxLength +attr counterOverflowTextAppearance +attr counterOverflowTextColor +attr counterTextAppearance +attr counterTextColor +attr crossfade +attr currentState +attr curveFit +attr customBoolean +attr customColorDrawableValue +attr customColorValue +attr customDimension +attr customFloatValue +attr customIntegerValue +attr customNavigationLayout +attr customPixelDimension +attr customReference +attr customStringValue +attr dayInvalidStyle +attr daySelectedStyle +attr dayStyle +attr dayTodayStyle +attr defaultDuration +attr defaultQueryHint +attr defaultState +attr default_artwork +attr deltaPolarAngle +attr deltaPolarRadius +attr deriveConstraintsFrom +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr disappearedScale +attr displayOptions +attr divider +attr dividerDrawable +attr dividerDrawableHorizontal +attr dividerDrawableVertical +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr download_bg_line_color +attr download_bg_line_width +attr download_line_color +attr download_line_width +attr download_text_color +attr download_text_size +attr dragDirection +attr dragScale +attr dragThreshold +attr drawPath +attr drawableBottomCompat +attr drawableEndCompat +attr drawableLeftCompat +attr drawableRightCompat +attr drawableSize +attr drawableStartCompat +attr drawableTint +attr drawableTintMode +attr drawableTopCompat +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr duration +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elevation +attr elevationOverlayColor +attr elevationOverlayEnabled +attr enableEdgeToEdge +attr endIconCheckable +attr endIconContentDescription +attr endIconDrawable +attr endIconMode +attr endIconTint +attr endIconTintMode +attr enforceMaterialTheme +attr enforceTextAppearance +attr ensureMinTouchTargetSize +attr errorContentDescription +attr errorEnabled +attr errorIconDrawable +attr errorIconTint +attr errorIconTintMode +attr errorTextAppearance +attr errorTextColor +attr expandActivityOverflowButtonDrawable +attr expanded +attr expandedHintEnabled +attr expandedTitleGravity +attr expandedTitleMargin +attr expandedTitleMarginBottom +attr expandedTitleMarginEnd +attr expandedTitleMarginStart +attr expandedTitleMarginTop +attr expandedTitleTextAppearance +attr extendMotionSpec +attr extendedFloatingActionButtonStyle +attr extraMultilineHeightEnabled +attr fabAlignmentMode +attr fabAnimationMode +attr fabCradleMargin +attr fabCradleRoundedCornerRadius +attr fabCradleVerticalOffset +attr fabCustomSize +attr fabSize +attr fadeDuration +attr failureImage +attr failureImageScaleType +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr fastforward_increment +attr firstBaselineToTopHeight +attr flexDirection +attr flexWrap +attr floatingActionButtonStyle +attr flow_firstHorizontalBias +attr flow_firstHorizontalStyle +attr flow_firstVerticalBias +attr flow_firstVerticalStyle +attr flow_horizontalAlign +attr flow_horizontalBias +attr flow_horizontalGap +attr flow_horizontalStyle +attr flow_lastHorizontalBias +attr flow_lastHorizontalStyle +attr flow_lastVerticalBias +attr flow_lastVerticalStyle +attr flow_maxElementsWrap +attr flow_padding +attr flow_verticalAlign +attr flow_verticalBias +attr flow_verticalGap +attr flow_verticalStyle +attr flow_wrapMode +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontProviderSystemFontFamily +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr forceApplySystemWindowInsetTop +attr foregroundInsidePadding +attr framePosition +attr gapBetweenBars +attr gestureInsetBottomIgnored +attr goIcon +attr haloColor +attr haloRadius +attr headerLayout +attr height +attr helperText +attr helperTextEnabled +attr helperTextTextAppearance +attr helperTextTextColor +attr hideAnimationBehavior +attr hideMotionSpec +attr hideOnContentScroll +attr hideOnScroll +attr hide_on_touch +attr hintAnimationEnabled +attr hintEnabled +attr hintTextAppearance +attr hintTextColor +attr homeAsUpIndicator +attr homeLayout +attr horizontalOffset +attr hoveredFocusedTranslationZ +attr icon +attr iconEndPadding +attr iconGravity +attr iconPadding +attr iconSize +attr iconStartPadding +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr ifTagNotSet +attr ifTagSet +attr imageButtonStyle +attr imagePanX +attr imagePanY +attr imageRotate +attr imageZoom +attr indeterminateAnimationType +attr indeterminateProgressStyle +attr indicatorColor +attr indicatorDirectionCircular +attr indicatorDirectionLinear +attr indicatorInset +attr indicatorSize +attr initialActivityCount +attr insetForeground +attr isLightTheme +attr isMaterialTheme +attr itemBackground +attr itemFillColor +attr itemHorizontalPadding +attr itemHorizontalTranslationEnabled +attr itemIconPadding +attr itemIconSize +attr itemIconTint +attr itemMaxLines +attr itemPadding +attr itemRippleColor +attr itemShapeAppearance +attr itemShapeAppearanceOverlay +attr itemShapeFillColor +attr itemShapeInsetBottom +attr itemShapeInsetEnd +attr itemShapeInsetStart +attr itemShapeInsetTop +attr itemSpacing +attr itemStrokeColor +attr itemStrokeWidth +attr itemTextAppearance +attr itemTextAppearanceActive +attr itemTextAppearanceInactive +attr itemTextColor +attr justifyContent +attr keyPositionType +attr keyboardIcon +attr keylines +attr labelBehavior +attr labelStyle +attr labelVisibilityMode +attr lastBaselineToBottomHeight +attr layout +attr layoutDescription +attr layoutDuringTransition +attr layoutManager +attr layout_alignSelf +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_collapseMode +attr layout_collapseParallaxMultiplier +attr layout_constrainedHeight +attr layout_constrainedWidth +attr layout_constraintBaseline_creator +attr layout_constraintBaseline_toBaselineOf +attr layout_constraintBaseline_toBottomOf +attr layout_constraintBaseline_toTopOf +attr layout_constraintBottom_creator +attr layout_constraintBottom_toBottomOf +attr layout_constraintBottom_toTopOf +attr layout_constraintCircle +attr layout_constraintCircleAngle +attr layout_constraintCircleRadius +attr layout_constraintDimensionRatio +attr layout_constraintEnd_toEndOf +attr layout_constraintEnd_toStartOf +attr layout_constraintGuide_begin +attr layout_constraintGuide_end +attr layout_constraintGuide_percent +attr layout_constraintHeight +attr layout_constraintHeight_default +attr layout_constraintHeight_max +attr layout_constraintHeight_min +attr layout_constraintHeight_percent +attr layout_constraintHorizontal_bias +attr layout_constraintHorizontal_chainStyle +attr layout_constraintHorizontal_weight +attr layout_constraintLeft_creator +attr layout_constraintLeft_toLeftOf +attr layout_constraintLeft_toRightOf +attr layout_constraintRight_creator +attr layout_constraintRight_toLeftOf +attr layout_constraintRight_toRightOf +attr layout_constraintStart_toEndOf +attr layout_constraintStart_toStartOf +attr layout_constraintTag +attr layout_constraintTop_creator +attr layout_constraintTop_toBottomOf +attr layout_constraintTop_toTopOf +attr layout_constraintVertical_bias +attr layout_constraintVertical_chainStyle +attr layout_constraintVertical_weight +attr layout_constraintWidth +attr layout_constraintWidth_default +attr layout_constraintWidth_max +attr layout_constraintWidth_min +attr layout_constraintWidth_percent +attr layout_dodgeInsetEdges +attr layout_editor_absoluteX +attr layout_editor_absoluteY +attr layout_flexBasisPercent +attr layout_flexGrow +attr layout_flexShrink +attr layout_goneMarginBaseline +attr layout_goneMarginBottom +attr layout_goneMarginEnd +attr layout_goneMarginLeft +attr layout_goneMarginRight +attr layout_goneMarginStart +attr layout_goneMarginTop +attr layout_insetEdge +attr layout_keyline +attr layout_marginBaseline +attr layout_maxHeight +attr layout_maxWidth +attr layout_minHeight +attr layout_minWidth +attr layout_optimizationLevel +attr layout_order +attr layout_scrollFlags +attr layout_scrollInterpolator +attr layout_wrapBefore +attr layout_wrapBehaviorInParent +attr liftOnScroll +attr liftOnScrollTargetViewId +attr limitBoundsTo +attr lineHeight +attr lineSpacing +attr linearProgressIndicatorStyle +attr listChoiceBackgroundIndicator +attr listChoiceIndicatorMultipleAnimated +attr listChoiceIndicatorSingleAnimated +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingEnd +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr listPreferredItemPaddingStart +attr logo +attr logoDescription +attr maskColor +attr materialAlertDialogBodyTextStyle +attr materialAlertDialogTheme +attr materialAlertDialogTitleIconStyle +attr materialAlertDialogTitlePanelStyle +attr materialAlertDialogTitleTextStyle +attr materialButtonOutlinedStyle +attr materialButtonStyle +attr materialButtonToggleGroupStyle +attr materialCalendarDay +attr materialCalendarFullscreenTheme +attr materialCalendarHeaderCancelButton +attr materialCalendarHeaderConfirmButton +attr materialCalendarHeaderDivider +attr materialCalendarHeaderLayout +attr materialCalendarHeaderSelection +attr materialCalendarHeaderTitle +attr materialCalendarHeaderToggleButton +attr materialCalendarMonth +attr materialCalendarMonthNavigationButton +attr materialCalendarStyle +attr materialCalendarTheme +attr materialCalendarYearNavigationButton +attr materialCardViewStyle +attr materialCircleRadius +attr materialClockStyle +attr materialThemeOverlay +attr materialTimePickerStyle +attr materialTimePickerTheme +attr maxAcceleration +attr maxActionInlineWidth +attr maxButtonHeight +attr maxCharacterCount +attr maxHeight +attr maxImageSize +attr maxLine +attr maxLines +attr maxVelocity +attr maxWidth +attr measureWithLargestChild +attr menu +attr menuGravity +attr methodName +attr minHeight +attr minHideDelay +attr minSeparation +attr minTouchTargetSize +attr minWidth +attr miv_blurRadius +attr miv_borderColor +attr miv_bottomLeftRadius +attr miv_bottomRightRadius +attr miv_failureHolder +attr miv_isBlur +attr miv_overlayImageId +attr miv_placeHolder +attr miv_radius +attr miv_shape +attr miv_shapeBorderWidth +attr miv_topLeftRadius +attr miv_topRightRadius +attr mock_diagonalsColor +attr mock_label +attr mock_labelBackgroundColor +attr mock_labelColor +attr mock_showDiagonals +attr mock_showLabel +attr motionDebug +attr motionDurationLong1 +attr motionDurationLong2 +attr motionDurationMedium1 +attr motionDurationMedium2 +attr motionDurationShort1 +attr motionDurationShort2 +attr motionEasingAccelerated +attr motionEasingDecelerated +attr motionEasingEmphasized +attr motionEasingLinear +attr motionEasingStandard +attr motionEffect_alpha +attr motionEffect_end +attr motionEffect_move +attr motionEffect_start +attr motionEffect_strict +attr motionEffect_translationX +attr motionEffect_translationY +attr motionEffect_viewTransition +attr motionInterpolator +attr motionPath +attr motionPathRotate +attr motionProgress +attr motionStagger +attr motionTarget +attr motion_postLayoutCollision +attr motion_triggerOnCollision +attr moveWhenScrollAtTop +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationIconTint +attr navigationMode +attr navigationRailStyle +attr navigationViewStyle +attr nestedScrollFlags +attr nestedScrollable +attr number +attr numericModifiers +attr onCross +attr onHide +attr onNegativeCross +attr onPositiveCross +attr onShow +attr onStateTransition +attr onTouchUp +attr overlapAnchor +attr overlay +attr overlayImage +attr paddingBottomNoButtons +attr paddingBottomSystemWindowInsets +attr paddingEnd +attr paddingLeftSystemWindowInsets +attr paddingRightSystemWindowInsets +attr paddingStart +attr paddingTopNoTitle +attr paddingTopSystemWindowInsets +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr passwordToggleContentDescription +attr passwordToggleDrawable +attr passwordToggleEnabled +attr passwordToggleTint +attr passwordToggleTintMode +attr pathMotionArc +attr path_percent +attr percentHeight +attr percentWidth +attr percentX +attr percentY +attr perpendicularPath_percent +attr pivotAnchor +attr placeholderImage +attr placeholderImageScaleType +attr placeholderText +attr placeholderTextAppearance +attr placeholderTextColor +attr placeholder_emptyVisibility +attr play_bg_line_color +attr play_bg_line_width +attr play_line_color +attr play_line_width +attr played_color +attr player_layout_id +attr polarRelativeTo +attr popupMenuBackground +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr prefixText +attr prefixTextAppearance +attr prefixTextColor +attr preserveIconSpacing +attr pressedStateOverlayImage +attr pressedTranslationZ +attr progressBarAutoRotateInterval +attr progressBarImage +attr progressBarImageScaleType +attr progressBarPadding +attr progressBarStyle +attr quantizeMotionInterpolator +attr quantizeMotionPhase +attr quantizeMotionSteps +attr queryBackground +attr queryHint +attr radioButtonStyle +attr rangeFillColor +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr reactiveGuide_animateChange +attr reactiveGuide_applyToAllConstraintSets +attr reactiveGuide_applyToConstraintSet +attr reactiveGuide_valueId +attr recyclerViewStyle +attr region_heightLessThan +attr region_heightMoreThan +attr region_widthLessThan +attr region_widthMoreThan +attr resize_mode +attr retryImage +attr retryImageScaleType +attr reverseLayout +attr rewind_increment +attr rippleColor +attr rotationCenterId +attr round +attr roundAsCircle +attr roundBottomEnd +attr roundBottomLeft +attr roundBottomRight +attr roundBottomStart +attr roundLayoutRadius +attr roundPercent +attr roundTopEnd +attr roundTopLeft +attr roundTopRight +attr roundTopStart +attr roundWithOverlayColor +attr roundedCornerRadius +attr roundingBorderColor +attr roundingBorderPadding +attr roundingBorderWidth +attr saturation +attr scaleFromTextSize +attr scanline +attr scrimAnimationDuration +attr scrimBackground +attr scrimVisibleHeightTrigger +attr scrubber_color +attr scrubber_disabled_size +attr scrubber_dragged_size +attr scrubber_enabled_size +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr selectionRequired +attr selectorSize +attr setsTag +attr shapeAppearance +attr shapeAppearanceLargeComponent +attr shapeAppearanceMediumComponent +attr shapeAppearanceOverlay +attr shapeAppearanceSmallComponent +attr showAnimationBehavior +attr showAsAction +attr showDelay +attr showDivider +attr showDividerHorizontal +attr showDividerVertical +attr showDividers +attr showMotionSpec +attr showPaths +attr showRectLine +attr showText +attr showTitle +attr show_timeout +attr shrinkMotionSpec +attr singleChoiceItemLayout +attr singleLine +attr singleSelection +attr sizePercent +attr sliderStyle +attr snackbarButtonStyle +attr snackbarStyle +attr snackbarTextViewStyle +attr spanCount +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr springBoundary +attr springDamping +attr springMass +attr springStiffness +attr springStopThreshold +attr srcCompat +attr stackFromEnd +attr staggered +attr startIconCheckable +attr startIconContentDescription +attr startIconDrawable +attr startIconTint +attr startIconTintMode +attr state_above_anchor +attr state_collapsed +attr state_collapsible +attr state_dragged +attr state_liftable +attr state_lifted +attr statusBarBackground +attr statusBarForeground +attr statusBarScrim +attr strokeColor +attr strokeWidth +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleCentered +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suffixText +attr suffixTextAppearance +attr suffixTextColor +attr suggestionRowLayout +attr surface_type +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr tabBackground +attr tabContentStart +attr tabGravity +attr tabIconTint +attr tabIconTintMode +attr tabIndicator +attr tabIndicatorAnimationDuration +attr tabIndicatorAnimationMode +attr tabIndicatorColor +attr tabIndicatorFullWidth +attr tabIndicatorGravity +attr tabIndicatorHeight +attr tabInlineLabel +attr tabMaxWidth +attr tabMinWidth +attr tabMode +attr tabPadding +attr tabPaddingBottom +attr tabPaddingEnd +attr tabPaddingStart +attr tabPaddingTop +attr tabRippleColor +attr tabSelectedTextColor +attr tabStyle +attr tabTextAppearance +attr tabTextColor +attr tabUnboundedRipple +attr targetId +attr telltales_tailColor +attr telltales_tailScale +attr telltales_velocityMode +attr textAllCaps +attr textAppearanceBody1 +attr textAppearanceBody2 +attr textAppearanceButton +attr textAppearanceCaption +attr textAppearanceHeadline1 +attr textAppearanceHeadline2 +attr textAppearanceHeadline3 +attr textAppearanceHeadline4 +attr textAppearanceHeadline5 +attr textAppearanceHeadline6 +attr textAppearanceLargePopupMenu +attr textAppearanceLineHeightEnabled +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearanceOverline +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textAppearanceSubtitle1 +attr textAppearanceSubtitle2 +attr textBackground +attr textBackgroundPanX +attr textBackgroundPanY +attr textBackgroundRotate +attr textBackgroundZoom +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textEndPadding +attr textFillColor +attr textInputLayoutFocusedRectEnabled +attr textInputStyle +attr textLocale +attr textOutlineColor +attr textOutlineThickness +attr textPanX +attr textPanY +attr textStartPadding +attr textureBlurFactor +attr textureEffect +attr textureHeight +attr textureWidth +attr theme +attr themeLineHeight +attr thickness +attr thumbColor +attr thumbElevation +attr thumbRadius +attr thumbStrokeColor +attr thumbStrokeWidth +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickColor +attr tickColorActive +attr tickColorInactive +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tickVisible +attr tint +attr tintMode +attr title +attr titleCentered +attr titleCollapseMode +attr titleEnabled +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarId +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipStyle +attr tooltipText +attr topText +attr topTextSize +attr touchAnchorId +attr touchAnchorSide +attr touchRegionId +attr touch_target_height +attr track +attr trackColor +attr trackColorActive +attr trackColorInactive +attr trackCornerRadius +attr trackHeight +attr trackThickness +attr trackTint +attr trackTintMode +attr transformPivotTarget +attr transitionDisable +attr transitionEasing +attr transitionFlags +attr transitionPathRotate +attr transitionShapeAppearance +attr triAngleColor +attr triAngleLength +attr triAngleWidth +attr triggerId +attr triggerReceiver +attr triggerSlack +attr ttcIndex +attr unplayed_color +attr upDuration +attr useCompatPadding +attr useMaterialThemeColors +attr use_artwork +attr use_controller +attr values +attr verticalOffset +attr viewAspectRatio +attr viewInflaterClass +attr viewTransitionMode +attr viewTransitionOnCross +attr viewTransitionOnNegativeCross +attr viewTransitionOnPositiveCross +attr visibilityMode +attr voiceIcon +attr vpi_orientation +attr vpi_rtl +attr vpi_slide_mode +attr vpi_slider_checked_color +attr vpi_slider_normal_color +attr vpi_slider_radius +attr vpi_style +attr warmth +attr waveDecay +attr waveOffset +attr wavePeriod +attr wavePhase +attr waveShape +attr waveVariesBy +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +attr yearSelectedStyle +attr yearStyle +attr yearTodayStyle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +bool abc_config_showMenuShortcutsWhenKeyboardPresent +bool mtrl_btn_textappearance_all_caps +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_decor_view_status_guard +color abc_decor_view_status_guard_light +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent_material_dark +color accent_material_light +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color blue +color bottom_container_bg +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color burlywood +color button_material_dark +color button_material_light +color cardview_dark_background +color cardview_light_background +color cardview_shadow_end_color +color cardview_shadow_start_color +color checkbox_themeable_attribute_color +color color_1F9BFE +color color_256BFF +color color_323C6F +color color_3E7BFE +color color_4D000000 +color color_4DFFFFFF +color color_66B8BFE8 +color color_8E9DD4 +color color_99000000 +color color_AFB3C7 +color color_B3FFFFFF +color color_E63B4577 +color color_FF2966EC +color color_FFA7B6F0 +color color_white +color design_bottom_navigation_shadow_color +color design_box_stroke_color +color design_dark_default_color_background +color design_dark_default_color_error +color design_dark_default_color_on_background +color design_dark_default_color_on_error +color design_dark_default_color_on_primary +color design_dark_default_color_on_secondary +color design_dark_default_color_on_surface +color design_dark_default_color_primary +color design_dark_default_color_primary_dark +color design_dark_default_color_primary_variant +color design_dark_default_color_secondary +color design_dark_default_color_secondary_variant +color design_dark_default_color_surface +color design_default_color_background +color design_default_color_error +color design_default_color_on_background +color design_default_color_on_error +color design_default_color_on_primary +color design_default_color_on_secondary +color design_default_color_on_surface +color design_default_color_primary +color design_default_color_primary_dark +color design_default_color_primary_variant +color design_default_color_secondary +color design_default_color_secondary_variant +color design_default_color_surface +color design_error +color design_fab_shadow_end_color +color design_fab_shadow_mid_color +color design_fab_shadow_start_color +color design_fab_stroke_end_inner_color +color design_fab_stroke_end_outer_color +color design_fab_stroke_top_inner_color +color design_fab_stroke_top_outer_color +color design_icon_tint +color design_snackbar_background_color +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color error_color_material +color error_color_material_dark +color error_color_material_light +color exo_edit_mode_background_color +color foreground_material_dark +color foreground_material_light +color green +color highlighted_text_material_dark +color highlighted_text_material_light +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_cursor_color +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color material_on_background_disabled +color material_on_background_emphasis_high_type +color material_on_background_emphasis_medium +color material_on_primary_disabled +color material_on_primary_emphasis_high_type +color material_on_primary_emphasis_medium +color material_on_surface_disabled +color material_on_surface_emphasis_high_type +color material_on_surface_emphasis_medium +color material_on_surface_stroke +color material_slider_active_tick_marks_color +color material_slider_active_track_color +color material_slider_halo_color +color material_slider_inactive_tick_marks_color +color material_slider_inactive_track_color +color material_slider_thumb_color +color material_timepicker_button_background +color material_timepicker_button_stroke +color material_timepicker_clock_text_color +color material_timepicker_clockface +color material_timepicker_modebutton_tint +color module_hmi_warning_bg_color +color module_hmi_warning_bg_color_light +color modules_commons_toast_text_color +color mtrl_btn_bg_color_selector +color mtrl_btn_ripple_color +color mtrl_btn_stroke_color_selector +color mtrl_btn_text_btn_bg_color_selector +color mtrl_btn_text_btn_ripple_color +color mtrl_btn_text_color_disabled +color mtrl_btn_text_color_selector +color mtrl_btn_transparent_bg_color +color mtrl_calendar_item_stroke_color +color mtrl_calendar_selected_range +color mtrl_card_view_foreground +color mtrl_card_view_ripple +color mtrl_chip_background_color +color mtrl_chip_close_icon_tint +color mtrl_chip_surface_color +color mtrl_chip_text_color +color mtrl_choice_chip_background_color +color mtrl_choice_chip_ripple_color +color mtrl_choice_chip_text_color +color mtrl_error +color mtrl_fab_bg_color_selector +color mtrl_fab_icon_text_color_selector +color mtrl_fab_ripple_color +color mtrl_filled_background_color +color mtrl_filled_icon_tint +color mtrl_filled_stroke_color +color mtrl_indicator_text_color +color mtrl_navigation_bar_colored_item_tint +color mtrl_navigation_bar_colored_ripple_color +color mtrl_navigation_bar_item_tint +color mtrl_navigation_bar_ripple_color +color mtrl_navigation_item_background_color +color mtrl_navigation_item_icon_tint +color mtrl_navigation_item_text_color +color mtrl_on_primary_text_btn_text_color_selector +color mtrl_on_surface_ripple_color +color mtrl_outlined_icon_tint +color mtrl_outlined_stroke_color +color mtrl_popupmenu_overlay_color +color mtrl_scrim_color +color mtrl_tabs_colored_ripple_color +color mtrl_tabs_icon_color_selector +color mtrl_tabs_icon_color_selector_colored +color mtrl_tabs_legacy_text_color_selector +color mtrl_tabs_ripple_color +color mtrl_text_btn_text_color_selector +color mtrl_textinput_default_box_stroke_color +color mtrl_textinput_disabled_color +color mtrl_textinput_filled_box_default_background_color +color mtrl_textinput_focused_box_stroke_color +color mtrl_textinput_hovered_box_stroke_color +color notification_action_color_filter +color notification_icon_bg_color +color possible_result_points +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color radiobutton_themeable_attribute_color +color result_points +color result_view +color ripple_material_dark +color ripple_material_light +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color style_color +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color test_mtrl_calendar_day +color test_mtrl_calendar_day_selected +color tooltip_background_dark +color tooltip_background_light +color translucent_background +color transparent +color viewfinder_laser +color viewfinder_mask +color white +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_progress_bar_size +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_height_large_material +dimen abc_list_item_height_material +dimen abc_list_item_height_small_material +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_star_big +dimen abc_star_medium +dimen abc_star_small +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen action_bar_size +dimen appcompat_dialog_background_inset +dimen brightness_icon +dimen cardview_compat_inset_shadow +dimen cardview_default_elevation +dimen cardview_default_radius +dimen clock_face_margin_start +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen default_dimension +dimen design_appbar_elevation +dimen design_bottom_navigation_active_item_max_width +dimen design_bottom_navigation_active_item_min_width +dimen design_bottom_navigation_active_text_size +dimen design_bottom_navigation_elevation +dimen design_bottom_navigation_height +dimen design_bottom_navigation_icon_size +dimen design_bottom_navigation_item_max_width +dimen design_bottom_navigation_item_min_width +dimen design_bottom_navigation_label_padding +dimen design_bottom_navigation_margin +dimen design_bottom_navigation_shadow_height +dimen design_bottom_navigation_text_size +dimen design_bottom_sheet_elevation +dimen design_bottom_sheet_modal_elevation +dimen design_bottom_sheet_peek_height_min +dimen design_fab_border_width +dimen design_fab_elevation +dimen design_fab_image_size +dimen design_fab_size_mini +dimen design_fab_size_normal +dimen design_fab_translation_z_hovered_focused +dimen design_fab_translation_z_pressed +dimen design_navigation_elevation +dimen design_navigation_icon_padding +dimen design_navigation_icon_size +dimen design_navigation_item_horizontal_padding +dimen design_navigation_item_icon_padding +dimen design_navigation_max_width +dimen design_navigation_padding_bottom +dimen design_navigation_separator_vertical_padding +dimen design_snackbar_action_inline_max_width +dimen design_snackbar_action_text_color_alpha +dimen design_snackbar_background_corner_radius +dimen design_snackbar_elevation +dimen design_snackbar_extra_spacing_horizontal +dimen design_snackbar_max_width +dimen design_snackbar_min_width +dimen design_snackbar_padding_horizontal +dimen design_snackbar_padding_vertical +dimen design_snackbar_padding_vertical_2lines +dimen design_snackbar_text_size +dimen design_tab_max_width +dimen design_tab_scrollable_min_width +dimen design_tab_text_size +dimen design_tab_text_size_2line +dimen design_textinput_caption_translate_y +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen dp_0 +dimen dp_0_1 +dimen dp_0_5 +dimen dp_1 +dimen dp_10 +dimen dp_100 +dimen dp_1000 +dimen dp_101 +dimen dp_102 +dimen dp_103 +dimen dp_104 +dimen dp_104_5 +dimen dp_105 +dimen dp_106 +dimen dp_107 +dimen dp_108 +dimen dp_109 +dimen dp_11 +dimen dp_110 +dimen dp_1100 +dimen dp_111 +dimen dp_112 +dimen dp_113 +dimen dp_114 +dimen dp_115 +dimen dp_116 +dimen dp_117 +dimen dp_118 +dimen dp_119 +dimen dp_12 +dimen dp_120 +dimen dp_1200 +dimen dp_121 +dimen dp_122 +dimen dp_123 +dimen dp_124 +dimen dp_125 +dimen dp_126 +dimen dp_127 +dimen dp_128 +dimen dp_129 +dimen dp_13 +dimen dp_130 +dimen dp_1300 +dimen dp_131 +dimen dp_132 +dimen dp_133 +dimen dp_134 +dimen dp_134_5 +dimen dp_135 +dimen dp_136 +dimen dp_137 +dimen dp_138 +dimen dp_139 +dimen dp_14 +dimen dp_140 +dimen dp_141 +dimen dp_142 +dimen dp_143 +dimen dp_144 +dimen dp_145 +dimen dp_146 +dimen dp_147 +dimen dp_148 +dimen dp_149 +dimen dp_15 +dimen dp_150 +dimen dp_151 +dimen dp_152 +dimen dp_153 +dimen dp_154 +dimen dp_155 +dimen dp_156 +dimen dp_157 +dimen dp_158 +dimen dp_159 +dimen dp_16 +dimen dp_160 +dimen dp_1600 +dimen dp_161 +dimen dp_162 +dimen dp_163 +dimen dp_164 +dimen dp_165 +dimen dp_166 +dimen dp_167 +dimen dp_168 +dimen dp_169 +dimen dp_17 +dimen dp_170 +dimen dp_171 +dimen dp_172 +dimen dp_173 +dimen dp_174 +dimen dp_175 +dimen dp_176 +dimen dp_177 +dimen dp_178 +dimen dp_179 +dimen dp_18 +dimen dp_180 +dimen dp_181 +dimen dp_182 +dimen dp_183 +dimen dp_184 +dimen dp_185 +dimen dp_186 +dimen dp_187 +dimen dp_188 +dimen dp_189 +dimen dp_19 +dimen dp_190 +dimen dp_191 +dimen dp_191_25 +dimen dp_192 +dimen dp_1920 +dimen dp_193 +dimen dp_194 +dimen dp_195 +dimen dp_196 +dimen dp_197 +dimen dp_198 +dimen dp_199 +dimen dp_1_5 +dimen dp_2 +dimen dp_20 +dimen dp_200 +dimen dp_201 +dimen dp_202 +dimen dp_203 +dimen dp_204 +dimen dp_205 +dimen dp_206 +dimen dp_207 +dimen dp_208 +dimen dp_209 +dimen dp_21 +dimen dp_210 +dimen dp_211 +dimen dp_212 +dimen dp_213 +dimen dp_214 +dimen dp_215 +dimen dp_216 +dimen dp_217 +dimen dp_218 +dimen dp_219 +dimen dp_22 +dimen dp_220 +dimen dp_221 +dimen dp_222 +dimen dp_223 +dimen dp_224 +dimen dp_225 +dimen dp_226 +dimen dp_227 +dimen dp_228 +dimen dp_229 +dimen dp_23 +dimen dp_230 +dimen dp_231 +dimen dp_232 +dimen dp_233 +dimen dp_234 +dimen dp_235 +dimen dp_236 +dimen dp_237 +dimen dp_238 +dimen dp_239 +dimen dp_24 +dimen dp_240 +dimen dp_241 +dimen dp_242 +dimen dp_243 +dimen dp_244 +dimen dp_245 +dimen dp_246 +dimen dp_247 +dimen dp_248 +dimen dp_249 +dimen dp_25 +dimen dp_250 +dimen dp_251 +dimen dp_252 +dimen dp_253 +dimen dp_254 +dimen dp_255 +dimen dp_256 +dimen dp_257 +dimen dp_258 +dimen dp_259 +dimen dp_26 +dimen dp_260 +dimen dp_261 +dimen dp_262 +dimen dp_263 +dimen dp_264 +dimen dp_265 +dimen dp_266 +dimen dp_267 +dimen dp_268 +dimen dp_269 +dimen dp_27 +dimen dp_270 +dimen dp_271 +dimen dp_272 +dimen dp_273 +dimen dp_274 +dimen dp_275 +dimen dp_276 +dimen dp_277 +dimen dp_278 +dimen dp_279 +dimen dp_28 +dimen dp_280 +dimen dp_281 +dimen dp_282 +dimen dp_283 +dimen dp_284 +dimen dp_285 +dimen dp_286 +dimen dp_287 +dimen dp_288 +dimen dp_289 +dimen dp_29 +dimen dp_290 +dimen dp_291 +dimen dp_292 +dimen dp_293 +dimen dp_294 +dimen dp_295 +dimen dp_296 +dimen dp_297 +dimen dp_298 +dimen dp_299 +dimen dp_2_5 +dimen dp_3 +dimen dp_30 +dimen dp_300 +dimen dp_301 +dimen dp_302 +dimen dp_303 +dimen dp_304 +dimen dp_305 +dimen dp_306 +dimen dp_307 +dimen dp_308 +dimen dp_309 +dimen dp_31 +dimen dp_310 +dimen dp_311 +dimen dp_312 +dimen dp_313 +dimen dp_314 +dimen dp_315 +dimen dp_316 +dimen dp_317 +dimen dp_318 +dimen dp_319 +dimen dp_32 +dimen dp_320 +dimen dp_321 +dimen dp_322 +dimen dp_323 +dimen dp_324 +dimen dp_325 +dimen dp_326 +dimen dp_327 +dimen dp_328 +dimen dp_329 +dimen dp_33 +dimen dp_330 +dimen dp_331 +dimen dp_332 +dimen dp_333 +dimen dp_334 +dimen dp_335 +dimen dp_336 +dimen dp_337 +dimen dp_338 +dimen dp_339 +dimen dp_34 +dimen dp_340 +dimen dp_341 +dimen dp_342 +dimen dp_343 +dimen dp_344 +dimen dp_345 +dimen dp_346 +dimen dp_347 +dimen dp_348 +dimen dp_349 +dimen dp_35 +dimen dp_350 +dimen dp_351 +dimen dp_352 +dimen dp_353 +dimen dp_354 +dimen dp_355 +dimen dp_356 +dimen dp_357 +dimen dp_358 +dimen dp_359 +dimen dp_36 +dimen dp_366 +dimen dp_367 +dimen dp_368 +dimen dp_369 +dimen dp_37 +dimen dp_370 +dimen dp_371 +dimen dp_372 +dimen dp_373 +dimen dp_374 +dimen dp_375 +dimen dp_376 +dimen dp_377 +dimen dp_378 +dimen dp_379 +dimen dp_38 +dimen dp_380 +dimen dp_381 +dimen dp_382 +dimen dp_383 +dimen dp_384 +dimen dp_385 +dimen dp_386 +dimen dp_387 +dimen dp_388 +dimen dp_389 +dimen dp_39 +dimen dp_390 +dimen dp_391 +dimen dp_392 +dimen dp_393 +dimen dp_394 +dimen dp_395 +dimen dp_396 +dimen dp_397 +dimen dp_398 +dimen dp_399 +dimen dp_3_5 +dimen dp_4 +dimen dp_40 +dimen dp_400 +dimen dp_401 +dimen dp_402 +dimen dp_403 +dimen dp_404 +dimen dp_405 +dimen dp_406 +dimen dp_407 +dimen dp_408 +dimen dp_409 +dimen dp_41 +dimen dp_410 +dimen dp_411 +dimen dp_412 +dimen dp_413 +dimen dp_414 +dimen dp_415 +dimen dp_416 +dimen dp_417 +dimen dp_418 +dimen dp_419 +dimen dp_42 +dimen dp_420 +dimen dp_421 +dimen dp_422 +dimen dp_423 +dimen dp_424 +dimen dp_425 +dimen dp_426 +dimen dp_427 +dimen dp_428 +dimen dp_429 +dimen dp_43 +dimen dp_430 +dimen dp_431 +dimen dp_432 +dimen dp_433 +dimen dp_434 +dimen dp_435 +dimen dp_436 +dimen dp_437 +dimen dp_438 +dimen dp_439 +dimen dp_44 +dimen dp_440 +dimen dp_441 +dimen dp_442 +dimen dp_443 +dimen dp_444 +dimen dp_445 +dimen dp_446 +dimen dp_447 +dimen dp_448 +dimen dp_449 +dimen dp_45 +dimen dp_450 +dimen dp_451 +dimen dp_452 +dimen dp_453 +dimen dp_454 +dimen dp_455 +dimen dp_456 +dimen dp_457 +dimen dp_458 +dimen dp_459 +dimen dp_46 +dimen dp_460 +dimen dp_461 +dimen dp_462 +dimen dp_463 +dimen dp_464 +dimen dp_465 +dimen dp_466 +dimen dp_467 +dimen dp_468 +dimen dp_469 +dimen dp_47 +dimen dp_470 +dimen dp_471 +dimen dp_472 +dimen dp_473 +dimen dp_474 +dimen dp_475 +dimen dp_476 +dimen dp_477 +dimen dp_478 +dimen dp_479 +dimen dp_48 +dimen dp_480 +dimen dp_481 +dimen dp_482 +dimen dp_483 +dimen dp_484 +dimen dp_485 +dimen dp_486 +dimen dp_487 +dimen dp_488 +dimen dp_489 +dimen dp_49 +dimen dp_490 +dimen dp_491 +dimen dp_492 +dimen dp_493 +dimen dp_494 +dimen dp_495 +dimen dp_496 +dimen dp_497 +dimen dp_498 +dimen dp_499 +dimen dp_4_5 +dimen dp_5 +dimen dp_50 +dimen dp_500 +dimen dp_501 +dimen dp_502 +dimen dp_503 +dimen dp_504 +dimen dp_505 +dimen dp_506 +dimen dp_507 +dimen dp_508 +dimen dp_509 +dimen dp_51 +dimen dp_510 +dimen dp_511 +dimen dp_512 +dimen dp_513 +dimen dp_514 +dimen dp_515 +dimen dp_516 +dimen dp_517 +dimen dp_518 +dimen dp_519 +dimen dp_52 +dimen dp_520 +dimen dp_521 +dimen dp_522 +dimen dp_523 +dimen dp_524 +dimen dp_525 +dimen dp_526 +dimen dp_527 +dimen dp_528 +dimen dp_529 +dimen dp_53 +dimen dp_530 +dimen dp_531 +dimen dp_532 +dimen dp_533 +dimen dp_534 +dimen dp_535 +dimen dp_536 +dimen dp_537 +dimen dp_538 +dimen dp_539 +dimen dp_54 +dimen dp_540 +dimen dp_541 +dimen dp_542 +dimen dp_543 +dimen dp_544 +dimen dp_545 +dimen dp_546 +dimen dp_547 +dimen dp_548 +dimen dp_549 +dimen dp_55 +dimen dp_550 +dimen dp_551 +dimen dp_552 +dimen dp_553 +dimen dp_554 +dimen dp_555 +dimen dp_556 +dimen dp_557 +dimen dp_558 +dimen dp_559 +dimen dp_56 +dimen dp_560 +dimen dp_561 +dimen dp_562 +dimen dp_563 +dimen dp_564 +dimen dp_565 +dimen dp_566 +dimen dp_567 +dimen dp_568 +dimen dp_569 +dimen dp_57 +dimen dp_570 +dimen dp_571 +dimen dp_572 +dimen dp_573 +dimen dp_574 +dimen dp_575 +dimen dp_576 +dimen dp_577 +dimen dp_578 +dimen dp_579 +dimen dp_57_5 +dimen dp_58 +dimen dp_580 +dimen dp_581 +dimen dp_582 +dimen dp_583 +dimen dp_584 +dimen dp_585 +dimen dp_586 +dimen dp_587 +dimen dp_588 +dimen dp_589 +dimen dp_59 +dimen dp_590 +dimen dp_591 +dimen dp_592 +dimen dp_593 +dimen dp_594 +dimen dp_595 +dimen dp_596 +dimen dp_597 +dimen dp_598 +dimen dp_599 +dimen dp_6 +dimen dp_60 +dimen dp_600 +dimen dp_601 +dimen dp_602 +dimen dp_603 +dimen dp_604 +dimen dp_605 +dimen dp_606 +dimen dp_607 +dimen dp_608 +dimen dp_609 +dimen dp_61 +dimen dp_610 +dimen dp_611 +dimen dp_612 +dimen dp_613 +dimen dp_614 +dimen dp_615 +dimen dp_616 +dimen dp_617 +dimen dp_618 +dimen dp_619 +dimen dp_62 +dimen dp_620 +dimen dp_621 +dimen dp_622 +dimen dp_623 +dimen dp_624 +dimen dp_625 +dimen dp_626 +dimen dp_627 +dimen dp_628 +dimen dp_629 +dimen dp_63 +dimen dp_630 +dimen dp_631 +dimen dp_632 +dimen dp_633 +dimen dp_634 +dimen dp_635 +dimen dp_636 +dimen dp_637 +dimen dp_638 +dimen dp_639 +dimen dp_64 +dimen dp_640 +dimen dp_641 +dimen dp_642 +dimen dp_643 +dimen dp_644 +dimen dp_645 +dimen dp_646 +dimen dp_647 +dimen dp_648 +dimen dp_649 +dimen dp_65 +dimen dp_650 +dimen dp_651 +dimen dp_652 +dimen dp_653 +dimen dp_654 +dimen dp_655 +dimen dp_656 +dimen dp_657 +dimen dp_658 +dimen dp_659 +dimen dp_66 +dimen dp_660 +dimen dp_661 +dimen dp_662 +dimen dp_663 +dimen dp_664 +dimen dp_665 +dimen dp_666 +dimen dp_667 +dimen dp_668 +dimen dp_669 +dimen dp_67 +dimen dp_670 +dimen dp_671 +dimen dp_672 +dimen dp_673 +dimen dp_674 +dimen dp_675 +dimen dp_676 +dimen dp_677 +dimen dp_678 +dimen dp_679 +dimen dp_68 +dimen dp_680 +dimen dp_681 +dimen dp_682 +dimen dp_683 +dimen dp_684 +dimen dp_685 +dimen dp_686 +dimen dp_687 +dimen dp_688 +dimen dp_689 +dimen dp_69 +dimen dp_690 +dimen dp_691 +dimen dp_692 +dimen dp_693 +dimen dp_694 +dimen dp_695 +dimen dp_696 +dimen dp_697 +dimen dp_698 +dimen dp_699 +dimen dp_7 +dimen dp_70 +dimen dp_700 +dimen dp_701 +dimen dp_702 +dimen dp_703 +dimen dp_704 +dimen dp_705 +dimen dp_706 +dimen dp_707 +dimen dp_708 +dimen dp_709 +dimen dp_71 +dimen dp_710 +dimen dp_711 +dimen dp_712 +dimen dp_713 +dimen dp_714 +dimen dp_715 +dimen dp_716 +dimen dp_717 +dimen dp_718 +dimen dp_719 +dimen dp_72 +dimen dp_720 +dimen dp_721 +dimen dp_722 +dimen dp_723 +dimen dp_724 +dimen dp_725 +dimen dp_726 +dimen dp_727 +dimen dp_728 +dimen dp_729 +dimen dp_73 +dimen dp_730 +dimen dp_731 +dimen dp_732 +dimen dp_733 +dimen dp_734 +dimen dp_735 +dimen dp_736 +dimen dp_737 +dimen dp_738 +dimen dp_739 +dimen dp_74 +dimen dp_740 +dimen dp_741 +dimen dp_742 +dimen dp_743 +dimen dp_744 +dimen dp_745 +dimen dp_746 +dimen dp_747 +dimen dp_748 +dimen dp_749 +dimen dp_75 +dimen dp_750 +dimen dp_751 +dimen dp_752 +dimen dp_753 +dimen dp_754 +dimen dp_755 +dimen dp_756 +dimen dp_757 +dimen dp_758 +dimen dp_759 +dimen dp_76 +dimen dp_760 +dimen dp_761 +dimen dp_762 +dimen dp_763 +dimen dp_764 +dimen dp_765 +dimen dp_766 +dimen dp_767 +dimen dp_768 +dimen dp_769 +dimen dp_77 +dimen dp_770 +dimen dp_771 +dimen dp_772 +dimen dp_773 +dimen dp_774 +dimen dp_775 +dimen dp_776 +dimen dp_777 +dimen dp_778 +dimen dp_779 +dimen dp_78 +dimen dp_780 +dimen dp_781 +dimen dp_782 +dimen dp_783 +dimen dp_784 +dimen dp_785 +dimen dp_786 +dimen dp_787 +dimen dp_788 +dimen dp_789 +dimen dp_79 +dimen dp_790 +dimen dp_791 +dimen dp_792 +dimen dp_793 +dimen dp_794 +dimen dp_795 +dimen dp_796 +dimen dp_797 +dimen dp_798 +dimen dp_799 +dimen dp_7_5 +dimen dp_8 +dimen dp_80 +dimen dp_800 +dimen dp_801 +dimen dp_802 +dimen dp_803 +dimen dp_804 +dimen dp_805 +dimen dp_806 +dimen dp_807 +dimen dp_808 +dimen dp_809 +dimen dp_81 +dimen dp_810 +dimen dp_811 +dimen dp_812 +dimen dp_813 +dimen dp_814 +dimen dp_815 +dimen dp_816 +dimen dp_817 +dimen dp_818 +dimen dp_819 +dimen dp_82 +dimen dp_820 +dimen dp_821 +dimen dp_822 +dimen dp_823 +dimen dp_824 +dimen dp_825 +dimen dp_826 +dimen dp_827 +dimen dp_828 +dimen dp_829 +dimen dp_83 +dimen dp_830 +dimen dp_831 +dimen dp_832 +dimen dp_833 +dimen dp_834 +dimen dp_835 +dimen dp_836 +dimen dp_837 +dimen dp_838 +dimen dp_839 +dimen dp_84 +dimen dp_840 +dimen dp_841 +dimen dp_842 +dimen dp_843 +dimen dp_844 +dimen dp_845 +dimen dp_846 +dimen dp_847 +dimen dp_848 +dimen dp_849 +dimen dp_85 +dimen dp_850 +dimen dp_851 +dimen dp_852 +dimen dp_853 +dimen dp_854 +dimen dp_855 +dimen dp_856 +dimen dp_857 +dimen dp_858 +dimen dp_859 +dimen dp_86 +dimen dp_860 +dimen dp_861 +dimen dp_862 +dimen dp_863 +dimen dp_864 +dimen dp_865 +dimen dp_866 +dimen dp_867 +dimen dp_868 +dimen dp_869 +dimen dp_87 +dimen dp_870 +dimen dp_871 +dimen dp_872 +dimen dp_873 +dimen dp_874 +dimen dp_875 +dimen dp_876 +dimen dp_877 +dimen dp_878 +dimen dp_879 +dimen dp_88 +dimen dp_880 +dimen dp_881 +dimen dp_882 +dimen dp_883 +dimen dp_884 +dimen dp_885 +dimen dp_886 +dimen dp_887 +dimen dp_888 +dimen dp_889 +dimen dp_89 +dimen dp_890 +dimen dp_891 +dimen dp_892 +dimen dp_893 +dimen dp_894 +dimen dp_895 +dimen dp_896 +dimen dp_897 +dimen dp_898 +dimen dp_899 +dimen dp_9 +dimen dp_90 +dimen dp_900 +dimen dp_901 +dimen dp_902 +dimen dp_903 +dimen dp_904 +dimen dp_905 +dimen dp_906 +dimen dp_907 +dimen dp_908 +dimen dp_909 +dimen dp_91 +dimen dp_910 +dimen dp_911 +dimen dp_912 +dimen dp_913 +dimen dp_914 +dimen dp_915 +dimen dp_916 +dimen dp_917 +dimen dp_918 +dimen dp_919 +dimen dp_92 +dimen dp_920 +dimen dp_921 +dimen dp_922 +dimen dp_923 +dimen dp_924 +dimen dp_925 +dimen dp_926 +dimen dp_927 +dimen dp_928 +dimen dp_929 +dimen dp_93 +dimen dp_930 +dimen dp_931 +dimen dp_932 +dimen dp_933 +dimen dp_934 +dimen dp_935 +dimen dp_936 +dimen dp_937 +dimen dp_938 +dimen dp_939 +dimen dp_94 +dimen dp_940 +dimen dp_941 +dimen dp_942 +dimen dp_943 +dimen dp_944 +dimen dp_945 +dimen dp_946 +dimen dp_947 +dimen dp_948 +dimen dp_949 +dimen dp_95 +dimen dp_950 +dimen dp_951 +dimen dp_952 +dimen dp_953 +dimen dp_954 +dimen dp_955 +dimen dp_956 +dimen dp_957 +dimen dp_958 +dimen dp_959 +dimen dp_96 +dimen dp_960 +dimen dp_961 +dimen dp_962 +dimen dp_963 +dimen dp_964 +dimen dp_965 +dimen dp_966 +dimen dp_967 +dimen dp_968 +dimen dp_969 +dimen dp_97 +dimen dp_970 +dimen dp_971 +dimen dp_972 +dimen dp_973 +dimen dp_974 +dimen dp_975 +dimen dp_976 +dimen dp_977 +dimen dp_978 +dimen dp_979 +dimen dp_98 +dimen dp_980 +dimen dp_981 +dimen dp_982 +dimen dp_983 +dimen dp_984 +dimen dp_985 +dimen dp_986 +dimen dp_987 +dimen dp_988 +dimen dp_989 +dimen dp_99 +dimen dp_990 +dimen dp_991 +dimen dp_992 +dimen dp_993 +dimen dp_994 +dimen dp_995 +dimen dp_996 +dimen dp_997 +dimen dp_998 +dimen dp_999 +dimen dp_m_1 +dimen dp_m_10 +dimen dp_m_12 +dimen dp_m_2 +dimen dp_m_20 +dimen dp_m_30 +dimen dp_m_5 +dimen dp_m_60 +dimen dp_m_8 +dimen exo_media_button_height +dimen exo_media_button_width +dimen fastscroll_default_thickness +dimen fastscroll_margin +dimen fastscroll_minimum_range +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen item_touch_helper_max_drag_scroll_per_frame +dimen item_touch_helper_swipe_escape_max_velocity +dimen item_touch_helper_swipe_escape_velocity +dimen layout_margin_bottom +dimen material_bottom_sheet_max_width +dimen material_clock_display_padding +dimen material_clock_face_margin_top +dimen material_clock_hand_center_dot_radius +dimen material_clock_hand_padding +dimen material_clock_hand_stroke_width +dimen material_clock_number_text_size +dimen material_clock_period_toggle_height +dimen material_clock_period_toggle_margin_left +dimen material_clock_period_toggle_width +dimen material_clock_size +dimen material_cursor_inset_bottom +dimen material_cursor_inset_top +dimen material_cursor_width +dimen material_emphasis_disabled +dimen material_emphasis_high_type +dimen material_emphasis_medium +dimen material_filled_edittext_font_1_3_padding_bottom +dimen material_filled_edittext_font_1_3_padding_top +dimen material_filled_edittext_font_2_0_padding_bottom +dimen material_filled_edittext_font_2_0_padding_top +dimen material_font_1_3_box_collapsed_padding_top +dimen material_font_2_0_box_collapsed_padding_top +dimen material_helper_text_default_padding_top +dimen material_helper_text_font_1_3_padding_horizontal +dimen material_helper_text_font_1_3_padding_top +dimen material_input_text_to_prefix_suffix_padding +dimen material_text_view_test_line_height +dimen material_text_view_test_line_height_override +dimen material_textinput_default_width +dimen material_textinput_max_width +dimen material_textinput_min_width +dimen material_time_picker_minimum_screen_height +dimen material_time_picker_minimum_screen_width +dimen material_timepicker_dialog_buttons_margin_top +dimen module_commons_toast_icon_width +dimen module_commons_toast_marginBottom +dimen module_commons_toast_marginLeft +dimen module_commons_toast_marginRight +dimen module_commons_toast_marginTop +dimen module_commons_toast_maxWidth +dimen module_commons_toast_minWidth +dimen module_commons_toast_space_between_icon_and_msg +dimen module_commons_toast_textSize +dimen module_commons_toast_with_left_drawable_marginBottom +dimen module_commons_toast_with_left_drawable_marginLeft +dimen module_commons_toast_with_left_drawable_marginTop +dimen module_commons_toast_y_offset +dimen module_ext_arcView_center_text_size +dimen module_ext_arcView_des_text_size +dimen module_ext_arcView_height +dimen module_ext_arcView_stroke_with +dimen module_ext_arcView_top +dimen module_ext_arcView_width +dimen module_ext_speed_height +dimen module_ext_speed_padding +dimen module_ext_speed_width +dimen module_ext_speed_width_big_radius +dimen module_ext_speed_width_sm_radius +dimen module_hmi_autopilot_status_bg_big_radius +dimen module_hmi_autopilot_status_bg_sm_radius +dimen module_hmi_btn_size +dimen module_hmi_btn_text_size +dimen module_hmi_check_left +dimen module_hmi_check_size +dimen module_mogo_autopilot_status_bg_height +dimen module_mogo_autopilot_status_bg_width +dimen module_mogo_autopilot_status_icon_margin +dimen module_mogo_autopilot_status_icon_width +dimen module_mogo_autopilot_status_margin_left +dimen module_mogo_autopilot_status_margin_top +dimen module_mogo_autopilot_status_padding +dimen module_mogo_autopilot_status_text_margin_start +dimen module_mogo_autopilot_status_text_size +dimen module_services_empty_tip_marginTop +dimen module_services_empty_tip_textSize +dimen module_services_id_panel_item_avatar_border_width +dimen module_services_id_panel_item_distance_marginLeft +dimen module_services_load_strategy_marginRight +dimen module_services_load_strategy_paddingLeft +dimen module_services_load_strategy_paddingTop +dimen module_services_load_strategy_textSize +dimen module_services_online_car_panel_recycler_view_margin_top +dimen module_services_online_car_panel_title_margin_top +dimen module_services_online_car_panel_title_text_size +dimen module_services_panel_item_avatar_size +dimen module_services_panel_item_corner +dimen module_services_panel_item_detail_bkg_corner +dimen module_services_panel_item_detail_padding +dimen module_services_panel_item_detail_textSize +dimen module_services_panel_item_distance_textSize +dimen module_services_panel_item_marginBottom +dimen module_services_panel_item_nickname_marginLeft +dimen module_services_panel_item_nickname_textSize +dimen module_services_panel_item_padding +dimen module_services_panel_strategy_button_bkg_corner +dimen module_services_panel_strategy_button_marginTop +dimen module_switch_image +dimen module_switch_image_circle +dimen module_switch_map +dimen module_switch_map_height +dimen module_switch_margin_left +dimen module_switch_text_size +dimen module_vip_height +dimen module_vip_margin_left +dimen module_vip_margin_left_bus_passenger +dimen module_vip_margin_left_taxi_passenger +dimen module_vip_margin_top +dimen module_vip_margin_top_passenger +dimen module_vip_width +dimen mtrl_alert_dialog_background_inset_bottom +dimen mtrl_alert_dialog_background_inset_end +dimen mtrl_alert_dialog_background_inset_start +dimen mtrl_alert_dialog_background_inset_top +dimen mtrl_alert_dialog_picker_background_inset +dimen mtrl_badge_horizontal_edge_offset +dimen mtrl_badge_long_text_horizontal_padding +dimen mtrl_badge_radius +dimen mtrl_badge_text_horizontal_edge_offset +dimen mtrl_badge_text_size +dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset +dimen mtrl_badge_toolbar_action_menu_item_vertical_offset +dimen mtrl_badge_with_text_radius +dimen mtrl_bottomappbar_fabOffsetEndMode +dimen mtrl_bottomappbar_fab_bottom_margin +dimen mtrl_bottomappbar_fab_cradle_margin +dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius +dimen mtrl_bottomappbar_fab_cradle_vertical_offset +dimen mtrl_bottomappbar_height +dimen mtrl_btn_corner_radius +dimen mtrl_btn_dialog_btn_min_width +dimen mtrl_btn_disabled_elevation +dimen mtrl_btn_disabled_z +dimen mtrl_btn_elevation +dimen mtrl_btn_focused_z +dimen mtrl_btn_hovered_z +dimen mtrl_btn_icon_btn_padding_left +dimen mtrl_btn_icon_padding +dimen mtrl_btn_inset +dimen mtrl_btn_letter_spacing +dimen mtrl_btn_max_width +dimen mtrl_btn_padding_bottom +dimen mtrl_btn_padding_left +dimen mtrl_btn_padding_right +dimen mtrl_btn_padding_top +dimen mtrl_btn_pressed_z +dimen mtrl_btn_snackbar_margin_horizontal +dimen mtrl_btn_stroke_size +dimen mtrl_btn_text_btn_icon_padding +dimen mtrl_btn_text_btn_padding_left +dimen mtrl_btn_text_btn_padding_right +dimen mtrl_btn_text_size +dimen mtrl_btn_z +dimen mtrl_calendar_action_confirm_button_min_width +dimen mtrl_calendar_action_height +dimen mtrl_calendar_action_padding +dimen mtrl_calendar_bottom_padding +dimen mtrl_calendar_content_padding +dimen mtrl_calendar_day_corner +dimen mtrl_calendar_day_height +dimen mtrl_calendar_day_horizontal_padding +dimen mtrl_calendar_day_today_stroke +dimen mtrl_calendar_day_vertical_padding +dimen mtrl_calendar_day_width +dimen mtrl_calendar_days_of_week_height +dimen mtrl_calendar_dialog_background_inset +dimen mtrl_calendar_header_content_padding +dimen mtrl_calendar_header_content_padding_fullscreen +dimen mtrl_calendar_header_divider_thickness +dimen mtrl_calendar_header_height +dimen mtrl_calendar_header_height_fullscreen +dimen mtrl_calendar_header_selection_line_height +dimen mtrl_calendar_header_text_padding +dimen mtrl_calendar_header_toggle_margin_bottom +dimen mtrl_calendar_header_toggle_margin_top +dimen mtrl_calendar_landscape_header_width +dimen mtrl_calendar_maximum_default_fullscreen_minor_axis +dimen mtrl_calendar_month_horizontal_padding +dimen mtrl_calendar_month_vertical_padding +dimen mtrl_calendar_navigation_bottom_padding +dimen mtrl_calendar_navigation_height +dimen mtrl_calendar_navigation_top_padding +dimen mtrl_calendar_pre_l_text_clip_padding +dimen mtrl_calendar_selection_baseline_to_top_fullscreen +dimen mtrl_calendar_selection_text_baseline_to_bottom +dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +dimen mtrl_calendar_selection_text_baseline_to_top +dimen mtrl_calendar_text_input_padding_top +dimen mtrl_calendar_title_baseline_to_top +dimen mtrl_calendar_title_baseline_to_top_fullscreen +dimen mtrl_calendar_year_corner +dimen mtrl_calendar_year_height +dimen mtrl_calendar_year_horizontal_padding +dimen mtrl_calendar_year_vertical_padding +dimen mtrl_calendar_year_width +dimen mtrl_card_checked_icon_margin +dimen mtrl_card_checked_icon_size +dimen mtrl_card_corner_radius +dimen mtrl_card_dragged_z +dimen mtrl_card_elevation +dimen mtrl_card_spacing +dimen mtrl_chip_pressed_translation_z +dimen mtrl_chip_text_size +dimen mtrl_edittext_rectangle_top_offset +dimen mtrl_exposed_dropdown_menu_popup_elevation +dimen mtrl_exposed_dropdown_menu_popup_vertical_offset +dimen mtrl_exposed_dropdown_menu_popup_vertical_padding +dimen mtrl_extended_fab_bottom_padding +dimen mtrl_extended_fab_corner_radius +dimen mtrl_extended_fab_disabled_elevation +dimen mtrl_extended_fab_disabled_translation_z +dimen mtrl_extended_fab_elevation +dimen mtrl_extended_fab_end_padding +dimen mtrl_extended_fab_end_padding_icon +dimen mtrl_extended_fab_icon_size +dimen mtrl_extended_fab_icon_text_spacing +dimen mtrl_extended_fab_min_height +dimen mtrl_extended_fab_min_width +dimen mtrl_extended_fab_start_padding +dimen mtrl_extended_fab_start_padding_icon +dimen mtrl_extended_fab_top_padding +dimen mtrl_extended_fab_translation_z_base +dimen mtrl_extended_fab_translation_z_hovered_focused +dimen mtrl_extended_fab_translation_z_pressed +dimen mtrl_fab_elevation +dimen mtrl_fab_min_touch_target +dimen mtrl_fab_translation_z_hovered_focused +dimen mtrl_fab_translation_z_pressed +dimen mtrl_high_ripple_default_alpha +dimen mtrl_high_ripple_focused_alpha +dimen mtrl_high_ripple_hovered_alpha +dimen mtrl_high_ripple_pressed_alpha +dimen mtrl_large_touch_target +dimen mtrl_low_ripple_default_alpha +dimen mtrl_low_ripple_focused_alpha +dimen mtrl_low_ripple_hovered_alpha +dimen mtrl_low_ripple_pressed_alpha +dimen mtrl_min_touch_target_size +dimen mtrl_navigation_bar_item_default_icon_size +dimen mtrl_navigation_bar_item_default_margin +dimen mtrl_navigation_elevation +dimen mtrl_navigation_item_horizontal_padding +dimen mtrl_navigation_item_icon_padding +dimen mtrl_navigation_item_icon_size +dimen mtrl_navigation_item_shape_horizontal_margin +dimen mtrl_navigation_item_shape_vertical_margin +dimen mtrl_navigation_rail_active_text_size +dimen mtrl_navigation_rail_compact_width +dimen mtrl_navigation_rail_default_width +dimen mtrl_navigation_rail_elevation +dimen mtrl_navigation_rail_icon_margin +dimen mtrl_navigation_rail_icon_size +dimen mtrl_navigation_rail_margin +dimen mtrl_navigation_rail_text_bottom_margin +dimen mtrl_navigation_rail_text_size +dimen mtrl_progress_circular_inset +dimen mtrl_progress_circular_inset_extra_small +dimen mtrl_progress_circular_inset_medium +dimen mtrl_progress_circular_inset_small +dimen mtrl_progress_circular_radius +dimen mtrl_progress_circular_size +dimen mtrl_progress_circular_size_extra_small +dimen mtrl_progress_circular_size_medium +dimen mtrl_progress_circular_size_small +dimen mtrl_progress_circular_track_thickness_extra_small +dimen mtrl_progress_circular_track_thickness_medium +dimen mtrl_progress_circular_track_thickness_small +dimen mtrl_progress_indicator_full_rounded_corner_radius +dimen mtrl_progress_track_thickness +dimen mtrl_shape_corner_size_large_component +dimen mtrl_shape_corner_size_medium_component +dimen mtrl_shape_corner_size_small_component +dimen mtrl_slider_halo_radius +dimen mtrl_slider_label_padding +dimen mtrl_slider_label_radius +dimen mtrl_slider_label_square_side +dimen mtrl_slider_thumb_elevation +dimen mtrl_slider_thumb_radius +dimen mtrl_slider_track_height +dimen mtrl_slider_track_side_padding +dimen mtrl_slider_track_top +dimen mtrl_slider_widget_height +dimen mtrl_snackbar_action_text_color_alpha +dimen mtrl_snackbar_background_corner_radius +dimen mtrl_snackbar_background_overlay_color_alpha +dimen mtrl_snackbar_margin +dimen mtrl_snackbar_message_margin_horizontal +dimen mtrl_snackbar_padding_horizontal +dimen mtrl_switch_thumb_elevation +dimen mtrl_textinput_box_corner_radius_medium +dimen mtrl_textinput_box_corner_radius_small +dimen mtrl_textinput_box_label_cutout_padding +dimen mtrl_textinput_box_stroke_width_default +dimen mtrl_textinput_box_stroke_width_focused +dimen mtrl_textinput_counter_margin_start +dimen mtrl_textinput_end_icon_margin_start +dimen mtrl_textinput_outline_box_expanded_padding +dimen mtrl_textinput_start_icon_margin_end +dimen mtrl_toolbar_default_height +dimen mtrl_tooltip_arrowSize +dimen mtrl_tooltip_cornerSize +dimen mtrl_tooltip_minHeight +dimen mtrl_tooltip_minWidth +dimen mtrl_tooltip_padding +dimen mtrl_transition_shared_axis_slide_distance +dimen notice_current_time_margin +dimen notice_fullscreen_bt +dimen notice_loading_bt +dimen notice_play_bottom +dimen notice_play_height +dimen notice_play_marginleft +dimen notice_play_marginleft_small +dimen notice_play_marginright +dimen notice_play_marginright_small +dimen notice_seekbar_bottom +dimen notice_seekbar_width +dimen notice_seekbar_width_small +dimen notice_time_bottom +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen seek_bar_image +dimen sp_10 +dimen sp_11 +dimen sp_12 +dimen sp_120 +dimen sp_13 +dimen sp_14 +dimen sp_15 +dimen sp_16 +dimen sp_17 +dimen sp_18 +dimen sp_19 +dimen sp_20 +dimen sp_21 +dimen sp_22 +dimen sp_23 +dimen sp_24 +dimen sp_25 +dimen sp_28 +dimen sp_30 +dimen sp_32 +dimen sp_34 +dimen sp_36 +dimen sp_38 +dimen sp_40 +dimen sp_42 +dimen sp_46 +dimen sp_48 +dimen sp_6 +dimen sp_7 +dimen sp_76 +dimen sp_8 +dimen sp_9 +dimen test_mtrl_calendar_day_cornerSize +dimen test_navigation_bar_active_item_max_width +dimen test_navigation_bar_active_item_min_width +dimen test_navigation_bar_active_text_size +dimen test_navigation_bar_elevation +dimen test_navigation_bar_height +dimen test_navigation_bar_icon_size +dimen test_navigation_bar_item_max_width +dimen test_navigation_bar_item_min_width +dimen test_navigation_bar_label_padding +dimen test_navigation_bar_shadow_height +dimen test_navigation_bar_text_size +dimen time_textsize +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +dimen video_progress_dialog_margin_top +dimen video_volume_dialog_margin_left +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_material_anim +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_material_anim +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_star_black_48dp +drawable abc_star_half_black_48dp +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable ai_collect_selector +drawable ai_collect_title_bg +drawable avd_hide_password +drawable avd_show_password +drawable bad_case_dialog_bg +drawable bad_case_search_bg +drawable bad_case_selector +drawable badcase_radio_button_style +drawable badcase_record_edit_bg +drawable bg_adas_dialog +drawable bg_v2x_event_type_blue +drawable bg_v2x_event_type_orange +drawable bg_v2x_event_type_orange_vr +drawable bg_v2x_event_type_read +drawable bg_v2x_event_type_red_vr +drawable bg_waring_limiting_velocity +drawable bg_waring_traffic_light_vr +drawable bg_warning_bg +drawable bottom_left +drawable bottom_right +drawable btn_checkbox_checked_mtrl +drawable btn_checkbox_checked_to_unchecked_mtrl_animation +drawable btn_checkbox_unchecked_mtrl +drawable btn_checkbox_unchecked_to_checked_mtrl_animation +drawable btn_radio_off_mtrl +drawable btn_radio_off_to_on_mtrl_animation +drawable btn_radio_on_mtrl +drawable btn_radio_on_to_off_mtrl_animation +drawable case_list_normal +drawable case_list_select +drawable case_list_selector +drawable check_error_image +drawable dark_color_close +drawable design_fab_background +drawable design_ic_visibility +drawable design_ic_visibility_off +drawable design_password_eye +drawable design_snackbar_background +drawable empty_drawable +drawable exo_controls_fastforward +drawable exo_controls_next +drawable exo_controls_pause +drawable exo_controls_play +drawable exo_controls_previous +drawable exo_controls_rewind +drawable exo_edit_mode_logo +drawable flex_divider +drawable ic_amap_navi_cursor +drawable ic_clock_black_24dp +drawable ic_keyboard_arrow_left_white_36dp +drawable ic_keyboard_black_24dp +drawable ic_mtrl_checked_circle +drawable ic_mtrl_chip_checked_black +drawable ic_mtrl_chip_checked_circle +drawable ic_mtrl_chip_close_circle +drawable ic_navi_start +drawable ic_navi_target +drawable ic_share_black_24dp +drawable icon_ai_normal +drawable icon_ai_select +drawable icon_ap_badcase_check +drawable icon_ap_badcase_default +drawable icon_audio +drawable icon_audio_bg +drawable icon_autopilot_status +drawable icon_autopilot_status_disabled +drawable icon_bad_case_audio_normal +drawable icon_bad_case_audio_select +drawable icon_bad_case_delect +drawable icon_bad_case_normal +drawable icon_bad_case_search +drawable icon_bad_case_select +drawable icon_cancel_bg +drawable icon_car_red +drawable icon_close_nor +drawable icon_default +drawable icon_default_user_head +drawable icon_dev_status_can_disable +drawable icon_dev_status_can_enable +drawable icon_dev_status_gps_disable +drawable icon_dev_status_gps_enable +drawable icon_dev_status_ipc_disable +drawable icon_dev_status_ipc_enable +drawable icon_dev_status_net_disable +drawable icon_dev_status_net_enable +drawable icon_dev_status_route_enable +drawable icon_dev_status_rtk_error +drawable icon_dev_status_rtk_good +drawable icon_dev_status_rtk_inaccurate +drawable icon_dev_status_rtk_not_credible +drawable icon_dev_status_rtk_unknow +drawable icon_dev_status_slam_good +drawable icon_dev_status_trace_unkown +drawable icon_dev_status_track_enable +drawable icon_dev_status_un_fold +drawable icon_download_guide +drawable icon_expand +drawable icon_map_marker_car_gray +drawable icon_map_marker_car_type_110 +drawable icon_map_marker_car_type_119 +drawable icon_map_marker_car_type_120 +drawable icon_map_marker_car_type_bus +drawable icon_map_marker_car_type_taxi +drawable icon_map_marker_location_yellow +drawable icon_map_marker_location_yellow_vr +drawable icon_map_marker_road_block_up +drawable icon_map_marker_road_block_up2 +drawable icon_map_marker_road_block_up2_white +drawable icon_map_marker_road_check2_white +drawable icon_module_small_map_four_corners +drawable icon_num_bg +drawable icon_small_v2x_road_construction +drawable icon_v2x_marker +drawable icon_waring_traffic_light_green_vr +drawable icon_waring_traffic_light_red_vr +drawable icon_waring_traffic_light_yellow_vr +drawable icon_warning_gas_station +drawable icon_warning_road_hollow +drawable icon_warning_take_over +drawable icon_warning_v2x_abnormal_vehicle +drawable icon_warning_v2x_blind_area_collision +drawable icon_warning_v2x_collision_warning +drawable icon_warning_v2x_congestion +drawable icon_warning_v2x_emergency_brake +drawable icon_warning_v2x_give_way +drawable icon_warning_v2x_hump_bridge +drawable icon_warning_v2x_motobike +drawable icon_warning_v2x_motorcycle_collision +drawable icon_warning_v2x_no_parking +drawable icon_warning_v2x_no_tooting +drawable icon_warning_v2x_optimal_route +drawable icon_warning_v2x_over_speed +drawable icon_warning_v2x_pedestrian_crossing +drawable icon_warning_v2x_reverse_overtaking +drawable icon_warning_v2x_road_construction +drawable icon_warning_v2x_road_dangerous +drawable icon_warning_v2x_roundaboutpng +drawable icon_warning_v2x_school +drawable icon_warning_v2x_special_vehicle_access +drawable icon_warning_v2x_test_section +drawable icon_warning_v2x_traffic_light_gray +drawable icon_warning_v2x_traffic_light_green +drawable icon_warning_v2x_traffic_light_red +drawable icon_warning_v2x_traffic_light_yellow +drawable icon_warning_v2x_traffic_lights_green +drawable icon_warning_v2x_traffic_lights_red +drawable icon_warning_v2x_tramcar +drawable icon_warning_v2x_turn_left_sharp +drawable icon_warning_v2x_turn_right_sharp +drawable icon_warning_v2x_vehicle_control +drawable icon_warning_v2x_vip_turn_light +drawable lock +drawable log_debug_dialog_bg +drawable log_debug_retry_btn_bg +drawable log_debug_start_btn_bg +drawable log_debug_stop_btn_bg +drawable map_api_ic_current_location2 +drawable map_api_ic_current_location2_cursor +drawable map_bus_icon +drawable map_car_icon +drawable material_cursor_drawable +drawable material_ic_calendar_black_24dp +drawable material_ic_clear_black_24dp +drawable material_ic_edit_black_24dp +drawable material_ic_keyboard_arrow_left_black_24dp +drawable material_ic_keyboard_arrow_next_black_24dp +drawable material_ic_keyboard_arrow_previous_black_24dp +drawable material_ic_keyboard_arrow_right_black_24dp +drawable material_ic_menu_arrow_down_black_24dp +drawable material_ic_menu_arrow_up_black_24dp +drawable module_camera_real_time_traffic +drawable module_common_close_selector +drawable module_common_close_selector_vr +drawable module_common_ic_rc_accident3 +drawable module_common_ic_rc_accident3_white +drawable module_common_ic_rc_dark_frog2 +drawable module_common_ic_rc_dark_frog2_white +drawable module_common_ic_rc_freeze2 +drawable module_common_ic_rc_freeze2_white +drawable module_common_ic_rc_illegal_park +drawable module_common_ic_rc_illegal_park_white +drawable module_common_icon_close +drawable module_common_icon_close_press +drawable module_common_icon_close_vr +drawable module_common_icon_map_marker_living +drawable module_common_icon_map_marker_living_white +drawable module_common_icon_map_marker_pondingl2 +drawable module_common_icon_map_marker_pondingl2_white +drawable module_common_icon_map_marker_road_block_off2 +drawable module_common_icon_map_marker_road_block_off2_white +drawable module_common_icon_map_marker_road_block_up2 +drawable module_common_icon_map_marker_road_block_up2_white +drawable module_common_icon_map_marker_road_check2 +drawable module_common_icon_map_marker_road_check2_white +drawable module_common_icon_map_marker_road_work2 +drawable module_common_icon_map_marker_road_work2_white +drawable module_common_icon_seek_help +drawable module_common_selector_call +drawable module_commons_dialog_bg +drawable module_commons_dialog_left_bg +drawable module_commons_dialog_right_bg +drawable module_commons_toast_bkg +drawable module_dw_common_corner_bkg_light +drawable module_ext_check +drawable module_ext_drawable_shadow_bg +drawable module_ext_shadow_bkg +drawable module_ext_shadow_bkg_pressed +drawable module_hmi_autopilot_status_bg +drawable module_hmi_autopilot_status_checked_bg +drawable module_hmi_autopilot_status_disabled_bg +drawable module_hmi_autopilot_status_enable_bg +drawable module_hmi_warning_bkg_bottom +drawable module_hmi_warning_bkg_left +drawable module_hmi_warning_bkg_right +drawable module_hmi_warning_bkg_right_bottom +drawable module_hmi_warning_bkg_right_top +drawable module_hmi_warning_bkg_top +drawable module_services_marker_bkg +drawable module_services_marker_vr_bkg +drawable module_services_marker_vr_bkg_checked +drawable module_small_map_view_border +drawable module_small_map_view_border_north +drawable module_small_map_view_my_location_logo +drawable module_switch_map_angle +drawable module_switch_map_bg +drawable mogo_image_accident_small +drawable mogo_image_daolushigong_nor +drawable mogo_image_daolushigong_small +drawable mogo_image_fenglu_nor +drawable mogo_image_fenglu_small +drawable mogo_image_jiaotongjiancha_nor +drawable mogo_image_jiaotongjiancha_small +drawable mogo_image_jiaotongshigu_nor +drawable mogo_image_jiebing_nor +drawable mogo_image_jiebing_small +drawable mogo_image_jishui_nor +drawable mogo_image_jishui_small +drawable mogo_image_nongwu_nor +drawable mogo_image_nongwu_small +drawable mogo_image_shishilukuang_small +drawable mogo_image_shishlukuang_nor +drawable mogo_image_yongdu_nor +drawable mogo_image_yongdu_small +drawable mtrl_dialog_background +drawable mtrl_dropdown_arrow +drawable mtrl_ic_arrow_drop_down +drawable mtrl_ic_arrow_drop_up +drawable mtrl_ic_cancel +drawable mtrl_ic_error +drawable mtrl_navigation_bar_item_background +drawable mtrl_popupmenu_background +drawable mtrl_popupmenu_background_dark +drawable mtrl_tabs_default_indicator +drawable navigation_empty_icon +drawable notice_banner_default +drawable notice_banner_icon_video +drawable notice_player_ic_circle_nor +drawable notice_seekbar_style +drawable notice_video_after_pause +drawable notice_video_pause +drawable notice_video_play +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable placeholder +drawable report_button_bg +drawable rv_scroll_bar_thumb +drawable rv_scroll_bar_track +drawable save_button_bg +drawable selector_call_btn_normal +drawable selector_call_btn_pressed +drawable shape_size_check_false +drawable shape_size_check_true +drawable template_list_bg +drawable test_custom_background +drawable tooltip_frame_dark +drawable tooltip_frame_light +drawable top_left +drawable unlock +drawable utils_toast_bg +drawable v2x_icon_car_collide_warning +drawable v2x_icon_daolushigong_vr +drawable v2x_icon_fenglu_vr +drawable v2x_icon_jiaotongjiancha_vr +drawable v2x_icon_jiaotongshigu_vr +drawable v2x_icon_jiebing_vr +drawable v2x_icon_jishui_vr +drawable v2x_icon_live_logo +drawable v2x_icon_nongwu_vr +drawable v2x_icon_yongdu_vr +drawable v_to_x_event_ugc_yongdu +drawable v_to_x_marker_1 +drawable v_to_x_marker_11 +drawable v_to_x_marker_16 +drawable v_to_x_marker_2 +drawable v_to_x_marker_3 +drawable v_to_x_marker_5 +drawable v_to_x_marker_6 +drawable v_to_x_marker_7 +drawable v_to_x_marker_8 +drawable v_to_x_marker_9 +drawable v_to_x_warning_car_red +drawable video_back +drawable video_backward_icon +drawable video_brightness_6_white_36dp +drawable video_click_error_selector +drawable video_click_pause_selector +drawable video_click_play_selector +drawable video_dialog_progress +drawable video_dialog_progress_bg +drawable video_enlarge +drawable video_error_normal +drawable video_error_pressed +drawable video_forward_icon +drawable video_jump_btn_bg +drawable video_loading +drawable video_loading_bg +drawable video_pause_normal +drawable video_pause_pressed +drawable video_play_normal +drawable video_play_pressed +drawable video_progress +drawable video_seek_progress +drawable video_seek_thumb +drawable video_seek_thumb_normal +drawable video_seek_thumb_pressed +drawable video_shrink +drawable video_small_close +drawable video_title_bg +drawable video_volume_icon +drawable video_volume_progress_bg +drawable yi_biao_pan_bg_nor +drawable yi_biao_pan_bg_speeding +drawable zxing_scanline +id BOTTOM_END +id BOTTOM_START +id NO_DEBUG +id SHOW_ALL +id SHOW_PATH +id SHOW_PROGRESS +id TOP_END +id TOP_START +id accelerate +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id actionDown +id actionDownUp +id actionUp +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id ad_full_id +id ad_small_id +id ad_time +id add +id alertTitle +id aligned +id allStates +id animateToEnd +id animateToStart +id antiClockwise +id anticipate +id app_video_brightness +id app_video_brightness_box +id app_video_brightness_icon +id arc +id asConfigured +id async +id auto +id autoComplete +id autoCompleteToEnd +id autoCompleteToStart +id back +id backId +id back_tiny +id barrier +id baseline +id bestChoice +id blocking +id bottom +id bottom_progressbar +id bounce +id btnForceClearNotice +id btnRetryFlow +id btnStart +id btnStop +id btn_close_battery_optimizations +id buttonPanel +id cancel_button +id carryVelocity +id caseName +id center +id centerCrop +id centerInside +id chain +id checkbox +id checked +id chip +id chip1 +id chip2 +id chip3 +id chip_group +id chronometer +id circle +id circle_center +id clSearchLayout +id clear_text +id clockwise +id closest +id color +id column +id column_reverse +id confirm_button +id constraint +id container +id content +id contentPanel +id contiguous +id continuousVelocity +id coordinator +id cos +id counterclockwise +id current +id currentState +id custom +id customPanel +id cut +id dash +id date_picker_actions +id decelerate +id decelerateAndComplete +id decor_content_parent +id default_activity_button +id deltaRelative +id design_bottom_sheet +id design_menu_item_action_area +id design_menu_item_action_area_stub +id design_menu_item_text +id design_navigation_view +id dialog_button +id disjoint +id dragAnticlockwise +id dragClockwise +id dragDown +id dragEnd +id dragLeft +id dragRight +id dragStart +id dragUp +id dropdown_menu +id duration_image_tip +id duration_progressbar +id easeIn +id easeInOut +id easeOut +id east +id edit_query +id elastic +id end +id endToStart +id etInitiativeAfterTime +id etInitiativePreTime +id etPassiveAfterTime +id etPassivePreTime +id etSearch +id exo_artwork +id exo_content_frame +id exo_controller_placeholder +id exo_duration +id exo_ffwd +id exo_next +id exo_overlay +id exo_pause +id exo_play +id exo_position +id exo_prev +id exo_progress +id exo_rew +id exo_shutter +id exo_subtitles +id expand_activities_button +id expanded_menu +id fade +id feed_back_badcase_count_down_job +id feed_back_badcase_job +id feed_back_badcase_tag +id feed_back_badcase_taskid_tag +id fill +id filled +id fit +id fitBottomStart +id fitCenter +id fitEnd +id fitStart +id fitXY +id fixed +id fixed_height +id fixed_width +id flReasonLayout +id flex_end +id flex_start +id flip +id floating +id focusCrop +id forever +id fragment_container_view_tag +id frost +id full_id +id fullscreen +id ghost_view +id ghost_view_holder +id glide_custom_view_target_tag +id gone +id group_divider +id guideline +id header_title +id hint_battery +id home +id honorRequest +id horizontal +id horizontal_only +id icon +id icon_group +id ignore +id ignoreRequest +id image +id immediateStop +id included +id info +id invisible +id inward +id italic +id item_list +id item_touch_helper_previous_elevation +id item_video_cover +id iv +id ivConfigClose +id ivRecordTemplate +id ivSearch +id jumpToEnd +id jumpToStart +id jump_ad +id labeled +id layout +id layout_bottom +id layout_top +id left +id leftToRight +id line1 +id line3 +id linear +id listMode +id list_item +id loading +id lock_screen +id masked +id match_constraint +id match_parent +id material_clock_display +id material_clock_face +id material_clock_hand +id material_clock_period_am_button +id material_clock_period_pm_button +id material_clock_period_toggle +id material_hour_text_input +id material_hour_tv +id material_label +id material_minute_text_input +id material_minute_tv +id material_textinput_timepicker +id material_timepicker_cancel_button +id material_timepicker_container +id material_timepicker_edit_text +id material_timepicker_mode_button +id material_timepicker_ok_button +id material_timepicker_view +id material_value_index +id message +id middle +id mini +id module_commons_toast_left_drawable +id module_commons_toast_msg +id month_grid +id month_navigation_bar +id month_navigation_fragment_toggle +id month_navigation_next +id month_navigation_previous +id month_title +id motion_base +id mtrl_anchor_parent +id mtrl_calendar_day_selector_frame +id mtrl_calendar_days_of_week +id mtrl_calendar_frame +id mtrl_calendar_main_pane +id mtrl_calendar_months +id mtrl_calendar_selection_frame +id mtrl_calendar_text_input_frame +id mtrl_calendar_year_selector_frame +id mtrl_card_checked_layer_id +id mtrl_child_content_container +id mtrl_internal_children_alpha_tag +id mtrl_motion_snapshot_view +id mtrl_picker_fullscreen +id mtrl_picker_header +id mtrl_picker_header_selection_text +id mtrl_picker_header_title_and_selection +id mtrl_picker_header_toggle +id mtrl_picker_text_input_date +id mtrl_picker_text_input_range_end +id mtrl_picker_text_input_range_start +id mtrl_picker_title_text +id mtrl_view_tag_bottom_padding +id multiply +id navigation_bar_item_icon_view +id navigation_bar_item_labels_group +id navigation_bar_item_large_label_view +id navigation_bar_item_small_label_view +id navigation_header_container +id neverCompleteToEnd +id neverCompleteToStart +id noId +id noState +id none +id normal +id north +id notification_background +id notification_main_column +id notification_main_column_container +id nowrap +id off +id on +id outline +id outward +id overshoot +id packed +id parallax +id parent +id parentPanel +id parentRelative +id parent_matrix +id password_toggle +id path +id pathId +id pathRelative +id percent +id pin +id position +id postLayout +id preview_layout +id progress +id progress_circular +id progress_horizontal +id radio +id rbAccident +id rbConstruction +id rbDeveloper +id rbFive +id rbFour +id rbLargeCar +id rbNightTraffic +id rbOne +id rbProduct +id rbRain +id rbSafetyOfficer +id rbSix +id rbThree +id rbTrafficLight +id rbTwo +id rbWater +id rectangles +id reverseSawtooth +id right +id rightToLeft +id right_icon +id right_side +id round +id round_rect +id rounded +id row +id row_index_key +id row_reverse +id rtl +id rv +id rvCaseList +id rvTemplate +id rvTopicList +id save_non_transition_alpha +id save_overlay_view +id sawtooth +id scale +id screen +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id scrollable +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id selected +id selection_type +id shape_left_top +id shape_right_top +id sharedValueSet +id sharedValueUnset +id shortcut +id sin +id skipped +id slide +id small_close +id small_id +id smooth +id snackbar_action +id snackbar_text +id south +id space_around +id space_between +id space_evenly +id spacer +id special_effects_controller_view_tag +id spline +id split_action_bar +id spread +id spread_inside +id spring +id square +id src_atop +id src_in +id src_over +id standard +id start +id startHorizontal +id startToEnd +id startVertical +id staticLayout +id staticPostLayout +id stop +id stretch +id submenuarrow +id submit_area +id surface_container +id surface_view +id tabMode +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_click_time +id tag_on_apply_window_listener +id tag_on_receive_content_listener +id tag_on_receive_content_mime_types +id tag_screen_reader_focusable +id tag_state_description +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id tag_window_insets_animation_callback +id test_checkbox_android_button_tint +id test_checkbox_app_button_tint +id test_radiobutton_android_button_tint +id test_radiobutton_app_button_tint +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id text_input_end_icon +id text_input_error_icon +id text_input_start_icon +id textinput_counter +id textinput_error +id textinput_helper_text +id textinput_placeholder +id textinput_prefix_text +id textinput_suffix_text +id texture_view +id thumb +id thumbImage +id time +id title +id titleDividerNoCustom +id titleId +id titleLayoutId +id title_template +id top +id topPanel +id topic_check_box +id total +id touch_outside +id transition_current_scene +id transition_layout_save +id transition_position +id transition_scene_layoutid_cache +id transition_transform +id triangle +id tvAudioCountDown +id tvCancel +id tvCaseListTitle +id tvCaseName +id tvCollectCancel +id tvCollectNum +id tvCollectReport +id tvCollectTime +id tvConfigSave +id tvConfigTitle +id tvIdentityTitle +id tvInitiativeAfter +id tvInitiativeCancel +id tvInitiativeIdentity +id tvInitiativeNum +id tvInitiativePre +id tvInitiativeReport +id tvInitiativeTime +id tvInitiativeTitle +id tvLogDebugTitle +id tvLoggingNotice +id tvPassiveAfter +id tvPassiveCancel +id tvPassiveIdentity +id tvPassiveNum +id tvPassivePre +id tvPassiveReport +id tvPassiveTime +id tvPassiveTitle +id tvRecordTemplate +id tvRecordTitle +id tvSave +id tv_current +id tv_duration +id unchecked +id uniform +id unlabeled +id up +id utvBottomIconView +id utvLeftIconView +id utvRightIconView +id utvTopIconView +id vertical +id vertical_only +id viewAudioBg +id viewAudioButton +id viewCancelDivider +id viewConfigTitleLine +id viewHorizontalLine +id viewVerticalLine +id view_lifecycle_owner +id view_offset_helper +id view_transition +id view_tree_lifecycle_owner +id view_tree_saved_state_registry_owner +id view_tree_view_model_store_owner +id visible +id visible_removing_fragment_view_tag +id volume_progressbar +id west +id widget_container +id withinBounds +id worm +id wrap +id wrap_content +id wrap_content_constrained +id wrap_reverse +id x_left +id x_right +id yesId +id zero_corner_chip +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer app_bar_elevation_anim_duration +integer bottom_sheet_slide_duration +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer design_snackbar_text_max_lines +integer design_tab_indicator_anim_duration_ms +integer hide_password_duration +integer material_motion_duration_long_1 +integer material_motion_duration_long_2 +integer material_motion_duration_medium_1 +integer material_motion_duration_medium_2 +integer material_motion_duration_short_1 +integer material_motion_duration_short_2 +integer material_motion_path +integer mtrl_badge_max_character_count +integer mtrl_btn_anim_delay_ms +integer mtrl_btn_anim_duration_ms +integer mtrl_calendar_header_orientation +integer mtrl_calendar_selection_text_lines +integer mtrl_calendar_year_selector_span +integer mtrl_card_anim_delay_ms +integer mtrl_card_anim_duration_ms +integer mtrl_chip_anim_duration +integer mtrl_tab_indicator_anim_duration_ms +integer show_password_duration +integer status_bar_notification_info_maxnum +interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 +interpolator btn_radio_to_off_mtrl_animation_interpolator_0 +interpolator btn_radio_to_on_mtrl_animation_interpolator_0 +interpolator fast_out_slow_in +interpolator mtrl_fast_out_linear_in +interpolator mtrl_fast_out_slow_in +interpolator mtrl_linear +interpolator mtrl_linear_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout activity_log +layout custom_dialog +layout design_bottom_navigation_item +layout design_bottom_sheet_dialog +layout design_layout_snackbar +layout design_layout_snackbar_include +layout design_layout_tab_icon +layout design_layout_tab_text +layout design_menu_item_action_area +layout design_navigation_item +layout design_navigation_item_header +layout design_navigation_item_separator +layout design_navigation_item_subheader +layout design_navigation_menu +layout design_navigation_menu_item +layout design_text_input_end_icon +layout design_text_input_start_icon +layout dialog_adas_permission_long_background_running +layout dialog_case_list +layout dialog_case_topic_list +layout dialog_log +layout dialog_log_debug +layout exo_playback_control_view +layout exo_simple_player_view +layout item_case_list +layout item_log +layout item_notice_video +layout item_notice_video_small +layout item_record_template +layout item_topic_list +layout item_v2x_crossroad_live_video +layout layout_badcase_config +layout layout_status_bar +layout layout_status_bar_item +layout material_chip_input_combo +layout material_clock_display +layout material_clock_display_divider +layout material_clock_period_toggle +layout material_clock_period_toggle_land +layout material_clockface_textview +layout material_clockface_view +layout material_radial_view_group +layout material_textinput_timepicker +layout material_time_chip +layout material_time_input +layout material_timepicker +layout material_timepicker_dialog +layout material_timepicker_textinput_display +layout module_commons_layout_toast +layout module_commons_layout_toast_with_left_drawable +layout mtrl_alert_dialog +layout mtrl_alert_dialog_actions +layout mtrl_alert_dialog_title +layout mtrl_alert_select_dialog_item +layout mtrl_alert_select_dialog_multichoice +layout mtrl_alert_select_dialog_singlechoice +layout mtrl_calendar_day +layout mtrl_calendar_day_of_week +layout mtrl_calendar_days_of_week +layout mtrl_calendar_horizontal +layout mtrl_calendar_month +layout mtrl_calendar_month_labeled +layout mtrl_calendar_month_navigation +layout mtrl_calendar_months +layout mtrl_calendar_vertical +layout mtrl_calendar_year +layout mtrl_layout_snackbar +layout mtrl_layout_snackbar_include +layout mtrl_navigation_rail_item +layout mtrl_picker_actions +layout mtrl_picker_dialog +layout mtrl_picker_fullscreen +layout mtrl_picker_header_dialog +layout mtrl_picker_header_fullscreen +layout mtrl_picker_header_selection_text +layout mtrl_picker_header_title_text +layout mtrl_picker_header_toggle +layout mtrl_picker_text_input_date +layout mtrl_picker_text_input_date_range +layout notice_video_card_layout +layout notification_action +layout notification_action_tombstone +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_part_chronometer +layout notification_template_part_time +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +layout test_action_chip +layout test_chip_zero_corner_radius +layout test_design_checkbox +layout test_design_radiobutton +layout test_navigation_bar_item_layout +layout test_reflow_chipgroup +layout test_toolbar +layout test_toolbar_custom_background +layout test_toolbar_elevation +layout test_toolbar_surface +layout text_view_with_line_height_from_appearance +layout text_view_with_line_height_from_layout +layout text_view_with_line_height_from_style +layout text_view_with_theme_line_height +layout text_view_without_line_height +layout utils_toast_view +layout video_brightness +layout video_layout_ad +layout video_layout_custom +layout video_layout_normal +layout video_layout_sample_ad +layout video_layout_standard +layout video_progress_dialog +layout video_volume_dialog +layout view_ai_data_collect +layout view_initiative_bad_case +layout view_passive_bad_case +layout wm_logging_notice +plurals mtrl_badge_content_description +raw beep +raw chuzuche +raw fangkuang +raw hq_h9 +raw huanwei +raw jiantou +raw qfpz +raw qipao +raw sanjiaozhui +raw shexiangtou +raw special_vehicle +raw stopline +raw traffic_daba +raw traffic_daba_day +raw traffic_kache +raw traffic_motuoche +raw traffic_motuoche_day +raw traffic_people +raw traffic_people_day +raw traffic_tachexiaoche +raw traffic_tachexiaoche_day +raw traffic_unkonwn +raw traffic_xiankuang +raw traffic_ziche_day +raw traffic_zixingche +raw traffic_zixingche_day +raw v2x_daolujiebing +raw v2x_daolujishui +raw v2x_daolushigong +raw v2x_guzhangqiuzhu +raw v2x_jiaotongjiancha +raw v2x_nongwu +raw v2x_shigong_warning +raw v2x_shigu +raw v2x_shishilukuang +raw v2x_yongdu +raw xiaobache +raw xingren +raw xingren_night +raw ziche +string N_A +string TrackType_audio +string TrackType_metadata +string TrackType_subtitle +string TrackType_timedtext +string TrackType_unknown +string TrackType_video +string VideoView_ar_16_9_fit_parent +string VideoView_ar_4_3_fit_parent +string VideoView_ar_aspect_fill_parent +string VideoView_ar_aspect_fit_parent +string VideoView_ar_aspect_wrap_content +string VideoView_ar_match_parent +string VideoView_error_button +string VideoView_error_text_invalid_progressive_playback +string VideoView_error_text_unknown +string VideoView_info_text_video_not_supported +string VideoView_player_AndroidMediaPlayer +string VideoView_player_IjkExoMediaPlayer +string VideoView_player_IjkMediaPlayer +string VideoView_player_none +string VideoView_render_none +string VideoView_render_surface_view +string VideoView_render_texture_view +string a_cache +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_font_family_body_1_material +string abc_font_family_body_2_material +string abc_font_family_button_material +string abc_font_family_caption_material +string abc_font_family_display_1_material +string abc_font_family_display_2_material +string abc_font_family_display_3_material +string abc_font_family_display_4_material +string abc_font_family_headline_material +string abc_font_family_menu_material +string abc_font_family_subhead_material +string abc_font_family_title_material +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string androidx_startup +string app_name +string appbar_scrolling_view_behavior +string bit_rate +string bottom_sheet_behavior +string bottomsheet_action_expand_halfway +string character_counter_content_description +string character_counter_overflowed_content_description +string character_counter_pattern +string chip_text +string clear_text_end_icon_content_description +string close +string dialog_title +string error_icon_content_description +string exit +string exo_controls_fastforward_description +string exo_controls_next_description +string exo_controls_pause_description +string exo_controls_play_description +string exo_controls_previous_description +string exo_controls_rewind_description +string exo_controls_stop_description +string exposed_dropdown_menu_content_description +string fab_transformation_scrim_behavior +string fab_transformation_sheet_behavior +string file_not_support +string fps +string hide_bottom_view_on_scroll_behavior +string icon_content_description +string ijkplayer_dummy +string item_view_role_description +string jump_ad +string load_cost +string material_clock_display_divider +string material_clock_toggle_content_description +string material_hour_selection +string material_hour_suffix +string material_minute_selection +string material_minute_suffix +string material_motion_easing_accelerated +string material_motion_easing_decelerated +string material_motion_easing_emphasized +string material_motion_easing_linear +string material_motion_easing_standard +string material_slider_range_end +string material_slider_range_start +string material_timepicker_am +string material_timepicker_clock_mode_description +string material_timepicker_hour +string material_timepicker_minute +string material_timepicker_pm +string material_timepicker_select_time +string material_timepicker_text_input_mode_description +string media_information +string mi__selected_audio_track +string mi__selected_subtitle_track +string mi__selected_video_track +string mi_bit_rate +string mi_channels +string mi_codec +string mi_frame_rate +string mi_language +string mi_length +string mi_media +string mi_pixel_format +string mi_player +string mi_profile_level +string mi_resolution +string mi_sample_rate +string mi_stream_fmt1 +string mi_type +string module_map_model_faster +string module_map_model_normal +string mtrl_badge_numberless_content_description +string mtrl_chip_close_icon_content_description +string mtrl_exceed_max_badge_number_content_description +string mtrl_exceed_max_badge_number_suffix +string mtrl_picker_a11y_next_month +string mtrl_picker_a11y_prev_month +string mtrl_picker_announce_current_selection +string mtrl_picker_cancel +string mtrl_picker_confirm +string mtrl_picker_date_header_selected +string mtrl_picker_date_header_title +string mtrl_picker_date_header_unselected +string mtrl_picker_day_of_week_column_header +string mtrl_picker_invalid_format +string mtrl_picker_invalid_format_example +string mtrl_picker_invalid_format_use +string mtrl_picker_invalid_range +string mtrl_picker_navigate_to_year_description +string mtrl_picker_out_of_range +string mtrl_picker_range_header_only_end_selected +string mtrl_picker_range_header_only_start_selected +string mtrl_picker_range_header_selected +string mtrl_picker_range_header_title +string mtrl_picker_range_header_unselected +string mtrl_picker_save +string mtrl_picker_text_input_date_hint +string mtrl_picker_text_input_date_range_end_hint +string mtrl_picker_text_input_date_range_start_hint +string mtrl_picker_text_input_day_abbr +string mtrl_picker_text_input_month_abbr +string mtrl_picker_text_input_year_abbr +string mtrl_picker_toggle_to_calendar_input_mode +string mtrl_picker_toggle_to_day_selection +string mtrl_picker_toggle_to_text_input_mode +string mtrl_picker_toggle_to_year_selection +string no +string no_net +string no_url +string password_toggle_content_description +string path_password_eye +string path_password_eye_mask_strike_through +string path_password_eye_mask_visible +string path_password_strike_through +string recent +string sample +string search_menu_title +string seek_cost +string seek_load_cost +string settings +string show_info +string status_bar_notification_info_overflow +string tcp_speed +string tips_not_wifi +string tips_not_wifi_cancel +string tips_not_wifi_confirm +string toggle_player +string toggle_ratio +string toggle_render +string tracks +string v_cache +string vdec +string yes +style ActivityTranslucent +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style AndroidThemeColorAccentYellow +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Animation_Design_BottomSheetDialog +style Animation_MaterialComponents_BottomSheetDialog +style BaseFloatDialogStyle +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_CardView +style Base_DialogWindowTitleBackground_AppCompat +style Base_DialogWindowTitle_AppCompat +style Base_MaterialAlertDialog_MaterialComponents_Title_Icon +style Base_MaterialAlertDialog_MaterialComponents_Title_Panel +style Base_MaterialAlertDialog_MaterialComponents_Title_Text +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_MaterialComponents_Badge +style Base_TextAppearance_MaterialComponents_Button +style Base_TextAppearance_MaterialComponents_Headline6 +style Base_TextAppearance_MaterialComponents_Subtitle2 +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_ThemeOverlay_MaterialComponents_Dialog +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_Theme_MaterialComponents +style Base_Theme_MaterialComponents_Bridge +style Base_Theme_MaterialComponents_CompactMenu +style Base_Theme_MaterialComponents_Dialog +style Base_Theme_MaterialComponents_DialogWhenLarge +style Base_Theme_MaterialComponents_Dialog_Alert +style Base_Theme_MaterialComponents_Dialog_Bridge +style Base_Theme_MaterialComponents_Dialog_FixedSize +style Base_Theme_MaterialComponents_Dialog_MinWidth +style Base_Theme_MaterialComponents_Light +style Base_Theme_MaterialComponents_Light_Bridge +style Base_Theme_MaterialComponents_Light_DarkActionBar +style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_Theme_MaterialComponents_Light_Dialog +style Base_Theme_MaterialComponents_Light_DialogWhenLarge +style Base_Theme_MaterialComponents_Light_Dialog_Alert +style Base_Theme_MaterialComponents_Light_Dialog_Bridge +style Base_Theme_MaterialComponents_Light_Dialog_FixedSize +style Base_Theme_MaterialComponents_Light_Dialog_MinWidth +style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +style Base_V14_Theme_MaterialComponents +style Base_V14_Theme_MaterialComponents_Bridge +style Base_V14_Theme_MaterialComponents_Dialog +style Base_V14_Theme_MaterialComponents_Dialog_Bridge +style Base_V14_Theme_MaterialComponents_Light +style Base_V14_Theme_MaterialComponents_Light_Bridge +style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_V14_Theme_MaterialComponents_Light_Dialog +style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V21_Theme_MaterialComponents +style Base_V21_Theme_MaterialComponents_Dialog +style Base_V21_Theme_MaterialComponents_Light +style Base_V21_Theme_MaterialComponents_Light_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style Base_Widget_Design_TabLayout +style Base_Widget_MaterialComponents_AutoCompleteTextView +style Base_Widget_MaterialComponents_CheckedTextView +style Base_Widget_MaterialComponents_Chip +style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +style Base_Widget_MaterialComponents_PopupMenu +style Base_Widget_MaterialComponents_PopupMenu_ContextMenu +style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow +style Base_Widget_MaterialComponents_PopupMenu_Overflow +style Base_Widget_MaterialComponents_Slider +style Base_Widget_MaterialComponents_Snackbar +style Base_Widget_MaterialComponents_TextInputEditText +style Base_Widget_MaterialComponents_TextInputLayout +style Base_Widget_MaterialComponents_TextView +style CardView +style CardView_Dark +style CardView_Light +style EmptyTheme +style ExoMediaButton +style ExoMediaButton_FastForward +style ExoMediaButton_Next +style ExoMediaButton_Pause +style ExoMediaButton_Play +style ExoMediaButton_Previous +style ExoMediaButton_Rewind +style MaterialAlertDialog_MaterialComponents +style MaterialAlertDialog_MaterialComponents_Body_Text +style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +style MaterialAlertDialog_MaterialComponents_Title_Icon +style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Panel +style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Text +style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +style PermissionLongBackgroundRunningDialogStyle +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_MaterialComponents +style Platform_MaterialComponents_Dialog +style Platform_MaterialComponents_Light +style Platform_MaterialComponents_Light_Dialog +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style ShapeAppearanceOverlay +style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +style ShapeAppearanceOverlay_BottomRightCut +style ShapeAppearanceOverlay_Cut +style ShapeAppearanceOverlay_DifferentCornerSize +style ShapeAppearanceOverlay_MaterialComponents_BottomSheet +style ShapeAppearanceOverlay_MaterialComponents_Chip +style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +style ShapeAppearanceOverlay_TopLeftCut +style ShapeAppearanceOverlay_TopRightDifferentCornerSize +style ShapeAppearance_MaterialComponents +style ShapeAppearance_MaterialComponents_LargeComponent +style ShapeAppearance_MaterialComponents_MediumComponent +style ShapeAppearance_MaterialComponents_SmallComponent +style ShapeAppearance_MaterialComponents_Test +style ShapeAppearance_MaterialComponents_Tooltip +style TestStyleWithLineHeight +style TestStyleWithLineHeightAppearance +style TestStyleWithThemeLineHeightAttribute +style TestStyleWithoutLineHeight +style TestThemeWithLineHeight +style TestThemeWithLineHeightDisabled +style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style Test_Theme_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar_Day +style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Title +style TextAppearance_Design_CollapsingToolbar_Expanded +style TextAppearance_Design_Counter +style TextAppearance_Design_Counter_Overflow +style TextAppearance_Design_Error +style TextAppearance_Design_HelperText +style TextAppearance_Design_Hint +style TextAppearance_Design_Placeholder +style TextAppearance_Design_Prefix +style TextAppearance_Design_Snackbar_Message +style TextAppearance_Design_Suffix +style TextAppearance_Design_Tab +style TextAppearance_MaterialComponents_Badge +style TextAppearance_MaterialComponents_Body1 +style TextAppearance_MaterialComponents_Body2 +style TextAppearance_MaterialComponents_Button +style TextAppearance_MaterialComponents_Caption +style TextAppearance_MaterialComponents_Chip +style TextAppearance_MaterialComponents_Headline1 +style TextAppearance_MaterialComponents_Headline2 +style TextAppearance_MaterialComponents_Headline3 +style TextAppearance_MaterialComponents_Headline4 +style TextAppearance_MaterialComponents_Headline5 +style TextAppearance_MaterialComponents_Headline6 +style TextAppearance_MaterialComponents_Overline +style TextAppearance_MaterialComponents_Subtitle1 +style TextAppearance_MaterialComponents_Subtitle2 +style TextAppearance_MaterialComponents_TimePicker_Title +style TextAppearance_MaterialComponents_Tooltip +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style ThemeOverlayColorAccentRed +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_DayNight +style ThemeOverlay_AppCompat_DayNight_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style ThemeOverlay_Design_TextInputEditText +style ThemeOverlay_MaterialComponents +style ThemeOverlay_MaterialComponents_ActionBar +style ThemeOverlay_MaterialComponents_ActionBar_Primary +style ThemeOverlay_MaterialComponents_ActionBar_Surface +style ThemeOverlay_MaterialComponents_AutoCompleteTextView +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +style ThemeOverlay_MaterialComponents_BottomAppBar_Primary +style ThemeOverlay_MaterialComponents_BottomAppBar_Surface +style ThemeOverlay_MaterialComponents_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dark +style ThemeOverlay_MaterialComponents_Dark_ActionBar +style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dialog +style ThemeOverlay_MaterialComponents_Dialog_Alert +style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +style ThemeOverlay_MaterialComponents_Light +style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +style ThemeOverlay_MaterialComponents_MaterialAlertDialog +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner +style ThemeOverlay_MaterialComponents_MaterialCalendar +style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +style ThemeOverlay_MaterialComponents_TextInputEditText +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style ThemeOverlay_MaterialComponents_TimePicker +style ThemeOverlay_MaterialComponents_TimePicker_Display +style ThemeOverlay_MaterialComponents_Toolbar_Primary +style ThemeOverlay_MaterialComponents_Toolbar_Surface +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_Empty +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Theme_Design +style Theme_Design_BottomSheetDialog +style Theme_Design_Light +style Theme_Design_Light_BottomSheetDialog +style Theme_Design_Light_NoActionBar +style Theme_Design_NoActionBar +style Theme_MaterialComponents +style Theme_MaterialComponents_BottomSheetDialog +style Theme_MaterialComponents_Bridge +style Theme_MaterialComponents_CompactMenu +style Theme_MaterialComponents_DayNight +style Theme_MaterialComponents_DayNight_BottomSheetDialog +style Theme_MaterialComponents_DayNight_Bridge +style Theme_MaterialComponents_DayNight_DarkActionBar +style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +style Theme_MaterialComponents_DayNight_Dialog +style Theme_MaterialComponents_DayNight_DialogWhenLarge +style Theme_MaterialComponents_DayNight_Dialog_Alert +style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +style Theme_MaterialComponents_DayNight_Dialog_Bridge +style Theme_MaterialComponents_DayNight_Dialog_FixedSize +style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_DayNight_Dialog_MinWidth +style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_DayNight_NoActionBar +style Theme_MaterialComponents_DayNight_NoActionBar_Bridge +style Theme_MaterialComponents_Dialog +style Theme_MaterialComponents_DialogWhenLarge +style Theme_MaterialComponents_Dialog_Alert +style Theme_MaterialComponents_Dialog_Alert_Bridge +style Theme_MaterialComponents_Dialog_Bridge +style Theme_MaterialComponents_Dialog_FixedSize +style Theme_MaterialComponents_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Dialog_MinWidth +style Theme_MaterialComponents_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light +style Theme_MaterialComponents_Light_BarSize +style Theme_MaterialComponents_Light_BottomSheetDialog +style Theme_MaterialComponents_Light_Bridge +style Theme_MaterialComponents_Light_DarkActionBar +style Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Theme_MaterialComponents_Light_Dialog +style Theme_MaterialComponents_Light_DialogWhenLarge +style Theme_MaterialComponents_Light_Dialog_Alert +style Theme_MaterialComponents_Light_Dialog_Alert_Bridge +style Theme_MaterialComponents_Light_Dialog_Bridge +style Theme_MaterialComponents_Light_Dialog_FixedSize +style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Light_Dialog_MinWidth +style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light_LargeTouch +style Theme_MaterialComponents_Light_NoActionBar +style Theme_MaterialComponents_Light_NoActionBar_Bridge +style Theme_MaterialComponents_NoActionBar +style Theme_MaterialComponents_NoActionBar_Bridge +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Design_AppBarLayout +style Widget_Design_BottomNavigationView +style Widget_Design_BottomSheet_Modal +style Widget_Design_CollapsingToolbar +style Widget_Design_FloatingActionButton +style Widget_Design_NavigationView +style Widget_Design_ScrimInsetsFrameLayout +style Widget_Design_Snackbar +style Widget_Design_TabLayout +style Widget_Design_TextInputEditText +style Widget_Design_TextInputLayout +style Widget_MaterialComponents_ActionBar_Primary +style Widget_MaterialComponents_ActionBar_PrimarySurface +style Widget_MaterialComponents_ActionBar_Solid +style Widget_MaterialComponents_ActionBar_Surface +style Widget_MaterialComponents_AppBarLayout_Primary +style Widget_MaterialComponents_AppBarLayout_PrimarySurface +style Widget_MaterialComponents_AppBarLayout_Surface +style Widget_MaterialComponents_AutoCompleteTextView_FilledBox +style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +style Widget_MaterialComponents_Badge +style Widget_MaterialComponents_BottomAppBar +style Widget_MaterialComponents_BottomAppBar_Colored +style Widget_MaterialComponents_BottomAppBar_PrimarySurface +style Widget_MaterialComponents_BottomNavigationView +style Widget_MaterialComponents_BottomNavigationView_Colored +style Widget_MaterialComponents_BottomNavigationView_PrimarySurface +style Widget_MaterialComponents_BottomSheet +style Widget_MaterialComponents_BottomSheet_Modal +style Widget_MaterialComponents_Button +style Widget_MaterialComponents_Button_Icon +style Widget_MaterialComponents_Button_OutlinedButton +style Widget_MaterialComponents_Button_OutlinedButton_Icon +style Widget_MaterialComponents_Button_TextButton +style Widget_MaterialComponents_Button_TextButton_Dialog +style Widget_MaterialComponents_Button_TextButton_Dialog_Flush +style Widget_MaterialComponents_Button_TextButton_Dialog_Icon +style Widget_MaterialComponents_Button_TextButton_Icon +style Widget_MaterialComponents_Button_TextButton_Snackbar +style Widget_MaterialComponents_Button_UnelevatedButton +style Widget_MaterialComponents_Button_UnelevatedButton_Icon +style Widget_MaterialComponents_CardView +style Widget_MaterialComponents_CheckedTextView +style Widget_MaterialComponents_ChipGroup +style Widget_MaterialComponents_Chip_Action +style Widget_MaterialComponents_Chip_Choice +style Widget_MaterialComponents_Chip_Entry +style Widget_MaterialComponents_Chip_Filter +style Widget_MaterialComponents_CircularProgressIndicator +style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall +style Widget_MaterialComponents_CircularProgressIndicator_Medium +style Widget_MaterialComponents_CircularProgressIndicator_Small +style Widget_MaterialComponents_CollapsingToolbar +style Widget_MaterialComponents_CompoundButton_CheckBox +style Widget_MaterialComponents_CompoundButton_RadioButton +style Widget_MaterialComponents_CompoundButton_Switch +style Widget_MaterialComponents_ExtendedFloatingActionButton +style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +style Widget_MaterialComponents_FloatingActionButton +style Widget_MaterialComponents_Light_ActionBar_Solid +style Widget_MaterialComponents_LinearProgressIndicator +style Widget_MaterialComponents_MaterialButtonToggleGroup +style Widget_MaterialComponents_MaterialCalendar +style Widget_MaterialComponents_MaterialCalendar_Day +style Widget_MaterialComponents_MaterialCalendar_DayTextView +style Widget_MaterialComponents_MaterialCalendar_Day_Invalid +style Widget_MaterialComponents_MaterialCalendar_Day_Selected +style Widget_MaterialComponents_MaterialCalendar_Day_Today +style Widget_MaterialComponents_MaterialCalendar_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +style Widget_MaterialComponents_MaterialCalendar_HeaderDivider +style Widget_MaterialComponents_MaterialCalendar_HeaderLayout +style Widget_MaterialComponents_MaterialCalendar_HeaderSelection +style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_HeaderTitle +style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +style Widget_MaterialComponents_MaterialCalendar_Item +style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +style Widget_MaterialComponents_MaterialCalendar_MonthTextView +style Widget_MaterialComponents_MaterialCalendar_Year +style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +style Widget_MaterialComponents_MaterialCalendar_Year_Selected +style Widget_MaterialComponents_MaterialCalendar_Year_Today +style Widget_MaterialComponents_NavigationRailView +style Widget_MaterialComponents_NavigationRailView_Colored +style Widget_MaterialComponents_NavigationRailView_Colored_Compact +style Widget_MaterialComponents_NavigationRailView_Compact +style Widget_MaterialComponents_NavigationRailView_PrimarySurface +style Widget_MaterialComponents_NavigationView +style Widget_MaterialComponents_PopupMenu +style Widget_MaterialComponents_PopupMenu_ContextMenu +style Widget_MaterialComponents_PopupMenu_ListPopupWindow +style Widget_MaterialComponents_PopupMenu_Overflow +style Widget_MaterialComponents_ProgressIndicator +style Widget_MaterialComponents_ShapeableImageView +style Widget_MaterialComponents_Slider +style Widget_MaterialComponents_Snackbar +style Widget_MaterialComponents_Snackbar_FullWidth +style Widget_MaterialComponents_Snackbar_TextView +style Widget_MaterialComponents_TabLayout +style Widget_MaterialComponents_TabLayout_Colored +style Widget_MaterialComponents_TabLayout_PrimarySurface +style Widget_MaterialComponents_TextInputEditText_FilledBox +style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +style Widget_MaterialComponents_TextInputEditText_OutlinedBox +style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextView +style Widget_MaterialComponents_TimePicker +style Widget_MaterialComponents_TimePicker_Button +style Widget_MaterialComponents_TimePicker_Clock +style Widget_MaterialComponents_TimePicker_Display +style Widget_MaterialComponents_TimePicker_Display_TextInputEditText +style Widget_MaterialComponents_TimePicker_ImageButton +style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance +style Widget_MaterialComponents_Toolbar +style Widget_MaterialComponents_Toolbar_Primary +style Widget_MaterialComponents_Toolbar_PrimarySurface +style Widget_MaterialComponents_Toolbar_Surface +style Widget_MaterialComponents_Tooltip +style Widget_Support_CoordinatorLayout +style bad_case_dialog +style rv_vertical_style +style video_popup_toast_anim +style video_style_dialog_progress +style video_vertical_progressBar +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable AnimatedStateListDrawableItem android_drawable android_id +styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId +styleable AppBarLayout android_background android_keyboardNavigationCluster android_touchscreenBlocksFocus elevation expanded liftOnScroll liftOnScrollTargetViewId statusBarForeground +styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted +styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale +styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable AspectRatioFrameLayout resize_mode +styleable AutoScannerView btmText btmTextSize maskColor scanline showRectLine topText topTextSize triAngleColor triAngleLength triAngleWidth +styleable Badge backgroundColor badgeGravity badgeTextColor horizontalOffset maxCharacterCount number verticalOffset +styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness +styleable BottomAppBar backgroundTint elevation fabAlignmentMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets +styleable BottomNavigationView itemHorizontalTranslationEnabled +styleable BottomSheetBehavior_Layout android_elevation android_maxWidth backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_skipCollapsed gestureInsetBottomIgnored paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets shapeAppearance shapeAppearanceOverlay +styleable ButtonBarLayout allowStacking +styleable CardView android_minHeight android_minWidth cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop +styleable Carousel carousel_backwardTransition carousel_emptyViewsBehavior carousel_firstView carousel_forwardTransition carousel_infinite carousel_nextState carousel_previousState carousel_touchUpMode carousel_touchUp_dampeningFactor carousel_touchUp_velocityThreshold +styleable Chip android_checkable android_ellipsize android_maxWidth android_text android_textAppearance android_textColor android_textSize checkedIcon checkedIconEnabled checkedIconTint checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipMinTouchTargetSize chipStartPadding chipStrokeColor chipStrokeWidth chipSurfaceColor closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible ensureMinTouchTargetSize hideMotionSpec iconEndPadding iconStartPadding rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec textEndPadding textStartPadding +styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical selectionRequired singleLine singleSelection +styleable CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize +styleable ClockFaceView clockFaceBackgroundColor clockNumberTextColor +styleable ClockHandView clockHandColor materialCircleRadius selectorSize +styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance extraMultilineHeightEnabled forceApplySystemWindowInsetTop maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleCollapseMode titleEnabled toolbarId +styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier +styleable ColorStateListItem alpha android_alpha android_color +styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode +styleable Constraint android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode +styleable ConstraintLayout_Layout android_elevation android_layout_height android_layout_margin android_layout_marginBottom android_layout_marginEnd android_layout_marginHorizontal android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_marginVertical android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_padding android_paddingBottom android_paddingEnd android_paddingLeft android_paddingRight android_paddingStart android_paddingTop android_visibility barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl circularflow_angles circularflow_defaultAngle circularflow_defaultRadius circularflow_radiusInDP circularflow_viewCenter constraintSet constraint_referenced_ids constraint_referenced_tags flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layoutDescription layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_optimizationLevel layout_wrapBehaviorInParent +styleable ConstraintLayout_ReactiveGuide reactiveGuide_animateChange reactiveGuide_applyToAllConstraintSets reactiveGuide_applyToConstraintSet reactiveGuide_valueId +styleable ConstraintLayout_placeholder content placeholder_emptyVisibility +styleable ConstraintOverride android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBottom_creator layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintRight_creator layout_constraintTag layout_constraintTop_creator layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger motionTarget pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode +styleable ConstraintSet ConstraintRotate android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_pivotX android_pivotY android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags deriveConstraintsFrom drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionSteps transitionEasing transitionPathRotate +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable CustomAttribute attributeName customBoolean customColorDrawableValue customColorValue customDimension customFloatValue customIntegerValue customPixelDimension customReference customStringValue methodName +styleable CustomCircleImageView civ_border_color civ_border_overlay civ_border_width civ_fill_color +styleable DefaultTimeBar ad_marker_color ad_marker_width bar_height buffered_color played_color scrubber_color scrubber_disabled_size scrubber_dragged_size scrubber_enabled_size touch_target_height unplayed_color +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec hideMotionSpec showMotionSpec shrinkMotionSpec +styleable ExtendedFloatingActionButton_Behavior_Layout behavior_autoHide behavior_autoShrink +styleable FlexboxLayout alignContent alignItems dividerDrawable dividerDrawableHorizontal dividerDrawableVertical flexDirection flexWrap justifyContent maxLine showDivider showDividerHorizontal showDividerVertical +styleable FlexboxLayout_Layout layout_alignSelf layout_flexBasisPercent layout_flexGrow layout_flexShrink layout_maxHeight layout_maxWidth layout_minHeight layout_minWidth layout_order layout_wrapBefore +styleable FloatingActionButton android_enabled backgroundTint backgroundTintMode borderWidth elevation ensureMinTouchTargetSize fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec useCompatPadding +styleable FloatingActionButton_Behavior_Layout behavior_autoHide +styleable FlowLayout itemSpacing lineSpacing +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily +styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex +styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding +styleable Fragment android_id android_name android_tag +styleable FragmentContainerView android_name android_tag +styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type +styleable GradientColorItem android_color android_offset +styleable ImageFilterView altSrc blendSrc brightness contrast crossfade imagePanX imagePanY imageRotate imageZoom overlay round roundPercent saturation warmth +styleable IndicatorView vpi_orientation vpi_rtl vpi_slide_mode vpi_slider_checked_color vpi_slider_normal_color vpi_slider_radius vpi_style +styleable Insets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets +styleable KeyAttribute android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transformPivotTarget transitionEasing transitionPathRotate +styleable KeyCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveOffset wavePeriod wavePhase waveShape waveVariesBy +styleable KeyFrame +styleable KeyFramesAcceleration +styleable KeyFramesVelocity +styleable KeyPosition curveFit drawPath framePosition keyPositionType motionTarget pathMotionArc percentHeight percentWidth percentX percentY sizePercent transitionEasing +styleable KeyTimeCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveDecay waveOffset wavePeriod wavePhase waveShape +styleable KeyTrigger framePosition motionTarget motion_postLayoutCollision motion_triggerOnCollision onCross onNegativeCross onPositiveCross triggerId triggerReceiver triggerSlack viewTransitionOnCross viewTransitionOnNegativeCross viewTransitionOnPositiveCross +styleable Layout android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_orientation barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent maxHeight maxWidth minHeight minWidth +styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width +styleable LinearProgressIndicator indeterminateAnimationType indicatorDirectionLinear +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop +styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAlertDialogTheme materialAlertDialogTitleIconStyle materialAlertDialogTitlePanelStyle materialAlertDialogTitleTextStyle +styleable MaterialAutoCompleteTextView android_inputType +styleable MaterialButton android_background android_checkable android_insetBottom android_insetLeft android_insetRight android_insetTop backgroundTint backgroundTintMode cornerRadius elevation icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth +styleable MaterialButtonToggleGroup checkedButton selectionRequired singleSelection +styleable MaterialCalendar android_windowFullscreen dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle nestedScrollable rangeFillColor yearSelectedStyle yearStyle yearTodayStyle +styleable MaterialCalendarItem android_insetBottom android_insetLeft android_insetRight android_insetTop itemFillColor itemShapeAppearance itemShapeAppearanceOverlay itemStrokeColor itemStrokeWidth itemTextColor +styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth +styleable MaterialCheckBox buttonTint useMaterialThemeColors +styleable MaterialRadioButton buttonTint useMaterialThemeColors +styleable MaterialShape shapeAppearance shapeAppearanceOverlay +styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight +styleable MaterialTextView android_lineHeight android_textAppearance lineHeight +styleable MaterialTimePicker clockIcon keyboardIcon +styleable MaterialToolbar navigationIconTint subtitleCentered titleCentered +styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible +styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow +styleable MockView mock_diagonalsColor mock_label mock_labelBackgroundColor mock_labelColor mock_showDiagonals mock_showLabel +styleable MogoImageView miv_blurRadius miv_borderColor miv_bottomLeftRadius miv_bottomRightRadius miv_failureHolder miv_isBlur miv_overlayImageId miv_placeHolder miv_radius miv_shape miv_shapeBorderWidth miv_topLeftRadius miv_topRightRadius +styleable Motion animateCircleAngleTo animateRelativeTo animate_relativeTo drawPath motionPathRotate motionStagger pathMotionArc quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transitionEasing +styleable MotionEffect motionEffect_alpha motionEffect_end motionEffect_move motionEffect_start motionEffect_strict motionEffect_translationX motionEffect_translationY motionEffect_viewTransition +styleable MotionHelper onHide onShow +styleable MotionLabel android_autoSizeTextType android_fontFamily android_gravity android_shadowRadius android_text android_textColor android_textSize android_textStyle android_typeface borderRound borderRoundPercent scaleFromTextSize textBackground textBackgroundPanX textBackgroundPanY textBackgroundRotate textBackgroundZoom textOutlineColor textOutlineThickness textPanX textPanY textureBlurFactor textureEffect textureHeight textureWidth +styleable MotionLayout applyMotionScene currentState layoutDescription motionDebug motionProgress showPaths +styleable MotionScene defaultDuration layoutDuringTransition +styleable MotionTelltales telltales_tailColor telltales_tailScale telltales_velocityMode +styleable NavigationBarView backgroundTint elevation itemBackground itemIconSize itemIconTint itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu +styleable NavigationRailView headerLayout menuGravity +styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextColor menu shapeAppearance shapeAppearanceOverlay +styleable OnClick clickAction targetId +styleable OnSwipe autoCompleteMode dragDirection dragScale dragThreshold limitBoundsTo maxAcceleration maxVelocity moveWhenScrollAtTop nestedScrollFlags onTouchUp rotationCenterId springBoundary springDamping springMass springStiffness springStopThreshold touchAnchorId touchAnchorSide touchRegionId +styleable PlaybackControlView controller_layout_id fastforward_increment rewind_increment show_timeout +styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable PropertySet android_alpha android_visibility layout_constraintTag motionProgress visibilityMode +styleable RadialViewGroup materialCircleRadius +styleable RangeSlider minSeparation values +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable RecyclerView android_clipToPadding android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd +styleable RoundLayout roundLayoutRadius +styleable Scale disappearedScale +styleable ScrimInsetsFrameLayout insetForeground +styleable ScrollingViewBehavior_Layout behavior_overlapTop +styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable ShapeAppearance cornerFamily cornerFamilyBottomLeft cornerFamilyBottomRight cornerFamilyTopLeft cornerFamilyTopRight cornerSize cornerSizeBottomLeft cornerSizeBottomRight cornerSizeTopLeft cornerSizeTopRight +styleable ShapeableImageView contentPadding contentPaddingBottom contentPaddingEnd contentPaddingLeft contentPaddingRight contentPaddingStart contentPaddingTop shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth +styleable SimpleDraweeView actualImageResource actualImageScaleType actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable SimpleExoPlayerView controller_layout_id default_artwork fastforward_increment hide_on_touch player_layout_id resize_mode rewind_increment show_timeout surface_type use_artwork use_controller +styleable Slider android_enabled android_stepSize android_value android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle thumbColor thumbElevation thumbRadius thumbStrokeColor thumbStrokeWidth tickColor tickColorActive tickColorInactive tickVisible trackColor trackColorActive trackColorInactive trackHeight +styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle +styleable SnackbarLayout actionTextColorAlpha android_maxWidth animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth +styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme +styleable State android_id constraints +styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable StateListDrawableItem android_drawable +styleable StateSet defaultState +styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable SwitchMaterial useMaterialThemeColors +styleable TabItem android_icon android_layout android_text +styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorAnimationMode tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple +styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale +styleable TextEffects android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_text android_textSize android_textStyle android_typeface borderRound borderRoundPercent textFillColor textOutlineColor textOutlineThickness +styleable TextInputEditText textInputLayoutFocusedRectEnabled +styleable TextInputLayout android_enabled android_hint android_maxWidth android_minWidth android_textColorHint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor endIconCheckable endIconContentDescription endIconDrawable endIconMode endIconTint endIconTintMode errorContentDescription errorEnabled errorIconDrawable errorIconTint errorIconTintMode errorTextAppearance errorTextColor expandedHintEnabled helperText helperTextEnabled helperTextTextAppearance helperTextTextColor hintAnimationEnabled hintEnabled hintTextAppearance hintTextColor passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode placeholderText placeholderTextAppearance placeholderTextColor prefixText prefixTextAppearance prefixTextColor shapeAppearance shapeAppearanceOverlay startIconCheckable startIconContentDescription startIconDrawable startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor +styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable Tooltip android_layout_margin android_minHeight android_minWidth android_padding android_text android_textAppearance backgroundTint +styleable Transform android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ transformPivotTarget +styleable Transition android_id autoTransition constraintSetEnd constraintSetStart duration layoutDuringTransition motionInterpolator pathMotionArc staggered transitionDisable transitionFlags +styleable Variant constraints region_heightLessThan region_heightMoreThan region_widthLessThan region_widthMoreThan +styleable View android_focusable android_theme paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewPager2 android_orientation +styleable ViewStubCompat android_id android_inflatedId android_layout +styleable ViewTransition SharedValue SharedValueId android_id clearsTag duration ifTagNotSet ifTagSet motionInterpolator motionTarget onStateTransition pathMotionArc setsTag transitionDisable upDuration viewTransitionMode +styleable download download_bg_line_color download_bg_line_width download_line_color download_line_width download_text_color download_text_size +styleable include constraintSet +styleable play play_bg_line_color play_bg_line_width play_line_color play_line_width +xml standalone_badge +xml standalone_badge_gravity_bottom_end +xml standalone_badge_gravity_bottom_start +xml standalone_badge_gravity_top_start +xml standalone_badge_offset +xml util_code_provider_paths diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/runtime_library_classes/debug/classes.jar b/core/function-impl/mogo-core-function-devatools/build/intermediates/runtime_library_classes/debug/classes.jar new file mode 100644 index 0000000000..efc1b4f360 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/intermediates/runtime_library_classes/debug/classes.jar differ diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/sourceFolderJavaResources/debug/badcase.proto b/core/function-impl/mogo-core-function-devatools/build/intermediates/sourceFolderJavaResources/debug/badcase.proto new file mode 100644 index 0000000000..d3b6edaf65 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/sourceFolderJavaResources/debug/badcase.proto @@ -0,0 +1,20 @@ +syntax = "proto3"; + +option java_multiple_files = true; +option java_package = "com.zhjt.mogo_core_function_devatools.badcase.generated"; +option java_outer_classname = "BadCausesProto"; + +message BadCauses { + int64 lastModified = 1; + repeated Cause drivenData = 2 ; //被动触发BadCase数据 + int32 taskId = 3; + repeated Cause drivingData = 4; //主动触发BadCase数据 +} + +message Cause { + string id = 1; + string reason = 2; + string channel = 3; +} + + diff --git a/core/function-impl/mogo-core-function-devatools/build/intermediates/symbols/debug/R.txt b/core/function-impl/mogo-core-function-devatools/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000..c060b8774a --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,7234 @@ +int anim abc_fade_in 0x7f010001 +int anim abc_fade_out 0x7f010002 +int anim abc_grow_fade_in_from_bottom 0x7f010003 +int anim abc_popup_enter 0x7f010004 +int anim abc_popup_exit 0x7f010005 +int anim abc_shrink_fade_out_from_bottom 0x7f010006 +int anim abc_slide_in_bottom 0x7f010007 +int anim abc_slide_in_top 0x7f010008 +int anim abc_slide_out_bottom 0x7f010009 +int anim abc_slide_out_top 0x7f01000a +int anim abc_tooltip_enter 0x7f01000b +int anim abc_tooltip_exit 0x7f01000c +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018 +int anim design_bottom_sheet_slide_in 0x7f010019 +int anim design_bottom_sheet_slide_out 0x7f01001a +int anim design_snackbar_in 0x7f01001b +int anim design_snackbar_out 0x7f01001c +int anim fragment_fast_out_extra_slow_in 0x7f01001d +int anim mtrl_bottom_sheet_slide_in 0x7f01001e +int anim mtrl_bottom_sheet_slide_out 0x7f01001f +int anim mtrl_card_lowers_interpolator 0x7f010020 +int animator design_appbar_state_list_animator 0x7f020001 +int animator design_fab_hide_motion_spec 0x7f020002 +int animator design_fab_show_motion_spec 0x7f020003 +int animator fragment_close_enter 0x7f020004 +int animator fragment_close_exit 0x7f020005 +int animator fragment_fade_enter 0x7f020006 +int animator fragment_fade_exit 0x7f020007 +int animator fragment_open_enter 0x7f020008 +int animator fragment_open_exit 0x7f020009 +int animator linear_indeterminate_line1_head_interpolator 0x7f02000a +int animator linear_indeterminate_line1_tail_interpolator 0x7f02000b +int animator linear_indeterminate_line2_head_interpolator 0x7f02000c +int animator linear_indeterminate_line2_tail_interpolator 0x7f02000d +int animator mtrl_btn_state_list_anim 0x7f02000e +int animator mtrl_btn_unelevated_state_list_anim 0x7f02000f +int animator mtrl_card_state_list_anim 0x7f020010 +int animator mtrl_chip_state_list_anim 0x7f020011 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020012 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f020013 +int animator mtrl_extended_fab_hide_motion_spec 0x7f020014 +int animator mtrl_extended_fab_show_motion_spec 0x7f020015 +int animator mtrl_extended_fab_state_list_animator 0x7f020016 +int animator mtrl_fab_hide_motion_spec 0x7f020017 +int animator mtrl_fab_show_motion_spec 0x7f020018 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020019 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f02001a +int attr ConstraintRotate 0x7f040001 +int attr SharedValue 0x7f040002 +int attr SharedValueId 0x7f040003 +int attr actionBarDivider 0x7f040004 +int attr actionBarItemBackground 0x7f040005 +int attr actionBarPopupTheme 0x7f040006 +int attr actionBarSize 0x7f040007 +int attr actionBarSplitStyle 0x7f040008 +int attr actionBarStyle 0x7f040009 +int attr actionBarTabBarStyle 0x7f04000a +int attr actionBarTabStyle 0x7f04000b +int attr actionBarTabTextStyle 0x7f04000c +int attr actionBarTheme 0x7f04000d +int attr actionBarWidgetTheme 0x7f04000e +int attr actionButtonStyle 0x7f04000f +int attr actionDropDownStyle 0x7f040010 +int attr actionLayout 0x7f040011 +int attr actionMenuTextAppearance 0x7f040012 +int attr actionMenuTextColor 0x7f040013 +int attr actionModeBackground 0x7f040014 +int attr actionModeCloseButtonStyle 0x7f040015 +int attr actionModeCloseContentDescription 0x7f040016 +int attr actionModeCloseDrawable 0x7f040017 +int attr actionModeCopyDrawable 0x7f040018 +int attr actionModeCutDrawable 0x7f040019 +int attr actionModeFindDrawable 0x7f04001a +int attr actionModePasteDrawable 0x7f04001b +int attr actionModePopupWindowStyle 0x7f04001c +int attr actionModeSelectAllDrawable 0x7f04001d +int attr actionModeShareDrawable 0x7f04001e +int attr actionModeSplitBackground 0x7f04001f +int attr actionModeStyle 0x7f040020 +int attr actionModeTheme 0x7f040021 +int attr actionModeWebSearchDrawable 0x7f040022 +int attr actionOverflowButtonStyle 0x7f040023 +int attr actionOverflowMenuStyle 0x7f040024 +int attr actionProviderClass 0x7f040025 +int attr actionTextColorAlpha 0x7f040026 +int attr actionViewClass 0x7f040027 +int attr activityChooserViewStyle 0x7f040028 +int attr actualImageResource 0x7f040029 +int attr actualImageScaleType 0x7f04002a +int attr actualImageUri 0x7f04002b +int attr ad_marker_color 0x7f04002c +int attr ad_marker_width 0x7f04002d +int attr alertDialogButtonGroupStyle 0x7f04002e +int attr alertDialogCenterButtons 0x7f04002f +int attr alertDialogStyle 0x7f040030 +int attr alertDialogTheme 0x7f040031 +int attr alignContent 0x7f040032 +int attr alignItems 0x7f040033 +int attr allowStacking 0x7f040034 +int attr alpha 0x7f040035 +int attr alphabeticModifiers 0x7f040036 +int attr altSrc 0x7f040037 +int attr animateCircleAngleTo 0x7f040038 +int attr animateRelativeTo 0x7f040039 +int attr animate_relativeTo 0x7f04003a +int attr animationMode 0x7f04003b +int attr appBarLayoutStyle 0x7f04003c +int attr applyMotionScene 0x7f04003d +int attr arcMode 0x7f04003e +int attr arrowHeadLength 0x7f04003f +int attr arrowShaftLength 0x7f040040 +int attr attributeName 0x7f040041 +int attr autoCompleteMode 0x7f040042 +int attr autoCompleteTextViewStyle 0x7f040043 +int attr autoSizeMaxTextSize 0x7f040044 +int attr autoSizeMinTextSize 0x7f040045 +int attr autoSizePresetSizes 0x7f040046 +int attr autoSizeStepGranularity 0x7f040047 +int attr autoSizeTextType 0x7f040048 +int attr autoTransition 0x7f040049 +int attr background 0x7f04004a +int attr backgroundColor 0x7f04004b +int attr backgroundImage 0x7f04004c +int attr backgroundInsetBottom 0x7f04004d +int attr backgroundInsetEnd 0x7f04004e +int attr backgroundInsetStart 0x7f04004f +int attr backgroundInsetTop 0x7f040050 +int attr backgroundOverlayColorAlpha 0x7f040051 +int attr backgroundSplit 0x7f040052 +int attr backgroundStacked 0x7f040053 +int attr backgroundTint 0x7f040054 +int attr backgroundTintMode 0x7f040055 +int attr badgeGravity 0x7f040056 +int attr badgeStyle 0x7f040057 +int attr badgeTextColor 0x7f040058 +int attr barLength 0x7f040059 +int attr bar_height 0x7f04005a +int attr barrierAllowsGoneWidgets 0x7f04005b +int attr barrierDirection 0x7f04005c +int attr barrierMargin 0x7f04005d +int attr behavior_autoHide 0x7f04005e +int attr behavior_autoShrink 0x7f04005f +int attr behavior_draggable 0x7f040060 +int attr behavior_expandedOffset 0x7f040061 +int attr behavior_fitToContents 0x7f040062 +int attr behavior_halfExpandedRatio 0x7f040063 +int attr behavior_hideable 0x7f040064 +int attr behavior_overlapTop 0x7f040065 +int attr behavior_peekHeight 0x7f040066 +int attr behavior_saveFlags 0x7f040067 +int attr behavior_skipCollapsed 0x7f040068 +int attr blendSrc 0x7f040069 +int attr borderRound 0x7f04006a +int attr borderRoundPercent 0x7f04006b +int attr borderWidth 0x7f04006c +int attr borderlessButtonStyle 0x7f04006d +int attr bottomAppBarStyle 0x7f04006e +int attr bottomNavigationStyle 0x7f04006f +int attr bottomSheetDialogTheme 0x7f040070 +int attr bottomSheetStyle 0x7f040071 +int attr boxBackgroundColor 0x7f040072 +int attr boxBackgroundMode 0x7f040073 +int attr boxCollapsedPaddingTop 0x7f040074 +int attr boxCornerRadiusBottomEnd 0x7f040075 +int attr boxCornerRadiusBottomStart 0x7f040076 +int attr boxCornerRadiusTopEnd 0x7f040077 +int attr boxCornerRadiusTopStart 0x7f040078 +int attr boxStrokeColor 0x7f040079 +int attr boxStrokeErrorColor 0x7f04007a +int attr boxStrokeWidth 0x7f04007b +int attr boxStrokeWidthFocused 0x7f04007c +int attr brightness 0x7f04007d +int attr btmText 0x7f04007e +int attr btmTextSize 0x7f04007f +int attr buffered_color 0x7f040080 +int attr buttonBarButtonStyle 0x7f040081 +int attr buttonBarNegativeButtonStyle 0x7f040082 +int attr buttonBarNeutralButtonStyle 0x7f040083 +int attr buttonBarPositiveButtonStyle 0x7f040084 +int attr buttonBarStyle 0x7f040085 +int attr buttonCompat 0x7f040086 +int attr buttonGravity 0x7f040087 +int attr buttonIconDimen 0x7f040088 +int attr buttonPanelSideLayout 0x7f040089 +int attr buttonStyle 0x7f04008a +int attr buttonStyleSmall 0x7f04008b +int attr buttonTint 0x7f04008c +int attr buttonTintMode 0x7f04008d +int attr cardBackgroundColor 0x7f04008e +int attr cardCornerRadius 0x7f04008f +int attr cardElevation 0x7f040090 +int attr cardForegroundColor 0x7f040091 +int attr cardMaxElevation 0x7f040092 +int attr cardPreventCornerOverlap 0x7f040093 +int attr cardUseCompatPadding 0x7f040094 +int attr cardViewStyle 0x7f040095 +int attr carousel_backwardTransition 0x7f040096 +int attr carousel_emptyViewsBehavior 0x7f040097 +int attr carousel_firstView 0x7f040098 +int attr carousel_forwardTransition 0x7f040099 +int attr carousel_infinite 0x7f04009a +int attr carousel_nextState 0x7f04009b +int attr carousel_previousState 0x7f04009c +int attr carousel_touchUpMode 0x7f04009d +int attr carousel_touchUp_dampeningFactor 0x7f04009e +int attr carousel_touchUp_velocityThreshold 0x7f04009f +int attr chainUseRtl 0x7f0400a0 +int attr checkboxStyle 0x7f0400a1 +int attr checkedButton 0x7f0400a2 +int attr checkedChip 0x7f0400a3 +int attr checkedIcon 0x7f0400a4 +int attr checkedIconEnabled 0x7f0400a5 +int attr checkedIconMargin 0x7f0400a6 +int attr checkedIconSize 0x7f0400a7 +int attr checkedIconTint 0x7f0400a8 +int attr checkedIconVisible 0x7f0400a9 +int attr checkedTextViewStyle 0x7f0400aa +int attr chipBackgroundColor 0x7f0400ab +int attr chipCornerRadius 0x7f0400ac +int attr chipEndPadding 0x7f0400ad +int attr chipGroupStyle 0x7f0400ae +int attr chipIcon 0x7f0400af +int attr chipIconEnabled 0x7f0400b0 +int attr chipIconSize 0x7f0400b1 +int attr chipIconTint 0x7f0400b2 +int attr chipIconVisible 0x7f0400b3 +int attr chipMinHeight 0x7f0400b4 +int attr chipMinTouchTargetSize 0x7f0400b5 +int attr chipSpacing 0x7f0400b6 +int attr chipSpacingHorizontal 0x7f0400b7 +int attr chipSpacingVertical 0x7f0400b8 +int attr chipStandaloneStyle 0x7f0400b9 +int attr chipStartPadding 0x7f0400ba +int attr chipStrokeColor 0x7f0400bb +int attr chipStrokeWidth 0x7f0400bc +int attr chipStyle 0x7f0400bd +int attr chipSurfaceColor 0x7f0400be +int attr circleRadius 0x7f0400bf +int attr circularProgressIndicatorStyle 0x7f0400c0 +int attr circularflow_angles 0x7f0400c1 +int attr circularflow_defaultAngle 0x7f0400c2 +int attr circularflow_defaultRadius 0x7f0400c3 +int attr circularflow_radiusInDP 0x7f0400c4 +int attr circularflow_viewCenter 0x7f0400c5 +int attr civ_border_color 0x7f0400c6 +int attr civ_border_overlay 0x7f0400c7 +int attr civ_border_width 0x7f0400c8 +int attr civ_fill_color 0x7f0400c9 +int attr clearsTag 0x7f0400ca +int attr clickAction 0x7f0400cb +int attr clockFaceBackgroundColor 0x7f0400cc +int attr clockHandColor 0x7f0400cd +int attr clockIcon 0x7f0400ce +int attr clockNumberTextColor 0x7f0400cf +int attr closeIcon 0x7f0400d0 +int attr closeIconEnabled 0x7f0400d1 +int attr closeIconEndPadding 0x7f0400d2 +int attr closeIconSize 0x7f0400d3 +int attr closeIconStartPadding 0x7f0400d4 +int attr closeIconTint 0x7f0400d5 +int attr closeIconVisible 0x7f0400d6 +int attr closeItemLayout 0x7f0400d7 +int attr collapseContentDescription 0x7f0400d8 +int attr collapseIcon 0x7f0400d9 +int attr collapsedSize 0x7f0400da +int attr collapsedTitleGravity 0x7f0400db +int attr collapsedTitleTextAppearance 0x7f0400dc +int attr collapsingToolbarLayoutStyle 0x7f0400dd +int attr color 0x7f0400de +int attr colorAccent 0x7f0400df +int attr colorBackgroundFloating 0x7f0400e0 +int attr colorButtonNormal 0x7f0400e1 +int attr colorControlActivated 0x7f0400e2 +int attr colorControlHighlight 0x7f0400e3 +int attr colorControlNormal 0x7f0400e4 +int attr colorError 0x7f0400e5 +int attr colorOnBackground 0x7f0400e6 +int attr colorOnError 0x7f0400e7 +int attr colorOnPrimary 0x7f0400e8 +int attr colorOnPrimarySurface 0x7f0400e9 +int attr colorOnSecondary 0x7f0400ea +int attr colorOnSurface 0x7f0400eb +int attr colorPrimary 0x7f0400ec +int attr colorPrimaryDark 0x7f0400ed +int attr colorPrimarySurface 0x7f0400ee +int attr colorPrimaryVariant 0x7f0400ef +int attr colorSecondary 0x7f0400f0 +int attr colorSecondaryVariant 0x7f0400f1 +int attr colorSurface 0x7f0400f2 +int attr colorSwitchThumbNormal 0x7f0400f3 +int attr commitIcon 0x7f0400f4 +int attr constraintSet 0x7f0400f5 +int attr constraintSetEnd 0x7f0400f6 +int attr constraintSetStart 0x7f0400f7 +int attr constraint_referenced_ids 0x7f0400f8 +int attr constraint_referenced_tags 0x7f0400f9 +int attr constraints 0x7f0400fa +int attr content 0x7f0400fb +int attr contentDescription 0x7f0400fc +int attr contentInsetEnd 0x7f0400fd +int attr contentInsetEndWithActions 0x7f0400fe +int attr contentInsetLeft 0x7f0400ff +int attr contentInsetRight 0x7f040100 +int attr contentInsetStart 0x7f040101 +int attr contentInsetStartWithNavigation 0x7f040102 +int attr contentPadding 0x7f040103 +int attr contentPaddingBottom 0x7f040104 +int attr contentPaddingEnd 0x7f040105 +int attr contentPaddingLeft 0x7f040106 +int attr contentPaddingRight 0x7f040107 +int attr contentPaddingStart 0x7f040108 +int attr contentPaddingTop 0x7f040109 +int attr contentScrim 0x7f04010a +int attr contrast 0x7f04010b +int attr controlBackground 0x7f04010c +int attr controller_layout_id 0x7f04010d +int attr coordinatorLayoutStyle 0x7f04010e +int attr cornerFamily 0x7f04010f +int attr cornerFamilyBottomLeft 0x7f040110 +int attr cornerFamilyBottomRight 0x7f040111 +int attr cornerFamilyTopLeft 0x7f040112 +int attr cornerFamilyTopRight 0x7f040113 +int attr cornerRadius 0x7f040114 +int attr cornerSize 0x7f040115 +int attr cornerSizeBottomLeft 0x7f040116 +int attr cornerSizeBottomRight 0x7f040117 +int attr cornerSizeTopLeft 0x7f040118 +int attr cornerSizeTopRight 0x7f040119 +int attr counterEnabled 0x7f04011a +int attr counterMaxLength 0x7f04011b +int attr counterOverflowTextAppearance 0x7f04011c +int attr counterOverflowTextColor 0x7f04011d +int attr counterTextAppearance 0x7f04011e +int attr counterTextColor 0x7f04011f +int attr crossfade 0x7f040120 +int attr currentState 0x7f040121 +int attr curveFit 0x7f040122 +int attr customBoolean 0x7f040123 +int attr customColorDrawableValue 0x7f040124 +int attr customColorValue 0x7f040125 +int attr customDimension 0x7f040126 +int attr customFloatValue 0x7f040127 +int attr customIntegerValue 0x7f040128 +int attr customNavigationLayout 0x7f040129 +int attr customPixelDimension 0x7f04012a +int attr customReference 0x7f04012b +int attr customStringValue 0x7f04012c +int attr dayInvalidStyle 0x7f04012d +int attr daySelectedStyle 0x7f04012e +int attr dayStyle 0x7f04012f +int attr dayTodayStyle 0x7f040130 +int attr defaultDuration 0x7f040131 +int attr defaultQueryHint 0x7f040132 +int attr defaultState 0x7f040133 +int attr default_artwork 0x7f040134 +int attr deltaPolarAngle 0x7f040135 +int attr deltaPolarRadius 0x7f040136 +int attr deriveConstraintsFrom 0x7f040137 +int attr dialogCornerRadius 0x7f040138 +int attr dialogPreferredPadding 0x7f040139 +int attr dialogTheme 0x7f04013a +int attr disappearedScale 0x7f04013b +int attr displayOptions 0x7f04013c +int attr divider 0x7f04013d +int attr dividerDrawable 0x7f04013e +int attr dividerDrawableHorizontal 0x7f04013f +int attr dividerDrawableVertical 0x7f040140 +int attr dividerHorizontal 0x7f040141 +int attr dividerPadding 0x7f040142 +int attr dividerVertical 0x7f040143 +int attr download_bg_line_color 0x7f040144 +int attr download_bg_line_width 0x7f040145 +int attr download_line_color 0x7f040146 +int attr download_line_width 0x7f040147 +int attr download_text_color 0x7f040148 +int attr download_text_size 0x7f040149 +int attr dragDirection 0x7f04014a +int attr dragScale 0x7f04014b +int attr dragThreshold 0x7f04014c +int attr drawPath 0x7f04014d +int attr drawableBottomCompat 0x7f04014e +int attr drawableEndCompat 0x7f04014f +int attr drawableLeftCompat 0x7f040150 +int attr drawableRightCompat 0x7f040151 +int attr drawableSize 0x7f040152 +int attr drawableStartCompat 0x7f040153 +int attr drawableTint 0x7f040154 +int attr drawableTintMode 0x7f040155 +int attr drawableTopCompat 0x7f040156 +int attr drawerArrowStyle 0x7f040157 +int attr dropDownListViewStyle 0x7f040158 +int attr dropdownListPreferredItemHeight 0x7f040159 +int attr duration 0x7f04015a +int attr editTextBackground 0x7f04015b +int attr editTextColor 0x7f04015c +int attr editTextStyle 0x7f04015d +int attr elevation 0x7f04015e +int attr elevationOverlayColor 0x7f04015f +int attr elevationOverlayEnabled 0x7f040160 +int attr enableEdgeToEdge 0x7f040161 +int attr endIconCheckable 0x7f040162 +int attr endIconContentDescription 0x7f040163 +int attr endIconDrawable 0x7f040164 +int attr endIconMode 0x7f040165 +int attr endIconTint 0x7f040166 +int attr endIconTintMode 0x7f040167 +int attr enforceMaterialTheme 0x7f040168 +int attr enforceTextAppearance 0x7f040169 +int attr ensureMinTouchTargetSize 0x7f04016a +int attr errorContentDescription 0x7f04016b +int attr errorEnabled 0x7f04016c +int attr errorIconDrawable 0x7f04016d +int attr errorIconTint 0x7f04016e +int attr errorIconTintMode 0x7f04016f +int attr errorTextAppearance 0x7f040170 +int attr errorTextColor 0x7f040171 +int attr expandActivityOverflowButtonDrawable 0x7f040172 +int attr expanded 0x7f040173 +int attr expandedHintEnabled 0x7f040174 +int attr expandedTitleGravity 0x7f040175 +int attr expandedTitleMargin 0x7f040176 +int attr expandedTitleMarginBottom 0x7f040177 +int attr expandedTitleMarginEnd 0x7f040178 +int attr expandedTitleMarginStart 0x7f040179 +int attr expandedTitleMarginTop 0x7f04017a +int attr expandedTitleTextAppearance 0x7f04017b +int attr extendMotionSpec 0x7f04017c +int attr extendedFloatingActionButtonStyle 0x7f04017d +int attr extraMultilineHeightEnabled 0x7f04017e +int attr fabAlignmentMode 0x7f04017f +int attr fabAnimationMode 0x7f040180 +int attr fabCradleMargin 0x7f040181 +int attr fabCradleRoundedCornerRadius 0x7f040182 +int attr fabCradleVerticalOffset 0x7f040183 +int attr fabCustomSize 0x7f040184 +int attr fabSize 0x7f040185 +int attr fadeDuration 0x7f040186 +int attr failureImage 0x7f040187 +int attr failureImageScaleType 0x7f040188 +int attr fastScrollEnabled 0x7f040189 +int attr fastScrollHorizontalThumbDrawable 0x7f04018a +int attr fastScrollHorizontalTrackDrawable 0x7f04018b +int attr fastScrollVerticalThumbDrawable 0x7f04018c +int attr fastScrollVerticalTrackDrawable 0x7f04018d +int attr fastforward_increment 0x7f04018e +int attr firstBaselineToTopHeight 0x7f04018f +int attr flexDirection 0x7f040190 +int attr flexWrap 0x7f040191 +int attr floatingActionButtonStyle 0x7f040192 +int attr flow_firstHorizontalBias 0x7f040193 +int attr flow_firstHorizontalStyle 0x7f040194 +int attr flow_firstVerticalBias 0x7f040195 +int attr flow_firstVerticalStyle 0x7f040196 +int attr flow_horizontalAlign 0x7f040197 +int attr flow_horizontalBias 0x7f040198 +int attr flow_horizontalGap 0x7f040199 +int attr flow_horizontalStyle 0x7f04019a +int attr flow_lastHorizontalBias 0x7f04019b +int attr flow_lastHorizontalStyle 0x7f04019c +int attr flow_lastVerticalBias 0x7f04019d +int attr flow_lastVerticalStyle 0x7f04019e +int attr flow_maxElementsWrap 0x7f04019f +int attr flow_padding 0x7f0401a0 +int attr flow_verticalAlign 0x7f0401a1 +int attr flow_verticalBias 0x7f0401a2 +int attr flow_verticalGap 0x7f0401a3 +int attr flow_verticalStyle 0x7f0401a4 +int attr flow_wrapMode 0x7f0401a5 +int attr font 0x7f0401a6 +int attr fontFamily 0x7f0401a7 +int attr fontProviderAuthority 0x7f0401a8 +int attr fontProviderCerts 0x7f0401a9 +int attr fontProviderFetchStrategy 0x7f0401aa +int attr fontProviderFetchTimeout 0x7f0401ab +int attr fontProviderPackage 0x7f0401ac +int attr fontProviderQuery 0x7f0401ad +int attr fontProviderSystemFontFamily 0x7f0401ae +int attr fontStyle 0x7f0401af +int attr fontVariationSettings 0x7f0401b0 +int attr fontWeight 0x7f0401b1 +int attr forceApplySystemWindowInsetTop 0x7f0401b2 +int attr foregroundInsidePadding 0x7f0401b3 +int attr framePosition 0x7f0401b4 +int attr gapBetweenBars 0x7f0401b5 +int attr gestureInsetBottomIgnored 0x7f0401b6 +int attr goIcon 0x7f0401b7 +int attr haloColor 0x7f0401b8 +int attr haloRadius 0x7f0401b9 +int attr headerLayout 0x7f0401ba +int attr height 0x7f0401bb +int attr helperText 0x7f0401bc +int attr helperTextEnabled 0x7f0401bd +int attr helperTextTextAppearance 0x7f0401be +int attr helperTextTextColor 0x7f0401bf +int attr hideAnimationBehavior 0x7f0401c0 +int attr hideMotionSpec 0x7f0401c1 +int attr hideOnContentScroll 0x7f0401c2 +int attr hideOnScroll 0x7f0401c3 +int attr hide_on_touch 0x7f0401c4 +int attr hintAnimationEnabled 0x7f0401c5 +int attr hintEnabled 0x7f0401c6 +int attr hintTextAppearance 0x7f0401c7 +int attr hintTextColor 0x7f0401c8 +int attr homeAsUpIndicator 0x7f0401c9 +int attr homeLayout 0x7f0401ca +int attr horizontalOffset 0x7f0401cb +int attr hoveredFocusedTranslationZ 0x7f0401cc +int attr icon 0x7f0401cd +int attr iconEndPadding 0x7f0401ce +int attr iconGravity 0x7f0401cf +int attr iconPadding 0x7f0401d0 +int attr iconSize 0x7f0401d1 +int attr iconStartPadding 0x7f0401d2 +int attr iconTint 0x7f0401d3 +int attr iconTintMode 0x7f0401d4 +int attr iconifiedByDefault 0x7f0401d5 +int attr ifTagNotSet 0x7f0401d6 +int attr ifTagSet 0x7f0401d7 +int attr imageButtonStyle 0x7f0401d8 +int attr imagePanX 0x7f0401d9 +int attr imagePanY 0x7f0401da +int attr imageRotate 0x7f0401db +int attr imageZoom 0x7f0401dc +int attr indeterminateAnimationType 0x7f0401dd +int attr indeterminateProgressStyle 0x7f0401de +int attr indicatorColor 0x7f0401df +int attr indicatorDirectionCircular 0x7f0401e0 +int attr indicatorDirectionLinear 0x7f0401e1 +int attr indicatorInset 0x7f0401e2 +int attr indicatorSize 0x7f0401e3 +int attr initialActivityCount 0x7f0401e4 +int attr insetForeground 0x7f0401e5 +int attr isLightTheme 0x7f0401e6 +int attr isMaterialTheme 0x7f0401e7 +int attr itemBackground 0x7f0401e8 +int attr itemFillColor 0x7f0401e9 +int attr itemHorizontalPadding 0x7f0401ea +int attr itemHorizontalTranslationEnabled 0x7f0401eb +int attr itemIconPadding 0x7f0401ec +int attr itemIconSize 0x7f0401ed +int attr itemIconTint 0x7f0401ee +int attr itemMaxLines 0x7f0401ef +int attr itemPadding 0x7f0401f0 +int attr itemRippleColor 0x7f0401f1 +int attr itemShapeAppearance 0x7f0401f2 +int attr itemShapeAppearanceOverlay 0x7f0401f3 +int attr itemShapeFillColor 0x7f0401f4 +int attr itemShapeInsetBottom 0x7f0401f5 +int attr itemShapeInsetEnd 0x7f0401f6 +int attr itemShapeInsetStart 0x7f0401f7 +int attr itemShapeInsetTop 0x7f0401f8 +int attr itemSpacing 0x7f0401f9 +int attr itemStrokeColor 0x7f0401fa +int attr itemStrokeWidth 0x7f0401fb +int attr itemTextAppearance 0x7f0401fc +int attr itemTextAppearanceActive 0x7f0401fd +int attr itemTextAppearanceInactive 0x7f0401fe +int attr itemTextColor 0x7f0401ff +int attr justifyContent 0x7f040200 +int attr keyPositionType 0x7f040201 +int attr keyboardIcon 0x7f040202 +int attr keylines 0x7f040203 +int attr labelBehavior 0x7f040204 +int attr labelStyle 0x7f040205 +int attr labelVisibilityMode 0x7f040206 +int attr lastBaselineToBottomHeight 0x7f040207 +int attr layout 0x7f040208 +int attr layoutDescription 0x7f040209 +int attr layoutDuringTransition 0x7f04020a +int attr layoutManager 0x7f04020b +int attr layout_alignSelf 0x7f04020c +int attr layout_anchor 0x7f04020d +int attr layout_anchorGravity 0x7f04020e +int attr layout_behavior 0x7f04020f +int attr layout_collapseMode 0x7f040210 +int attr layout_collapseParallaxMultiplier 0x7f040211 +int attr layout_constrainedHeight 0x7f040212 +int attr layout_constrainedWidth 0x7f040213 +int attr layout_constraintBaseline_creator 0x7f040214 +int attr layout_constraintBaseline_toBaselineOf 0x7f040215 +int attr layout_constraintBaseline_toBottomOf 0x7f040216 +int attr layout_constraintBaseline_toTopOf 0x7f040217 +int attr layout_constraintBottom_creator 0x7f040218 +int attr layout_constraintBottom_toBottomOf 0x7f040219 +int attr layout_constraintBottom_toTopOf 0x7f04021a +int attr layout_constraintCircle 0x7f04021b +int attr layout_constraintCircleAngle 0x7f04021c +int attr layout_constraintCircleRadius 0x7f04021d +int attr layout_constraintDimensionRatio 0x7f04021e +int attr layout_constraintEnd_toEndOf 0x7f04021f +int attr layout_constraintEnd_toStartOf 0x7f040220 +int attr layout_constraintGuide_begin 0x7f040221 +int attr layout_constraintGuide_end 0x7f040222 +int attr layout_constraintGuide_percent 0x7f040223 +int attr layout_constraintHeight 0x7f040224 +int attr layout_constraintHeight_default 0x7f040225 +int attr layout_constraintHeight_max 0x7f040226 +int attr layout_constraintHeight_min 0x7f040227 +int attr layout_constraintHeight_percent 0x7f040228 +int attr layout_constraintHorizontal_bias 0x7f040229 +int attr layout_constraintHorizontal_chainStyle 0x7f04022a +int attr layout_constraintHorizontal_weight 0x7f04022b +int attr layout_constraintLeft_creator 0x7f04022c +int attr layout_constraintLeft_toLeftOf 0x7f04022d +int attr layout_constraintLeft_toRightOf 0x7f04022e +int attr layout_constraintRight_creator 0x7f04022f +int attr layout_constraintRight_toLeftOf 0x7f040230 +int attr layout_constraintRight_toRightOf 0x7f040231 +int attr layout_constraintStart_toEndOf 0x7f040232 +int attr layout_constraintStart_toStartOf 0x7f040233 +int attr layout_constraintTag 0x7f040234 +int attr layout_constraintTop_creator 0x7f040235 +int attr layout_constraintTop_toBottomOf 0x7f040236 +int attr layout_constraintTop_toTopOf 0x7f040237 +int attr layout_constraintVertical_bias 0x7f040238 +int attr layout_constraintVertical_chainStyle 0x7f040239 +int attr layout_constraintVertical_weight 0x7f04023a +int attr layout_constraintWidth 0x7f04023b +int attr layout_constraintWidth_default 0x7f04023c +int attr layout_constraintWidth_max 0x7f04023d +int attr layout_constraintWidth_min 0x7f04023e +int attr layout_constraintWidth_percent 0x7f04023f +int attr layout_dodgeInsetEdges 0x7f040240 +int attr layout_editor_absoluteX 0x7f040241 +int attr layout_editor_absoluteY 0x7f040242 +int attr layout_flexBasisPercent 0x7f040243 +int attr layout_flexGrow 0x7f040244 +int attr layout_flexShrink 0x7f040245 +int attr layout_goneMarginBaseline 0x7f040246 +int attr layout_goneMarginBottom 0x7f040247 +int attr layout_goneMarginEnd 0x7f040248 +int attr layout_goneMarginLeft 0x7f040249 +int attr layout_goneMarginRight 0x7f04024a +int attr layout_goneMarginStart 0x7f04024b +int attr layout_goneMarginTop 0x7f04024c +int attr layout_insetEdge 0x7f04024d +int attr layout_keyline 0x7f04024e +int attr layout_marginBaseline 0x7f04024f +int attr layout_maxHeight 0x7f040250 +int attr layout_maxWidth 0x7f040251 +int attr layout_minHeight 0x7f040252 +int attr layout_minWidth 0x7f040253 +int attr layout_optimizationLevel 0x7f040254 +int attr layout_order 0x7f040255 +int attr layout_scrollFlags 0x7f040256 +int attr layout_scrollInterpolator 0x7f040257 +int attr layout_wrapBefore 0x7f040258 +int attr layout_wrapBehaviorInParent 0x7f040259 +int attr liftOnScroll 0x7f04025a +int attr liftOnScrollTargetViewId 0x7f04025b +int attr limitBoundsTo 0x7f04025c +int attr lineHeight 0x7f04025d +int attr lineSpacing 0x7f04025e +int attr linearProgressIndicatorStyle 0x7f04025f +int attr listChoiceBackgroundIndicator 0x7f040260 +int attr listChoiceIndicatorMultipleAnimated 0x7f040261 +int attr listChoiceIndicatorSingleAnimated 0x7f040262 +int attr listDividerAlertDialog 0x7f040263 +int attr listItemLayout 0x7f040264 +int attr listLayout 0x7f040265 +int attr listMenuViewStyle 0x7f040266 +int attr listPopupWindowStyle 0x7f040267 +int attr listPreferredItemHeight 0x7f040268 +int attr listPreferredItemHeightLarge 0x7f040269 +int attr listPreferredItemHeightSmall 0x7f04026a +int attr listPreferredItemPaddingEnd 0x7f04026b +int attr listPreferredItemPaddingLeft 0x7f04026c +int attr listPreferredItemPaddingRight 0x7f04026d +int attr listPreferredItemPaddingStart 0x7f04026e +int attr logo 0x7f04026f +int attr logoDescription 0x7f040270 +int attr maskColor 0x7f040271 +int attr materialAlertDialogBodyTextStyle 0x7f040272 +int attr materialAlertDialogTheme 0x7f040273 +int attr materialAlertDialogTitleIconStyle 0x7f040274 +int attr materialAlertDialogTitlePanelStyle 0x7f040275 +int attr materialAlertDialogTitleTextStyle 0x7f040276 +int attr materialButtonOutlinedStyle 0x7f040277 +int attr materialButtonStyle 0x7f040278 +int attr materialButtonToggleGroupStyle 0x7f040279 +int attr materialCalendarDay 0x7f04027a +int attr materialCalendarFullscreenTheme 0x7f04027b +int attr materialCalendarHeaderCancelButton 0x7f04027c +int attr materialCalendarHeaderConfirmButton 0x7f04027d +int attr materialCalendarHeaderDivider 0x7f04027e +int attr materialCalendarHeaderLayout 0x7f04027f +int attr materialCalendarHeaderSelection 0x7f040280 +int attr materialCalendarHeaderTitle 0x7f040281 +int attr materialCalendarHeaderToggleButton 0x7f040282 +int attr materialCalendarMonth 0x7f040283 +int attr materialCalendarMonthNavigationButton 0x7f040284 +int attr materialCalendarStyle 0x7f040285 +int attr materialCalendarTheme 0x7f040286 +int attr materialCalendarYearNavigationButton 0x7f040287 +int attr materialCardViewStyle 0x7f040288 +int attr materialCircleRadius 0x7f040289 +int attr materialClockStyle 0x7f04028a +int attr materialThemeOverlay 0x7f04028b +int attr materialTimePickerStyle 0x7f04028c +int attr materialTimePickerTheme 0x7f04028d +int attr maxAcceleration 0x7f04028e +int attr maxActionInlineWidth 0x7f04028f +int attr maxButtonHeight 0x7f040290 +int attr maxCharacterCount 0x7f040291 +int attr maxHeight 0x7f040292 +int attr maxImageSize 0x7f040293 +int attr maxLine 0x7f040294 +int attr maxLines 0x7f040295 +int attr maxVelocity 0x7f040296 +int attr maxWidth 0x7f040297 +int attr measureWithLargestChild 0x7f040298 +int attr menu 0x7f040299 +int attr menuGravity 0x7f04029a +int attr methodName 0x7f04029b +int attr minHeight 0x7f04029c +int attr minHideDelay 0x7f04029d +int attr minSeparation 0x7f04029e +int attr minTouchTargetSize 0x7f04029f +int attr minWidth 0x7f0402a0 +int attr miv_blurRadius 0x7f0402a1 +int attr miv_borderColor 0x7f0402a2 +int attr miv_bottomLeftRadius 0x7f0402a3 +int attr miv_bottomRightRadius 0x7f0402a4 +int attr miv_failureHolder 0x7f0402a5 +int attr miv_isBlur 0x7f0402a6 +int attr miv_overlayImageId 0x7f0402a7 +int attr miv_placeHolder 0x7f0402a8 +int attr miv_radius 0x7f0402a9 +int attr miv_shape 0x7f0402aa +int attr miv_shapeBorderWidth 0x7f0402ab +int attr miv_topLeftRadius 0x7f0402ac +int attr miv_topRightRadius 0x7f0402ad +int attr mock_diagonalsColor 0x7f0402ae +int attr mock_label 0x7f0402af +int attr mock_labelBackgroundColor 0x7f0402b0 +int attr mock_labelColor 0x7f0402b1 +int attr mock_showDiagonals 0x7f0402b2 +int attr mock_showLabel 0x7f0402b3 +int attr motionDebug 0x7f0402b4 +int attr motionDurationLong1 0x7f0402b5 +int attr motionDurationLong2 0x7f0402b6 +int attr motionDurationMedium1 0x7f0402b7 +int attr motionDurationMedium2 0x7f0402b8 +int attr motionDurationShort1 0x7f0402b9 +int attr motionDurationShort2 0x7f0402ba +int attr motionEasingAccelerated 0x7f0402bb +int attr motionEasingDecelerated 0x7f0402bc +int attr motionEasingEmphasized 0x7f0402bd +int attr motionEasingLinear 0x7f0402be +int attr motionEasingStandard 0x7f0402bf +int attr motionEffect_alpha 0x7f0402c0 +int attr motionEffect_end 0x7f0402c1 +int attr motionEffect_move 0x7f0402c2 +int attr motionEffect_start 0x7f0402c3 +int attr motionEffect_strict 0x7f0402c4 +int attr motionEffect_translationX 0x7f0402c5 +int attr motionEffect_translationY 0x7f0402c6 +int attr motionEffect_viewTransition 0x7f0402c7 +int attr motionInterpolator 0x7f0402c8 +int attr motionPath 0x7f0402c9 +int attr motionPathRotate 0x7f0402ca +int attr motionProgress 0x7f0402cb +int attr motionStagger 0x7f0402cc +int attr motionTarget 0x7f0402cd +int attr motion_postLayoutCollision 0x7f0402ce +int attr motion_triggerOnCollision 0x7f0402cf +int attr moveWhenScrollAtTop 0x7f0402d0 +int attr multiChoiceItemLayout 0x7f0402d1 +int attr navigationContentDescription 0x7f0402d2 +int attr navigationIcon 0x7f0402d3 +int attr navigationIconTint 0x7f0402d4 +int attr navigationMode 0x7f0402d5 +int attr navigationRailStyle 0x7f0402d6 +int attr navigationViewStyle 0x7f0402d7 +int attr nestedScrollFlags 0x7f0402d8 +int attr nestedScrollable 0x7f0402d9 +int attr number 0x7f0402da +int attr numericModifiers 0x7f0402db +int attr onCross 0x7f0402dc +int attr onHide 0x7f0402dd +int attr onNegativeCross 0x7f0402de +int attr onPositiveCross 0x7f0402df +int attr onShow 0x7f0402e0 +int attr onStateTransition 0x7f0402e1 +int attr onTouchUp 0x7f0402e2 +int attr overlapAnchor 0x7f0402e3 +int attr overlay 0x7f0402e4 +int attr overlayImage 0x7f0402e5 +int attr paddingBottomNoButtons 0x7f0402e6 +int attr paddingBottomSystemWindowInsets 0x7f0402e7 +int attr paddingEnd 0x7f0402e8 +int attr paddingLeftSystemWindowInsets 0x7f0402e9 +int attr paddingRightSystemWindowInsets 0x7f0402ea +int attr paddingStart 0x7f0402eb +int attr paddingTopNoTitle 0x7f0402ec +int attr paddingTopSystemWindowInsets 0x7f0402ed +int attr panelBackground 0x7f0402ee +int attr panelMenuListTheme 0x7f0402ef +int attr panelMenuListWidth 0x7f0402f0 +int attr passwordToggleContentDescription 0x7f0402f1 +int attr passwordToggleDrawable 0x7f0402f2 +int attr passwordToggleEnabled 0x7f0402f3 +int attr passwordToggleTint 0x7f0402f4 +int attr passwordToggleTintMode 0x7f0402f5 +int attr pathMotionArc 0x7f0402f6 +int attr path_percent 0x7f0402f7 +int attr percentHeight 0x7f0402f8 +int attr percentWidth 0x7f0402f9 +int attr percentX 0x7f0402fa +int attr percentY 0x7f0402fb +int attr perpendicularPath_percent 0x7f0402fc +int attr pivotAnchor 0x7f0402fd +int attr placeholderImage 0x7f0402fe +int attr placeholderImageScaleType 0x7f0402ff +int attr placeholderText 0x7f040300 +int attr placeholderTextAppearance 0x7f040301 +int attr placeholderTextColor 0x7f040302 +int attr placeholder_emptyVisibility 0x7f040303 +int attr play_bg_line_color 0x7f040304 +int attr play_bg_line_width 0x7f040305 +int attr play_line_color 0x7f040306 +int attr play_line_width 0x7f040307 +int attr played_color 0x7f040308 +int attr player_layout_id 0x7f040309 +int attr polarRelativeTo 0x7f04030a +int attr popupMenuBackground 0x7f04030b +int attr popupMenuStyle 0x7f04030c +int attr popupTheme 0x7f04030d +int attr popupWindowStyle 0x7f04030e +int attr prefixText 0x7f04030f +int attr prefixTextAppearance 0x7f040310 +int attr prefixTextColor 0x7f040311 +int attr preserveIconSpacing 0x7f040312 +int attr pressedStateOverlayImage 0x7f040313 +int attr pressedTranslationZ 0x7f040314 +int attr progressBarAutoRotateInterval 0x7f040315 +int attr progressBarImage 0x7f040316 +int attr progressBarImageScaleType 0x7f040317 +int attr progressBarPadding 0x7f040318 +int attr progressBarStyle 0x7f040319 +int attr quantizeMotionInterpolator 0x7f04031a +int attr quantizeMotionPhase 0x7f04031b +int attr quantizeMotionSteps 0x7f04031c +int attr queryBackground 0x7f04031d +int attr queryHint 0x7f04031e +int attr radioButtonStyle 0x7f04031f +int attr rangeFillColor 0x7f040320 +int attr ratingBarStyle 0x7f040321 +int attr ratingBarStyleIndicator 0x7f040322 +int attr ratingBarStyleSmall 0x7f040323 +int attr reactiveGuide_animateChange 0x7f040324 +int attr reactiveGuide_applyToAllConstraintSets 0x7f040325 +int attr reactiveGuide_applyToConstraintSet 0x7f040326 +int attr reactiveGuide_valueId 0x7f040327 +int attr recyclerViewStyle 0x7f040328 +int attr region_heightLessThan 0x7f040329 +int attr region_heightMoreThan 0x7f04032a +int attr region_widthLessThan 0x7f04032b +int attr region_widthMoreThan 0x7f04032c +int attr resize_mode 0x7f04032d +int attr retryImage 0x7f04032e +int attr retryImageScaleType 0x7f04032f +int attr reverseLayout 0x7f040330 +int attr rewind_increment 0x7f040331 +int attr rippleColor 0x7f040332 +int attr rotationCenterId 0x7f040333 +int attr round 0x7f040334 +int attr roundAsCircle 0x7f040335 +int attr roundBottomEnd 0x7f040336 +int attr roundBottomLeft 0x7f040337 +int attr roundBottomRight 0x7f040338 +int attr roundBottomStart 0x7f040339 +int attr roundLayoutRadius 0x7f04033a +int attr roundPercent 0x7f04033b +int attr roundTopEnd 0x7f04033c +int attr roundTopLeft 0x7f04033d +int attr roundTopRight 0x7f04033e +int attr roundTopStart 0x7f04033f +int attr roundWithOverlayColor 0x7f040340 +int attr roundedCornerRadius 0x7f040341 +int attr roundingBorderColor 0x7f040342 +int attr roundingBorderPadding 0x7f040343 +int attr roundingBorderWidth 0x7f040344 +int attr saturation 0x7f040345 +int attr scaleFromTextSize 0x7f040346 +int attr scanline 0x7f040347 +int attr scrimAnimationDuration 0x7f040348 +int attr scrimBackground 0x7f040349 +int attr scrimVisibleHeightTrigger 0x7f04034a +int attr scrubber_color 0x7f04034b +int attr scrubber_disabled_size 0x7f04034c +int attr scrubber_dragged_size 0x7f04034d +int attr scrubber_enabled_size 0x7f04034e +int attr searchHintIcon 0x7f04034f +int attr searchIcon 0x7f040350 +int attr searchViewStyle 0x7f040351 +int attr seekBarStyle 0x7f040352 +int attr selectableItemBackground 0x7f040353 +int attr selectableItemBackgroundBorderless 0x7f040354 +int attr selectionRequired 0x7f040355 +int attr selectorSize 0x7f040356 +int attr setsTag 0x7f040357 +int attr shapeAppearance 0x7f040358 +int attr shapeAppearanceLargeComponent 0x7f040359 +int attr shapeAppearanceMediumComponent 0x7f04035a +int attr shapeAppearanceOverlay 0x7f04035b +int attr shapeAppearanceSmallComponent 0x7f04035c +int attr showAnimationBehavior 0x7f04035d +int attr showAsAction 0x7f04035e +int attr showDelay 0x7f04035f +int attr showDivider 0x7f040360 +int attr showDividerHorizontal 0x7f040361 +int attr showDividerVertical 0x7f040362 +int attr showDividers 0x7f040363 +int attr showMotionSpec 0x7f040364 +int attr showPaths 0x7f040365 +int attr showRectLine 0x7f040366 +int attr showText 0x7f040367 +int attr showTitle 0x7f040368 +int attr show_timeout 0x7f040369 +int attr shrinkMotionSpec 0x7f04036a +int attr singleChoiceItemLayout 0x7f04036b +int attr singleLine 0x7f04036c +int attr singleSelection 0x7f04036d +int attr sizePercent 0x7f04036e +int attr sliderStyle 0x7f04036f +int attr snackbarButtonStyle 0x7f040370 +int attr snackbarStyle 0x7f040371 +int attr snackbarTextViewStyle 0x7f040372 +int attr spanCount 0x7f040373 +int attr spinBars 0x7f040374 +int attr spinnerDropDownItemStyle 0x7f040375 +int attr spinnerStyle 0x7f040376 +int attr splitTrack 0x7f040377 +int attr springBoundary 0x7f040378 +int attr springDamping 0x7f040379 +int attr springMass 0x7f04037a +int attr springStiffness 0x7f04037b +int attr springStopThreshold 0x7f04037c +int attr srcCompat 0x7f04037d +int attr stackFromEnd 0x7f04037e +int attr staggered 0x7f04037f +int attr startIconCheckable 0x7f040380 +int attr startIconContentDescription 0x7f040381 +int attr startIconDrawable 0x7f040382 +int attr startIconTint 0x7f040383 +int attr startIconTintMode 0x7f040384 +int attr state_above_anchor 0x7f040385 +int attr state_collapsed 0x7f040386 +int attr state_collapsible 0x7f040387 +int attr state_dragged 0x7f040388 +int attr state_liftable 0x7f040389 +int attr state_lifted 0x7f04038a +int attr statusBarBackground 0x7f04038b +int attr statusBarForeground 0x7f04038c +int attr statusBarScrim 0x7f04038d +int attr strokeColor 0x7f04038e +int attr strokeWidth 0x7f04038f +int attr subMenuArrow 0x7f040390 +int attr submitBackground 0x7f040391 +int attr subtitle 0x7f040392 +int attr subtitleCentered 0x7f040393 +int attr subtitleTextAppearance 0x7f040394 +int attr subtitleTextColor 0x7f040395 +int attr subtitleTextStyle 0x7f040396 +int attr suffixText 0x7f040397 +int attr suffixTextAppearance 0x7f040398 +int attr suffixTextColor 0x7f040399 +int attr suggestionRowLayout 0x7f04039a +int attr surface_type 0x7f04039b +int attr switchMinWidth 0x7f04039c +int attr switchPadding 0x7f04039d +int attr switchStyle 0x7f04039e +int attr switchTextAppearance 0x7f04039f +int attr tabBackground 0x7f0403a0 +int attr tabContentStart 0x7f0403a1 +int attr tabGravity 0x7f0403a2 +int attr tabIconTint 0x7f0403a3 +int attr tabIconTintMode 0x7f0403a4 +int attr tabIndicator 0x7f0403a5 +int attr tabIndicatorAnimationDuration 0x7f0403a6 +int attr tabIndicatorAnimationMode 0x7f0403a7 +int attr tabIndicatorColor 0x7f0403a8 +int attr tabIndicatorFullWidth 0x7f0403a9 +int attr tabIndicatorGravity 0x7f0403aa +int attr tabIndicatorHeight 0x7f0403ab +int attr tabInlineLabel 0x7f0403ac +int attr tabMaxWidth 0x7f0403ad +int attr tabMinWidth 0x7f0403ae +int attr tabMode 0x7f0403af +int attr tabPadding 0x7f0403b0 +int attr tabPaddingBottom 0x7f0403b1 +int attr tabPaddingEnd 0x7f0403b2 +int attr tabPaddingStart 0x7f0403b3 +int attr tabPaddingTop 0x7f0403b4 +int attr tabRippleColor 0x7f0403b5 +int attr tabSelectedTextColor 0x7f0403b6 +int attr tabStyle 0x7f0403b7 +int attr tabTextAppearance 0x7f0403b8 +int attr tabTextColor 0x7f0403b9 +int attr tabUnboundedRipple 0x7f0403ba +int attr targetId 0x7f0403bb +int attr telltales_tailColor 0x7f0403bc +int attr telltales_tailScale 0x7f0403bd +int attr telltales_velocityMode 0x7f0403be +int attr textAllCaps 0x7f0403bf +int attr textAppearanceBody1 0x7f0403c0 +int attr textAppearanceBody2 0x7f0403c1 +int attr textAppearanceButton 0x7f0403c2 +int attr textAppearanceCaption 0x7f0403c3 +int attr textAppearanceHeadline1 0x7f0403c4 +int attr textAppearanceHeadline2 0x7f0403c5 +int attr textAppearanceHeadline3 0x7f0403c6 +int attr textAppearanceHeadline4 0x7f0403c7 +int attr textAppearanceHeadline5 0x7f0403c8 +int attr textAppearanceHeadline6 0x7f0403c9 +int attr textAppearanceLargePopupMenu 0x7f0403ca +int attr textAppearanceLineHeightEnabled 0x7f0403cb +int attr textAppearanceListItem 0x7f0403cc +int attr textAppearanceListItemSecondary 0x7f0403cd +int attr textAppearanceListItemSmall 0x7f0403ce +int attr textAppearanceOverline 0x7f0403cf +int attr textAppearancePopupMenuHeader 0x7f0403d0 +int attr textAppearanceSearchResultSubtitle 0x7f0403d1 +int attr textAppearanceSearchResultTitle 0x7f0403d2 +int attr textAppearanceSmallPopupMenu 0x7f0403d3 +int attr textAppearanceSubtitle1 0x7f0403d4 +int attr textAppearanceSubtitle2 0x7f0403d5 +int attr textBackground 0x7f0403d6 +int attr textBackgroundPanX 0x7f0403d7 +int attr textBackgroundPanY 0x7f0403d8 +int attr textBackgroundRotate 0x7f0403d9 +int attr textBackgroundZoom 0x7f0403da +int attr textColorAlertDialogListItem 0x7f0403db +int attr textColorSearchUrl 0x7f0403dc +int attr textEndPadding 0x7f0403dd +int attr textFillColor 0x7f0403de +int attr textInputLayoutFocusedRectEnabled 0x7f0403df +int attr textInputStyle 0x7f0403e0 +int attr textLocale 0x7f0403e1 +int attr textOutlineColor 0x7f0403e2 +int attr textOutlineThickness 0x7f0403e3 +int attr textPanX 0x7f0403e4 +int attr textPanY 0x7f0403e5 +int attr textStartPadding 0x7f0403e6 +int attr textureBlurFactor 0x7f0403e7 +int attr textureEffect 0x7f0403e8 +int attr textureHeight 0x7f0403e9 +int attr textureWidth 0x7f0403ea +int attr theme 0x7f0403eb +int attr themeLineHeight 0x7f0403ec +int attr thickness 0x7f0403ed +int attr thumbColor 0x7f0403ee +int attr thumbElevation 0x7f0403ef +int attr thumbRadius 0x7f0403f0 +int attr thumbStrokeColor 0x7f0403f1 +int attr thumbStrokeWidth 0x7f0403f2 +int attr thumbTextPadding 0x7f0403f3 +int attr thumbTint 0x7f0403f4 +int attr thumbTintMode 0x7f0403f5 +int attr tickColor 0x7f0403f6 +int attr tickColorActive 0x7f0403f7 +int attr tickColorInactive 0x7f0403f8 +int attr tickMark 0x7f0403f9 +int attr tickMarkTint 0x7f0403fa +int attr tickMarkTintMode 0x7f0403fb +int attr tickVisible 0x7f0403fc +int attr tint 0x7f0403fd +int attr tintMode 0x7f0403fe +int attr title 0x7f0403ff +int attr titleCentered 0x7f040400 +int attr titleCollapseMode 0x7f040401 +int attr titleEnabled 0x7f040402 +int attr titleMargin 0x7f040403 +int attr titleMarginBottom 0x7f040404 +int attr titleMarginEnd 0x7f040405 +int attr titleMarginStart 0x7f040406 +int attr titleMarginTop 0x7f040407 +int attr titleMargins 0x7f040408 +int attr titleTextAppearance 0x7f040409 +int attr titleTextColor 0x7f04040a +int attr titleTextStyle 0x7f04040b +int attr toolbarId 0x7f04040c +int attr toolbarNavigationButtonStyle 0x7f04040d +int attr toolbarStyle 0x7f04040e +int attr tooltipForegroundColor 0x7f04040f +int attr tooltipFrameBackground 0x7f040410 +int attr tooltipStyle 0x7f040411 +int attr tooltipText 0x7f040412 +int attr topText 0x7f040413 +int attr topTextSize 0x7f040414 +int attr touchAnchorId 0x7f040415 +int attr touchAnchorSide 0x7f040416 +int attr touchRegionId 0x7f040417 +int attr touch_target_height 0x7f040418 +int attr track 0x7f040419 +int attr trackColor 0x7f04041a +int attr trackColorActive 0x7f04041b +int attr trackColorInactive 0x7f04041c +int attr trackCornerRadius 0x7f04041d +int attr trackHeight 0x7f04041e +int attr trackThickness 0x7f04041f +int attr trackTint 0x7f040420 +int attr trackTintMode 0x7f040421 +int attr transformPivotTarget 0x7f040422 +int attr transitionDisable 0x7f040423 +int attr transitionEasing 0x7f040424 +int attr transitionFlags 0x7f040425 +int attr transitionPathRotate 0x7f040426 +int attr transitionShapeAppearance 0x7f040427 +int attr triAngleColor 0x7f040428 +int attr triAngleLength 0x7f040429 +int attr triAngleWidth 0x7f04042a +int attr triggerId 0x7f04042b +int attr triggerReceiver 0x7f04042c +int attr triggerSlack 0x7f04042d +int attr ttcIndex 0x7f04042e +int attr unplayed_color 0x7f04042f +int attr upDuration 0x7f040430 +int attr useCompatPadding 0x7f040431 +int attr useMaterialThemeColors 0x7f040432 +int attr use_artwork 0x7f040433 +int attr use_controller 0x7f040434 +int attr values 0x7f040435 +int attr verticalOffset 0x7f040436 +int attr viewAspectRatio 0x7f040437 +int attr viewInflaterClass 0x7f040438 +int attr viewTransitionMode 0x7f040439 +int attr viewTransitionOnCross 0x7f04043a +int attr viewTransitionOnNegativeCross 0x7f04043b +int attr viewTransitionOnPositiveCross 0x7f04043c +int attr visibilityMode 0x7f04043d +int attr voiceIcon 0x7f04043e +int attr vpi_orientation 0x7f04043f +int attr vpi_rtl 0x7f040440 +int attr vpi_slide_mode 0x7f040441 +int attr vpi_slider_checked_color 0x7f040442 +int attr vpi_slider_normal_color 0x7f040443 +int attr vpi_slider_radius 0x7f040444 +int attr vpi_style 0x7f040445 +int attr warmth 0x7f040446 +int attr waveDecay 0x7f040447 +int attr waveOffset 0x7f040448 +int attr wavePeriod 0x7f040449 +int attr wavePhase 0x7f04044a +int attr waveShape 0x7f04044b +int attr waveVariesBy 0x7f04044c +int attr windowActionBar 0x7f04044d +int attr windowActionBarOverlay 0x7f04044e +int attr windowActionModeOverlay 0x7f04044f +int attr windowFixedHeightMajor 0x7f040450 +int attr windowFixedHeightMinor 0x7f040451 +int attr windowFixedWidthMajor 0x7f040452 +int attr windowFixedWidthMinor 0x7f040453 +int attr windowMinWidthMajor 0x7f040454 +int attr windowMinWidthMinor 0x7f040455 +int attr windowNoTitle 0x7f040456 +int attr yearSelectedStyle 0x7f040457 +int attr yearStyle 0x7f040458 +int attr yearTodayStyle 0x7f040459 +int bool abc_action_bar_embed_tabs 0x7f050001 +int bool abc_allow_stacked_button_bar 0x7f050002 +int bool abc_config_actionMenuItemAllCaps 0x7f050003 +int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050004 +int bool mtrl_btn_textappearance_all_caps 0x7f050005 +int color abc_background_cache_hint_selector_material_dark 0x7f060001 +int color abc_background_cache_hint_selector_material_light 0x7f060002 +int color abc_btn_colored_borderless_text_material 0x7f060003 +int color abc_btn_colored_text_material 0x7f060004 +int color abc_color_highlight_material 0x7f060005 +int color abc_decor_view_status_guard 0x7f060006 +int color abc_decor_view_status_guard_light 0x7f060007 +int color abc_hint_foreground_material_dark 0x7f060008 +int color abc_hint_foreground_material_light 0x7f060009 +int color abc_input_method_navigation_guard 0x7f06000a +int color abc_primary_text_disable_only_material_dark 0x7f06000b +int color abc_primary_text_disable_only_material_light 0x7f06000c +int color abc_primary_text_material_dark 0x7f06000d +int color abc_primary_text_material_light 0x7f06000e +int color abc_search_url_text 0x7f06000f +int color abc_search_url_text_normal 0x7f060010 +int color abc_search_url_text_pressed 0x7f060011 +int color abc_search_url_text_selected 0x7f060012 +int color abc_secondary_text_material_dark 0x7f060013 +int color abc_secondary_text_material_light 0x7f060014 +int color abc_tint_btn_checkable 0x7f060015 +int color abc_tint_default 0x7f060016 +int color abc_tint_edittext 0x7f060017 +int color abc_tint_seek_thumb 0x7f060018 +int color abc_tint_spinner 0x7f060019 +int color abc_tint_switch_track 0x7f06001a +int color accent_material_dark 0x7f06001b +int color accent_material_light 0x7f06001c +int color androidx_core_ripple_material_light 0x7f06001d +int color androidx_core_secondary_text_default_material_light 0x7f06001e +int color background_floating_material_dark 0x7f06001f +int color background_floating_material_light 0x7f060020 +int color background_material_dark 0x7f060021 +int color background_material_light 0x7f060022 +int color blue 0x7f060023 +int color bottom_container_bg 0x7f060024 +int color bright_foreground_disabled_material_dark 0x7f060025 +int color bright_foreground_disabled_material_light 0x7f060026 +int color bright_foreground_inverse_material_dark 0x7f060027 +int color bright_foreground_inverse_material_light 0x7f060028 +int color bright_foreground_material_dark 0x7f060029 +int color bright_foreground_material_light 0x7f06002a +int color burlywood 0x7f06002b +int color button_material_dark 0x7f06002c +int color button_material_light 0x7f06002d +int color cardview_dark_background 0x7f06002e +int color cardview_light_background 0x7f06002f +int color cardview_shadow_end_color 0x7f060030 +int color cardview_shadow_start_color 0x7f060031 +int color checkbox_themeable_attribute_color 0x7f060032 +int color color_1F9BFE 0x7f060033 +int color color_256BFF 0x7f060034 +int color color_323C6F 0x7f060035 +int color color_3E7BFE 0x7f060036 +int color color_4D000000 0x7f060037 +int color color_4DFFFFFF 0x7f060038 +int color color_66B8BFE8 0x7f060039 +int color color_8E9DD4 0x7f06003a +int color color_99000000 0x7f06003b +int color color_AFB3C7 0x7f06003c +int color color_B3FFFFFF 0x7f06003d +int color color_E63B4577 0x7f06003e +int color color_FF2966EC 0x7f06003f +int color color_FFA7B6F0 0x7f060040 +int color color_white 0x7f060041 +int color design_bottom_navigation_shadow_color 0x7f060042 +int color design_box_stroke_color 0x7f060043 +int color design_dark_default_color_background 0x7f060044 +int color design_dark_default_color_error 0x7f060045 +int color design_dark_default_color_on_background 0x7f060046 +int color design_dark_default_color_on_error 0x7f060047 +int color design_dark_default_color_on_primary 0x7f060048 +int color design_dark_default_color_on_secondary 0x7f060049 +int color design_dark_default_color_on_surface 0x7f06004a +int color design_dark_default_color_primary 0x7f06004b +int color design_dark_default_color_primary_dark 0x7f06004c +int color design_dark_default_color_primary_variant 0x7f06004d +int color design_dark_default_color_secondary 0x7f06004e +int color design_dark_default_color_secondary_variant 0x7f06004f +int color design_dark_default_color_surface 0x7f060050 +int color design_default_color_background 0x7f060051 +int color design_default_color_error 0x7f060052 +int color design_default_color_on_background 0x7f060053 +int color design_default_color_on_error 0x7f060054 +int color design_default_color_on_primary 0x7f060055 +int color design_default_color_on_secondary 0x7f060056 +int color design_default_color_on_surface 0x7f060057 +int color design_default_color_primary 0x7f060058 +int color design_default_color_primary_dark 0x7f060059 +int color design_default_color_primary_variant 0x7f06005a +int color design_default_color_secondary 0x7f06005b +int color design_default_color_secondary_variant 0x7f06005c +int color design_default_color_surface 0x7f06005d +int color design_error 0x7f06005e +int color design_fab_shadow_end_color 0x7f06005f +int color design_fab_shadow_mid_color 0x7f060060 +int color design_fab_shadow_start_color 0x7f060061 +int color design_fab_stroke_end_inner_color 0x7f060062 +int color design_fab_stroke_end_outer_color 0x7f060063 +int color design_fab_stroke_top_inner_color 0x7f060064 +int color design_fab_stroke_top_outer_color 0x7f060065 +int color design_icon_tint 0x7f060066 +int color design_snackbar_background_color 0x7f060067 +int color dim_foreground_disabled_material_dark 0x7f060068 +int color dim_foreground_disabled_material_light 0x7f060069 +int color dim_foreground_material_dark 0x7f06006a +int color dim_foreground_material_light 0x7f06006b +int color error_color_material 0x7f06006c +int color error_color_material_dark 0x7f06006d +int color error_color_material_light 0x7f06006e +int color exo_edit_mode_background_color 0x7f06006f +int color foreground_material_dark 0x7f060070 +int color foreground_material_light 0x7f060071 +int color green 0x7f060072 +int color highlighted_text_material_dark 0x7f060073 +int color highlighted_text_material_light 0x7f060074 +int color material_blue_grey_800 0x7f060075 +int color material_blue_grey_900 0x7f060076 +int color material_blue_grey_950 0x7f060077 +int color material_cursor_color 0x7f060078 +int color material_deep_teal_200 0x7f060079 +int color material_deep_teal_500 0x7f06007a +int color material_grey_100 0x7f06007b +int color material_grey_300 0x7f06007c +int color material_grey_50 0x7f06007d +int color material_grey_600 0x7f06007e +int color material_grey_800 0x7f06007f +int color material_grey_850 0x7f060080 +int color material_grey_900 0x7f060081 +int color material_on_background_disabled 0x7f060082 +int color material_on_background_emphasis_high_type 0x7f060083 +int color material_on_background_emphasis_medium 0x7f060084 +int color material_on_primary_disabled 0x7f060085 +int color material_on_primary_emphasis_high_type 0x7f060086 +int color material_on_primary_emphasis_medium 0x7f060087 +int color material_on_surface_disabled 0x7f060088 +int color material_on_surface_emphasis_high_type 0x7f060089 +int color material_on_surface_emphasis_medium 0x7f06008a +int color material_on_surface_stroke 0x7f06008b +int color material_slider_active_tick_marks_color 0x7f06008c +int color material_slider_active_track_color 0x7f06008d +int color material_slider_halo_color 0x7f06008e +int color material_slider_inactive_tick_marks_color 0x7f06008f +int color material_slider_inactive_track_color 0x7f060090 +int color material_slider_thumb_color 0x7f060091 +int color material_timepicker_button_background 0x7f060092 +int color material_timepicker_button_stroke 0x7f060093 +int color material_timepicker_clock_text_color 0x7f060094 +int color material_timepicker_clockface 0x7f060095 +int color material_timepicker_modebutton_tint 0x7f060096 +int color module_hmi_warning_bg_color 0x7f060097 +int color module_hmi_warning_bg_color_light 0x7f060098 +int color modules_commons_toast_text_color 0x7f060099 +int color mtrl_btn_bg_color_selector 0x7f06009a +int color mtrl_btn_ripple_color 0x7f06009b +int color mtrl_btn_stroke_color_selector 0x7f06009c +int color mtrl_btn_text_btn_bg_color_selector 0x7f06009d +int color mtrl_btn_text_btn_ripple_color 0x7f06009e +int color mtrl_btn_text_color_disabled 0x7f06009f +int color mtrl_btn_text_color_selector 0x7f0600a0 +int color mtrl_btn_transparent_bg_color 0x7f0600a1 +int color mtrl_calendar_item_stroke_color 0x7f0600a2 +int color mtrl_calendar_selected_range 0x7f0600a3 +int color mtrl_card_view_foreground 0x7f0600a4 +int color mtrl_card_view_ripple 0x7f0600a5 +int color mtrl_chip_background_color 0x7f0600a6 +int color mtrl_chip_close_icon_tint 0x7f0600a7 +int color mtrl_chip_surface_color 0x7f0600a8 +int color mtrl_chip_text_color 0x7f0600a9 +int color mtrl_choice_chip_background_color 0x7f0600aa +int color mtrl_choice_chip_ripple_color 0x7f0600ab +int color mtrl_choice_chip_text_color 0x7f0600ac +int color mtrl_error 0x7f0600ad +int color mtrl_fab_bg_color_selector 0x7f0600ae +int color mtrl_fab_icon_text_color_selector 0x7f0600af +int color mtrl_fab_ripple_color 0x7f0600b0 +int color mtrl_filled_background_color 0x7f0600b1 +int color mtrl_filled_icon_tint 0x7f0600b2 +int color mtrl_filled_stroke_color 0x7f0600b3 +int color mtrl_indicator_text_color 0x7f0600b4 +int color mtrl_navigation_bar_colored_item_tint 0x7f0600b5 +int color mtrl_navigation_bar_colored_ripple_color 0x7f0600b6 +int color mtrl_navigation_bar_item_tint 0x7f0600b7 +int color mtrl_navigation_bar_ripple_color 0x7f0600b8 +int color mtrl_navigation_item_background_color 0x7f0600b9 +int color mtrl_navigation_item_icon_tint 0x7f0600ba +int color mtrl_navigation_item_text_color 0x7f0600bb +int color mtrl_on_primary_text_btn_text_color_selector 0x7f0600bc +int color mtrl_on_surface_ripple_color 0x7f0600bd +int color mtrl_outlined_icon_tint 0x7f0600be +int color mtrl_outlined_stroke_color 0x7f0600bf +int color mtrl_popupmenu_overlay_color 0x7f0600c0 +int color mtrl_scrim_color 0x7f0600c1 +int color mtrl_tabs_colored_ripple_color 0x7f0600c2 +int color mtrl_tabs_icon_color_selector 0x7f0600c3 +int color mtrl_tabs_icon_color_selector_colored 0x7f0600c4 +int color mtrl_tabs_legacy_text_color_selector 0x7f0600c5 +int color mtrl_tabs_ripple_color 0x7f0600c6 +int color mtrl_text_btn_text_color_selector 0x7f0600c7 +int color mtrl_textinput_default_box_stroke_color 0x7f0600c8 +int color mtrl_textinput_disabled_color 0x7f0600c9 +int color mtrl_textinput_filled_box_default_background_color 0x7f0600ca +int color mtrl_textinput_focused_box_stroke_color 0x7f0600cb +int color mtrl_textinput_hovered_box_stroke_color 0x7f0600cc +int color notification_action_color_filter 0x7f0600cd +int color notification_icon_bg_color 0x7f0600ce +int color possible_result_points 0x7f0600cf +int color primary_dark_material_dark 0x7f0600d0 +int color primary_dark_material_light 0x7f0600d1 +int color primary_material_dark 0x7f0600d2 +int color primary_material_light 0x7f0600d3 +int color primary_text_default_material_dark 0x7f0600d4 +int color primary_text_default_material_light 0x7f0600d5 +int color primary_text_disabled_material_dark 0x7f0600d6 +int color primary_text_disabled_material_light 0x7f0600d7 +int color radiobutton_themeable_attribute_color 0x7f0600d8 +int color result_points 0x7f0600d9 +int color result_view 0x7f0600da +int color ripple_material_dark 0x7f0600db +int color ripple_material_light 0x7f0600dc +int color secondary_text_default_material_dark 0x7f0600dd +int color secondary_text_default_material_light 0x7f0600de +int color secondary_text_disabled_material_dark 0x7f0600df +int color secondary_text_disabled_material_light 0x7f0600e0 +int color style_color 0x7f0600e1 +int color switch_thumb_disabled_material_dark 0x7f0600e2 +int color switch_thumb_disabled_material_light 0x7f0600e3 +int color switch_thumb_material_dark 0x7f0600e4 +int color switch_thumb_material_light 0x7f0600e5 +int color switch_thumb_normal_material_dark 0x7f0600e6 +int color switch_thumb_normal_material_light 0x7f0600e7 +int color test_mtrl_calendar_day 0x7f0600e8 +int color test_mtrl_calendar_day_selected 0x7f0600e9 +int color tooltip_background_dark 0x7f0600ea +int color tooltip_background_light 0x7f0600eb +int color translucent_background 0x7f0600ec +int color transparent 0x7f0600ed +int color viewfinder_laser 0x7f0600ee +int color viewfinder_mask 0x7f0600ef +int color white 0x7f0600f0 +int dimen abc_action_bar_content_inset_material 0x7f070001 +int dimen abc_action_bar_content_inset_with_nav 0x7f070002 +int dimen abc_action_bar_default_height_material 0x7f070003 +int dimen abc_action_bar_default_padding_end_material 0x7f070004 +int dimen abc_action_bar_default_padding_start_material 0x7f070005 +int dimen abc_action_bar_elevation_material 0x7f070006 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070008 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070009 +int dimen abc_action_bar_progress_bar_size 0x7f07000a +int dimen abc_action_bar_stacked_max_height 0x7f07000b +int dimen abc_action_bar_stacked_tab_max_width 0x7f07000c +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000d +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000e +int dimen abc_action_button_min_height_material 0x7f07000f +int dimen abc_action_button_min_width_material 0x7f070010 +int dimen abc_action_button_min_width_overflow_material 0x7f070011 +int dimen abc_alert_dialog_button_bar_height 0x7f070012 +int dimen abc_alert_dialog_button_dimen 0x7f070013 +int dimen abc_button_inset_horizontal_material 0x7f070014 +int dimen abc_button_inset_vertical_material 0x7f070015 +int dimen abc_button_padding_horizontal_material 0x7f070016 +int dimen abc_button_padding_vertical_material 0x7f070017 +int dimen abc_cascading_menus_min_smallest_width 0x7f070018 +int dimen abc_config_prefDialogWidth 0x7f070019 +int dimen abc_control_corner_material 0x7f07001a +int dimen abc_control_inset_material 0x7f07001b +int dimen abc_control_padding_material 0x7f07001c +int dimen abc_dialog_corner_radius_material 0x7f07001d +int dimen abc_dialog_fixed_height_major 0x7f07001e +int dimen abc_dialog_fixed_height_minor 0x7f07001f +int dimen abc_dialog_fixed_width_major 0x7f070020 +int dimen abc_dialog_fixed_width_minor 0x7f070021 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070022 +int dimen abc_dialog_list_padding_top_no_title 0x7f070023 +int dimen abc_dialog_min_width_major 0x7f070024 +int dimen abc_dialog_min_width_minor 0x7f070025 +int dimen abc_dialog_padding_material 0x7f070026 +int dimen abc_dialog_padding_top_material 0x7f070027 +int dimen abc_dialog_title_divider_material 0x7f070028 +int dimen abc_disabled_alpha_material_dark 0x7f070029 +int dimen abc_disabled_alpha_material_light 0x7f07002a +int dimen abc_dropdownitem_icon_width 0x7f07002b +int dimen abc_dropdownitem_text_padding_left 0x7f07002c +int dimen abc_dropdownitem_text_padding_right 0x7f07002d +int dimen abc_edit_text_inset_bottom_material 0x7f07002e +int dimen abc_edit_text_inset_horizontal_material 0x7f07002f +int dimen abc_edit_text_inset_top_material 0x7f070030 +int dimen abc_floating_window_z 0x7f070031 +int dimen abc_list_item_height_large_material 0x7f070032 +int dimen abc_list_item_height_material 0x7f070033 +int dimen abc_list_item_height_small_material 0x7f070034 +int dimen abc_list_item_padding_horizontal_material 0x7f070035 +int dimen abc_panel_menu_list_width 0x7f070036 +int dimen abc_progress_bar_height_material 0x7f070037 +int dimen abc_search_view_preferred_height 0x7f070038 +int dimen abc_search_view_preferred_width 0x7f070039 +int dimen abc_seekbar_track_background_height_material 0x7f07003a +int dimen abc_seekbar_track_progress_height_material 0x7f07003b +int dimen abc_select_dialog_padding_start_material 0x7f07003c +int dimen abc_star_big 0x7f07003d +int dimen abc_star_medium 0x7f07003e +int dimen abc_star_small 0x7f07003f +int dimen abc_switch_padding 0x7f070040 +int dimen abc_text_size_body_1_material 0x7f070041 +int dimen abc_text_size_body_2_material 0x7f070042 +int dimen abc_text_size_button_material 0x7f070043 +int dimen abc_text_size_caption_material 0x7f070044 +int dimen abc_text_size_display_1_material 0x7f070045 +int dimen abc_text_size_display_2_material 0x7f070046 +int dimen abc_text_size_display_3_material 0x7f070047 +int dimen abc_text_size_display_4_material 0x7f070048 +int dimen abc_text_size_headline_material 0x7f070049 +int dimen abc_text_size_large_material 0x7f07004a +int dimen abc_text_size_medium_material 0x7f07004b +int dimen abc_text_size_menu_header_material 0x7f07004c +int dimen abc_text_size_menu_material 0x7f07004d +int dimen abc_text_size_small_material 0x7f07004e +int dimen abc_text_size_subhead_material 0x7f07004f +int dimen abc_text_size_subtitle_material_toolbar 0x7f070050 +int dimen abc_text_size_title_material 0x7f070051 +int dimen abc_text_size_title_material_toolbar 0x7f070052 +int dimen action_bar_size 0x7f070053 +int dimen appcompat_dialog_background_inset 0x7f070054 +int dimen brightness_icon 0x7f070055 +int dimen cardview_compat_inset_shadow 0x7f070056 +int dimen cardview_default_elevation 0x7f070057 +int dimen cardview_default_radius 0x7f070058 +int dimen clock_face_margin_start 0x7f070059 +int dimen compat_button_inset_horizontal_material 0x7f07005a +int dimen compat_button_inset_vertical_material 0x7f07005b +int dimen compat_button_padding_horizontal_material 0x7f07005c +int dimen compat_button_padding_vertical_material 0x7f07005d +int dimen compat_control_corner_material 0x7f07005e +int dimen compat_notification_large_icon_max_height 0x7f07005f +int dimen compat_notification_large_icon_max_width 0x7f070060 +int dimen default_dimension 0x7f070061 +int dimen design_appbar_elevation 0x7f070062 +int dimen design_bottom_navigation_active_item_max_width 0x7f070063 +int dimen design_bottom_navigation_active_item_min_width 0x7f070064 +int dimen design_bottom_navigation_active_text_size 0x7f070065 +int dimen design_bottom_navigation_elevation 0x7f070066 +int dimen design_bottom_navigation_height 0x7f070067 +int dimen design_bottom_navigation_icon_size 0x7f070068 +int dimen design_bottom_navigation_item_max_width 0x7f070069 +int dimen design_bottom_navigation_item_min_width 0x7f07006a +int dimen design_bottom_navigation_label_padding 0x7f07006b +int dimen design_bottom_navigation_margin 0x7f07006c +int dimen design_bottom_navigation_shadow_height 0x7f07006d +int dimen design_bottom_navigation_text_size 0x7f07006e +int dimen design_bottom_sheet_elevation 0x7f07006f +int dimen design_bottom_sheet_modal_elevation 0x7f070070 +int dimen design_bottom_sheet_peek_height_min 0x7f070071 +int dimen design_fab_border_width 0x7f070072 +int dimen design_fab_elevation 0x7f070073 +int dimen design_fab_image_size 0x7f070074 +int dimen design_fab_size_mini 0x7f070075 +int dimen design_fab_size_normal 0x7f070076 +int dimen design_fab_translation_z_hovered_focused 0x7f070077 +int dimen design_fab_translation_z_pressed 0x7f070078 +int dimen design_navigation_elevation 0x7f070079 +int dimen design_navigation_icon_padding 0x7f07007a +int dimen design_navigation_icon_size 0x7f07007b +int dimen design_navigation_item_horizontal_padding 0x7f07007c +int dimen design_navigation_item_icon_padding 0x7f07007d +int dimen design_navigation_max_width 0x7f07007e +int dimen design_navigation_padding_bottom 0x7f07007f +int dimen design_navigation_separator_vertical_padding 0x7f070080 +int dimen design_snackbar_action_inline_max_width 0x7f070081 +int dimen design_snackbar_action_text_color_alpha 0x7f070082 +int dimen design_snackbar_background_corner_radius 0x7f070083 +int dimen design_snackbar_elevation 0x7f070084 +int dimen design_snackbar_extra_spacing_horizontal 0x7f070085 +int dimen design_snackbar_max_width 0x7f070086 +int dimen design_snackbar_min_width 0x7f070087 +int dimen design_snackbar_padding_horizontal 0x7f070088 +int dimen design_snackbar_padding_vertical 0x7f070089 +int dimen design_snackbar_padding_vertical_2lines 0x7f07008a +int dimen design_snackbar_text_size 0x7f07008b +int dimen design_tab_max_width 0x7f07008c +int dimen design_tab_scrollable_min_width 0x7f07008d +int dimen design_tab_text_size 0x7f07008e +int dimen design_tab_text_size_2line 0x7f07008f +int dimen design_textinput_caption_translate_y 0x7f070090 +int dimen disabled_alpha_material_dark 0x7f070091 +int dimen disabled_alpha_material_light 0x7f070092 +int dimen dp_0 0x7f070093 +int dimen dp_0_1 0x7f070094 +int dimen dp_0_5 0x7f070095 +int dimen dp_1 0x7f070096 +int dimen dp_10 0x7f070097 +int dimen dp_100 0x7f070098 +int dimen dp_1000 0x7f070099 +int dimen dp_101 0x7f07009a +int dimen dp_102 0x7f07009b +int dimen dp_103 0x7f07009c +int dimen dp_104 0x7f07009d +int dimen dp_104_5 0x7f07009e +int dimen dp_105 0x7f07009f +int dimen dp_106 0x7f0700a0 +int dimen dp_107 0x7f0700a1 +int dimen dp_108 0x7f0700a2 +int dimen dp_109 0x7f0700a3 +int dimen dp_11 0x7f0700a4 +int dimen dp_110 0x7f0700a5 +int dimen dp_1100 0x7f0700a6 +int dimen dp_111 0x7f0700a7 +int dimen dp_112 0x7f0700a8 +int dimen dp_113 0x7f0700a9 +int dimen dp_114 0x7f0700aa +int dimen dp_115 0x7f0700ab +int dimen dp_116 0x7f0700ac +int dimen dp_117 0x7f0700ad +int dimen dp_118 0x7f0700ae +int dimen dp_119 0x7f0700af +int dimen dp_12 0x7f0700b0 +int dimen dp_120 0x7f0700b1 +int dimen dp_1200 0x7f0700b2 +int dimen dp_121 0x7f0700b3 +int dimen dp_122 0x7f0700b4 +int dimen dp_123 0x7f0700b5 +int dimen dp_124 0x7f0700b6 +int dimen dp_125 0x7f0700b7 +int dimen dp_126 0x7f0700b8 +int dimen dp_127 0x7f0700b9 +int dimen dp_128 0x7f0700ba +int dimen dp_129 0x7f0700bb +int dimen dp_13 0x7f0700bc +int dimen dp_130 0x7f0700bd +int dimen dp_1300 0x7f0700be +int dimen dp_131 0x7f0700bf +int dimen dp_132 0x7f0700c0 +int dimen dp_133 0x7f0700c1 +int dimen dp_134 0x7f0700c2 +int dimen dp_134_5 0x7f0700c3 +int dimen dp_135 0x7f0700c4 +int dimen dp_136 0x7f0700c5 +int dimen dp_137 0x7f0700c6 +int dimen dp_138 0x7f0700c7 +int dimen dp_139 0x7f0700c8 +int dimen dp_14 0x7f0700c9 +int dimen dp_140 0x7f0700ca +int dimen dp_141 0x7f0700cb +int dimen dp_142 0x7f0700cc +int dimen dp_143 0x7f0700cd +int dimen dp_144 0x7f0700ce +int dimen dp_145 0x7f0700cf +int dimen dp_146 0x7f0700d0 +int dimen dp_147 0x7f0700d1 +int dimen dp_148 0x7f0700d2 +int dimen dp_149 0x7f0700d3 +int dimen dp_15 0x7f0700d4 +int dimen dp_150 0x7f0700d5 +int dimen dp_151 0x7f0700d6 +int dimen dp_152 0x7f0700d7 +int dimen dp_153 0x7f0700d8 +int dimen dp_154 0x7f0700d9 +int dimen dp_155 0x7f0700da +int dimen dp_156 0x7f0700db +int dimen dp_157 0x7f0700dc +int dimen dp_158 0x7f0700dd +int dimen dp_159 0x7f0700de +int dimen dp_16 0x7f0700df +int dimen dp_160 0x7f0700e0 +int dimen dp_1600 0x7f0700e1 +int dimen dp_161 0x7f0700e2 +int dimen dp_162 0x7f0700e3 +int dimen dp_163 0x7f0700e4 +int dimen dp_164 0x7f0700e5 +int dimen dp_165 0x7f0700e6 +int dimen dp_166 0x7f0700e7 +int dimen dp_167 0x7f0700e8 +int dimen dp_168 0x7f0700e9 +int dimen dp_169 0x7f0700ea +int dimen dp_17 0x7f0700eb +int dimen dp_170 0x7f0700ec +int dimen dp_171 0x7f0700ed +int dimen dp_172 0x7f0700ee +int dimen dp_173 0x7f0700ef +int dimen dp_174 0x7f0700f0 +int dimen dp_175 0x7f0700f1 +int dimen dp_176 0x7f0700f2 +int dimen dp_177 0x7f0700f3 +int dimen dp_178 0x7f0700f4 +int dimen dp_179 0x7f0700f5 +int dimen dp_18 0x7f0700f6 +int dimen dp_180 0x7f0700f7 +int dimen dp_181 0x7f0700f8 +int dimen dp_182 0x7f0700f9 +int dimen dp_183 0x7f0700fa +int dimen dp_184 0x7f0700fb +int dimen dp_185 0x7f0700fc +int dimen dp_186 0x7f0700fd +int dimen dp_187 0x7f0700fe +int dimen dp_188 0x7f0700ff +int dimen dp_189 0x7f070100 +int dimen dp_19 0x7f070101 +int dimen dp_190 0x7f070102 +int dimen dp_191 0x7f070103 +int dimen dp_191_25 0x7f070104 +int dimen dp_192 0x7f070105 +int dimen dp_1920 0x7f070106 +int dimen dp_193 0x7f070107 +int dimen dp_194 0x7f070108 +int dimen dp_195 0x7f070109 +int dimen dp_196 0x7f07010a +int dimen dp_197 0x7f07010b +int dimen dp_198 0x7f07010c +int dimen dp_199 0x7f07010d +int dimen dp_1_5 0x7f07010e +int dimen dp_2 0x7f07010f +int dimen dp_20 0x7f070110 +int dimen dp_200 0x7f070111 +int dimen dp_201 0x7f070112 +int dimen dp_202 0x7f070113 +int dimen dp_203 0x7f070114 +int dimen dp_204 0x7f070115 +int dimen dp_205 0x7f070116 +int dimen dp_206 0x7f070117 +int dimen dp_207 0x7f070118 +int dimen dp_208 0x7f070119 +int dimen dp_209 0x7f07011a +int dimen dp_21 0x7f07011b +int dimen dp_210 0x7f07011c +int dimen dp_211 0x7f07011d +int dimen dp_212 0x7f07011e +int dimen dp_213 0x7f07011f +int dimen dp_214 0x7f070120 +int dimen dp_215 0x7f070121 +int dimen dp_216 0x7f070122 +int dimen dp_217 0x7f070123 +int dimen dp_218 0x7f070124 +int dimen dp_219 0x7f070125 +int dimen dp_22 0x7f070126 +int dimen dp_220 0x7f070127 +int dimen dp_221 0x7f070128 +int dimen dp_222 0x7f070129 +int dimen dp_223 0x7f07012a +int dimen dp_224 0x7f07012b +int dimen dp_225 0x7f07012c +int dimen dp_226 0x7f07012d +int dimen dp_227 0x7f07012e +int dimen dp_228 0x7f07012f +int dimen dp_229 0x7f070130 +int dimen dp_23 0x7f070131 +int dimen dp_230 0x7f070132 +int dimen dp_231 0x7f070133 +int dimen dp_232 0x7f070134 +int dimen dp_233 0x7f070135 +int dimen dp_234 0x7f070136 +int dimen dp_235 0x7f070137 +int dimen dp_236 0x7f070138 +int dimen dp_237 0x7f070139 +int dimen dp_238 0x7f07013a +int dimen dp_239 0x7f07013b +int dimen dp_24 0x7f07013c +int dimen dp_240 0x7f07013d +int dimen dp_241 0x7f07013e +int dimen dp_242 0x7f07013f +int dimen dp_243 0x7f070140 +int dimen dp_244 0x7f070141 +int dimen dp_245 0x7f070142 +int dimen dp_246 0x7f070143 +int dimen dp_247 0x7f070144 +int dimen dp_248 0x7f070145 +int dimen dp_249 0x7f070146 +int dimen dp_25 0x7f070147 +int dimen dp_250 0x7f070148 +int dimen dp_251 0x7f070149 +int dimen dp_252 0x7f07014a +int dimen dp_253 0x7f07014b +int dimen dp_254 0x7f07014c +int dimen dp_255 0x7f07014d +int dimen dp_256 0x7f07014e +int dimen dp_257 0x7f07014f +int dimen dp_258 0x7f070150 +int dimen dp_259 0x7f070151 +int dimen dp_26 0x7f070152 +int dimen dp_260 0x7f070153 +int dimen dp_261 0x7f070154 +int dimen dp_262 0x7f070155 +int dimen dp_263 0x7f070156 +int dimen dp_264 0x7f070157 +int dimen dp_265 0x7f070158 +int dimen dp_266 0x7f070159 +int dimen dp_267 0x7f07015a +int dimen dp_268 0x7f07015b +int dimen dp_269 0x7f07015c +int dimen dp_27 0x7f07015d +int dimen dp_270 0x7f07015e +int dimen dp_271 0x7f07015f +int dimen dp_272 0x7f070160 +int dimen dp_273 0x7f070161 +int dimen dp_274 0x7f070162 +int dimen dp_275 0x7f070163 +int dimen dp_276 0x7f070164 +int dimen dp_277 0x7f070165 +int dimen dp_278 0x7f070166 +int dimen dp_279 0x7f070167 +int dimen dp_28 0x7f070168 +int dimen dp_280 0x7f070169 +int dimen dp_281 0x7f07016a +int dimen dp_282 0x7f07016b +int dimen dp_283 0x7f07016c +int dimen dp_284 0x7f07016d +int dimen dp_285 0x7f07016e +int dimen dp_286 0x7f07016f +int dimen dp_287 0x7f070170 +int dimen dp_288 0x7f070171 +int dimen dp_289 0x7f070172 +int dimen dp_29 0x7f070173 +int dimen dp_290 0x7f070174 +int dimen dp_291 0x7f070175 +int dimen dp_292 0x7f070176 +int dimen dp_293 0x7f070177 +int dimen dp_294 0x7f070178 +int dimen dp_295 0x7f070179 +int dimen dp_296 0x7f07017a +int dimen dp_297 0x7f07017b +int dimen dp_298 0x7f07017c +int dimen dp_299 0x7f07017d +int dimen dp_2_5 0x7f07017e +int dimen dp_3 0x7f07017f +int dimen dp_30 0x7f070180 +int dimen dp_300 0x7f070181 +int dimen dp_301 0x7f070182 +int dimen dp_302 0x7f070183 +int dimen dp_303 0x7f070184 +int dimen dp_304 0x7f070185 +int dimen dp_305 0x7f070186 +int dimen dp_306 0x7f070187 +int dimen dp_307 0x7f070188 +int dimen dp_308 0x7f070189 +int dimen dp_309 0x7f07018a +int dimen dp_31 0x7f07018b +int dimen dp_310 0x7f07018c +int dimen dp_311 0x7f07018d +int dimen dp_312 0x7f07018e +int dimen dp_313 0x7f07018f +int dimen dp_314 0x7f070190 +int dimen dp_315 0x7f070191 +int dimen dp_316 0x7f070192 +int dimen dp_317 0x7f070193 +int dimen dp_318 0x7f070194 +int dimen dp_319 0x7f070195 +int dimen dp_32 0x7f070196 +int dimen dp_320 0x7f070197 +int dimen dp_321 0x7f070198 +int dimen dp_322 0x7f070199 +int dimen dp_323 0x7f07019a +int dimen dp_324 0x7f07019b +int dimen dp_325 0x7f07019c +int dimen dp_326 0x7f07019d +int dimen dp_327 0x7f07019e +int dimen dp_328 0x7f07019f +int dimen dp_329 0x7f0701a0 +int dimen dp_33 0x7f0701a1 +int dimen dp_330 0x7f0701a2 +int dimen dp_331 0x7f0701a3 +int dimen dp_332 0x7f0701a4 +int dimen dp_333 0x7f0701a5 +int dimen dp_334 0x7f0701a6 +int dimen dp_335 0x7f0701a7 +int dimen dp_336 0x7f0701a8 +int dimen dp_337 0x7f0701a9 +int dimen dp_338 0x7f0701aa +int dimen dp_339 0x7f0701ab +int dimen dp_34 0x7f0701ac +int dimen dp_340 0x7f0701ad +int dimen dp_341 0x7f0701ae +int dimen dp_342 0x7f0701af +int dimen dp_343 0x7f0701b0 +int dimen dp_344 0x7f0701b1 +int dimen dp_345 0x7f0701b2 +int dimen dp_346 0x7f0701b3 +int dimen dp_347 0x7f0701b4 +int dimen dp_348 0x7f0701b5 +int dimen dp_349 0x7f0701b6 +int dimen dp_35 0x7f0701b7 +int dimen dp_350 0x7f0701b8 +int dimen dp_351 0x7f0701b9 +int dimen dp_352 0x7f0701ba +int dimen dp_353 0x7f0701bb +int dimen dp_354 0x7f0701bc +int dimen dp_355 0x7f0701bd +int dimen dp_356 0x7f0701be +int dimen dp_357 0x7f0701bf +int dimen dp_358 0x7f0701c0 +int dimen dp_359 0x7f0701c1 +int dimen dp_36 0x7f0701c2 +int dimen dp_366 0x7f0701c3 +int dimen dp_367 0x7f0701c4 +int dimen dp_368 0x7f0701c5 +int dimen dp_369 0x7f0701c6 +int dimen dp_37 0x7f0701c7 +int dimen dp_370 0x7f0701c8 +int dimen dp_371 0x7f0701c9 +int dimen dp_372 0x7f0701ca +int dimen dp_373 0x7f0701cb +int dimen dp_374 0x7f0701cc +int dimen dp_375 0x7f0701cd +int dimen dp_376 0x7f0701ce +int dimen dp_377 0x7f0701cf +int dimen dp_378 0x7f0701d0 +int dimen dp_379 0x7f0701d1 +int dimen dp_38 0x7f0701d2 +int dimen dp_380 0x7f0701d3 +int dimen dp_381 0x7f0701d4 +int dimen dp_382 0x7f0701d5 +int dimen dp_383 0x7f0701d6 +int dimen dp_384 0x7f0701d7 +int dimen dp_385 0x7f0701d8 +int dimen dp_386 0x7f0701d9 +int dimen dp_387 0x7f0701da +int dimen dp_388 0x7f0701db +int dimen dp_389 0x7f0701dc +int dimen dp_39 0x7f0701dd +int dimen dp_390 0x7f0701de +int dimen dp_391 0x7f0701df +int dimen dp_392 0x7f0701e0 +int dimen dp_393 0x7f0701e1 +int dimen dp_394 0x7f0701e2 +int dimen dp_395 0x7f0701e3 +int dimen dp_396 0x7f0701e4 +int dimen dp_397 0x7f0701e5 +int dimen dp_398 0x7f0701e6 +int dimen dp_399 0x7f0701e7 +int dimen dp_3_5 0x7f0701e8 +int dimen dp_4 0x7f0701e9 +int dimen dp_40 0x7f0701ea +int dimen dp_400 0x7f0701eb +int dimen dp_401 0x7f0701ec +int dimen dp_402 0x7f0701ed +int dimen dp_403 0x7f0701ee +int dimen dp_404 0x7f0701ef +int dimen dp_405 0x7f0701f0 +int dimen dp_406 0x7f0701f1 +int dimen dp_407 0x7f0701f2 +int dimen dp_408 0x7f0701f3 +int dimen dp_409 0x7f0701f4 +int dimen dp_41 0x7f0701f5 +int dimen dp_410 0x7f0701f6 +int dimen dp_411 0x7f0701f7 +int dimen dp_412 0x7f0701f8 +int dimen dp_413 0x7f0701f9 +int dimen dp_414 0x7f0701fa +int dimen dp_415 0x7f0701fb +int dimen dp_416 0x7f0701fc +int dimen dp_417 0x7f0701fd +int dimen dp_418 0x7f0701fe +int dimen dp_419 0x7f0701ff +int dimen dp_42 0x7f070200 +int dimen dp_420 0x7f070201 +int dimen dp_421 0x7f070202 +int dimen dp_422 0x7f070203 +int dimen dp_423 0x7f070204 +int dimen dp_424 0x7f070205 +int dimen dp_425 0x7f070206 +int dimen dp_426 0x7f070207 +int dimen dp_427 0x7f070208 +int dimen dp_428 0x7f070209 +int dimen dp_429 0x7f07020a +int dimen dp_43 0x7f07020b +int dimen dp_430 0x7f07020c +int dimen dp_431 0x7f07020d +int dimen dp_432 0x7f07020e +int dimen dp_433 0x7f07020f +int dimen dp_434 0x7f070210 +int dimen dp_435 0x7f070211 +int dimen dp_436 0x7f070212 +int dimen dp_437 0x7f070213 +int dimen dp_438 0x7f070214 +int dimen dp_439 0x7f070215 +int dimen dp_44 0x7f070216 +int dimen dp_440 0x7f070217 +int dimen dp_441 0x7f070218 +int dimen dp_442 0x7f070219 +int dimen dp_443 0x7f07021a +int dimen dp_444 0x7f07021b +int dimen dp_445 0x7f07021c +int dimen dp_446 0x7f07021d +int dimen dp_447 0x7f07021e +int dimen dp_448 0x7f07021f +int dimen dp_449 0x7f070220 +int dimen dp_45 0x7f070221 +int dimen dp_450 0x7f070222 +int dimen dp_451 0x7f070223 +int dimen dp_452 0x7f070224 +int dimen dp_453 0x7f070225 +int dimen dp_454 0x7f070226 +int dimen dp_455 0x7f070227 +int dimen dp_456 0x7f070228 +int dimen dp_457 0x7f070229 +int dimen dp_458 0x7f07022a +int dimen dp_459 0x7f07022b +int dimen dp_46 0x7f07022c +int dimen dp_460 0x7f07022d +int dimen dp_461 0x7f07022e +int dimen dp_462 0x7f07022f +int dimen dp_463 0x7f070230 +int dimen dp_464 0x7f070231 +int dimen dp_465 0x7f070232 +int dimen dp_466 0x7f070233 +int dimen dp_467 0x7f070234 +int dimen dp_468 0x7f070235 +int dimen dp_469 0x7f070236 +int dimen dp_47 0x7f070237 +int dimen dp_470 0x7f070238 +int dimen dp_471 0x7f070239 +int dimen dp_472 0x7f07023a +int dimen dp_473 0x7f07023b +int dimen dp_474 0x7f07023c +int dimen dp_475 0x7f07023d +int dimen dp_476 0x7f07023e +int dimen dp_477 0x7f07023f +int dimen dp_478 0x7f070240 +int dimen dp_479 0x7f070241 +int dimen dp_48 0x7f070242 +int dimen dp_480 0x7f070243 +int dimen dp_481 0x7f070244 +int dimen dp_482 0x7f070245 +int dimen dp_483 0x7f070246 +int dimen dp_484 0x7f070247 +int dimen dp_485 0x7f070248 +int dimen dp_486 0x7f070249 +int dimen dp_487 0x7f07024a +int dimen dp_488 0x7f07024b +int dimen dp_489 0x7f07024c +int dimen dp_49 0x7f07024d +int dimen dp_490 0x7f07024e +int dimen dp_491 0x7f07024f +int dimen dp_492 0x7f070250 +int dimen dp_493 0x7f070251 +int dimen dp_494 0x7f070252 +int dimen dp_495 0x7f070253 +int dimen dp_496 0x7f070254 +int dimen dp_497 0x7f070255 +int dimen dp_498 0x7f070256 +int dimen dp_499 0x7f070257 +int dimen dp_4_5 0x7f070258 +int dimen dp_5 0x7f070259 +int dimen dp_50 0x7f07025a +int dimen dp_500 0x7f07025b +int dimen dp_501 0x7f07025c +int dimen dp_502 0x7f07025d +int dimen dp_503 0x7f07025e +int dimen dp_504 0x7f07025f +int dimen dp_505 0x7f070260 +int dimen dp_506 0x7f070261 +int dimen dp_507 0x7f070262 +int dimen dp_508 0x7f070263 +int dimen dp_509 0x7f070264 +int dimen dp_51 0x7f070265 +int dimen dp_510 0x7f070266 +int dimen dp_511 0x7f070267 +int dimen dp_512 0x7f070268 +int dimen dp_513 0x7f070269 +int dimen dp_514 0x7f07026a +int dimen dp_515 0x7f07026b +int dimen dp_516 0x7f07026c +int dimen dp_517 0x7f07026d +int dimen dp_518 0x7f07026e +int dimen dp_519 0x7f07026f +int dimen dp_52 0x7f070270 +int dimen dp_520 0x7f070271 +int dimen dp_521 0x7f070272 +int dimen dp_522 0x7f070273 +int dimen dp_523 0x7f070274 +int dimen dp_524 0x7f070275 +int dimen dp_525 0x7f070276 +int dimen dp_526 0x7f070277 +int dimen dp_527 0x7f070278 +int dimen dp_528 0x7f070279 +int dimen dp_529 0x7f07027a +int dimen dp_53 0x7f07027b +int dimen dp_530 0x7f07027c +int dimen dp_531 0x7f07027d +int dimen dp_532 0x7f07027e +int dimen dp_533 0x7f07027f +int dimen dp_534 0x7f070280 +int dimen dp_535 0x7f070281 +int dimen dp_536 0x7f070282 +int dimen dp_537 0x7f070283 +int dimen dp_538 0x7f070284 +int dimen dp_539 0x7f070285 +int dimen dp_54 0x7f070286 +int dimen dp_540 0x7f070287 +int dimen dp_541 0x7f070288 +int dimen dp_542 0x7f070289 +int dimen dp_543 0x7f07028a +int dimen dp_544 0x7f07028b +int dimen dp_545 0x7f07028c +int dimen dp_546 0x7f07028d +int dimen dp_547 0x7f07028e +int dimen dp_548 0x7f07028f +int dimen dp_549 0x7f070290 +int dimen dp_55 0x7f070291 +int dimen dp_550 0x7f070292 +int dimen dp_551 0x7f070293 +int dimen dp_552 0x7f070294 +int dimen dp_553 0x7f070295 +int dimen dp_554 0x7f070296 +int dimen dp_555 0x7f070297 +int dimen dp_556 0x7f070298 +int dimen dp_557 0x7f070299 +int dimen dp_558 0x7f07029a +int dimen dp_559 0x7f07029b +int dimen dp_56 0x7f07029c +int dimen dp_560 0x7f07029d +int dimen dp_561 0x7f07029e +int dimen dp_562 0x7f07029f +int dimen dp_563 0x7f0702a0 +int dimen dp_564 0x7f0702a1 +int dimen dp_565 0x7f0702a2 +int dimen dp_566 0x7f0702a3 +int dimen dp_567 0x7f0702a4 +int dimen dp_568 0x7f0702a5 +int dimen dp_569 0x7f0702a6 +int dimen dp_57 0x7f0702a7 +int dimen dp_570 0x7f0702a8 +int dimen dp_571 0x7f0702a9 +int dimen dp_572 0x7f0702aa +int dimen dp_573 0x7f0702ab +int dimen dp_574 0x7f0702ac +int dimen dp_575 0x7f0702ad +int dimen dp_576 0x7f0702ae +int dimen dp_577 0x7f0702af +int dimen dp_578 0x7f0702b0 +int dimen dp_579 0x7f0702b1 +int dimen dp_57_5 0x7f0702b2 +int dimen dp_58 0x7f0702b3 +int dimen dp_580 0x7f0702b4 +int dimen dp_581 0x7f0702b5 +int dimen dp_582 0x7f0702b6 +int dimen dp_583 0x7f0702b7 +int dimen dp_584 0x7f0702b8 +int dimen dp_585 0x7f0702b9 +int dimen dp_586 0x7f0702ba +int dimen dp_587 0x7f0702bb +int dimen dp_588 0x7f0702bc +int dimen dp_589 0x7f0702bd +int dimen dp_59 0x7f0702be +int dimen dp_590 0x7f0702bf +int dimen dp_591 0x7f0702c0 +int dimen dp_592 0x7f0702c1 +int dimen dp_593 0x7f0702c2 +int dimen dp_594 0x7f0702c3 +int dimen dp_595 0x7f0702c4 +int dimen dp_596 0x7f0702c5 +int dimen dp_597 0x7f0702c6 +int dimen dp_598 0x7f0702c7 +int dimen dp_599 0x7f0702c8 +int dimen dp_6 0x7f0702c9 +int dimen dp_60 0x7f0702ca +int dimen dp_600 0x7f0702cb +int dimen dp_601 0x7f0702cc +int dimen dp_602 0x7f0702cd +int dimen dp_603 0x7f0702ce +int dimen dp_604 0x7f0702cf +int dimen dp_605 0x7f0702d0 +int dimen dp_606 0x7f0702d1 +int dimen dp_607 0x7f0702d2 +int dimen dp_608 0x7f0702d3 +int dimen dp_609 0x7f0702d4 +int dimen dp_61 0x7f0702d5 +int dimen dp_610 0x7f0702d6 +int dimen dp_611 0x7f0702d7 +int dimen dp_612 0x7f0702d8 +int dimen dp_613 0x7f0702d9 +int dimen dp_614 0x7f0702da +int dimen dp_615 0x7f0702db +int dimen dp_616 0x7f0702dc +int dimen dp_617 0x7f0702dd +int dimen dp_618 0x7f0702de +int dimen dp_619 0x7f0702df +int dimen dp_62 0x7f0702e0 +int dimen dp_620 0x7f0702e1 +int dimen dp_621 0x7f0702e2 +int dimen dp_622 0x7f0702e3 +int dimen dp_623 0x7f0702e4 +int dimen dp_624 0x7f0702e5 +int dimen dp_625 0x7f0702e6 +int dimen dp_626 0x7f0702e7 +int dimen dp_627 0x7f0702e8 +int dimen dp_628 0x7f0702e9 +int dimen dp_629 0x7f0702ea +int dimen dp_63 0x7f0702eb +int dimen dp_630 0x7f0702ec +int dimen dp_631 0x7f0702ed +int dimen dp_632 0x7f0702ee +int dimen dp_633 0x7f0702ef +int dimen dp_634 0x7f0702f0 +int dimen dp_635 0x7f0702f1 +int dimen dp_636 0x7f0702f2 +int dimen dp_637 0x7f0702f3 +int dimen dp_638 0x7f0702f4 +int dimen dp_639 0x7f0702f5 +int dimen dp_64 0x7f0702f6 +int dimen dp_640 0x7f0702f7 +int dimen dp_641 0x7f0702f8 +int dimen dp_642 0x7f0702f9 +int dimen dp_643 0x7f0702fa +int dimen dp_644 0x7f0702fb +int dimen dp_645 0x7f0702fc +int dimen dp_646 0x7f0702fd +int dimen dp_647 0x7f0702fe +int dimen dp_648 0x7f0702ff +int dimen dp_649 0x7f070300 +int dimen dp_65 0x7f070301 +int dimen dp_650 0x7f070302 +int dimen dp_651 0x7f070303 +int dimen dp_652 0x7f070304 +int dimen dp_653 0x7f070305 +int dimen dp_654 0x7f070306 +int dimen dp_655 0x7f070307 +int dimen dp_656 0x7f070308 +int dimen dp_657 0x7f070309 +int dimen dp_658 0x7f07030a +int dimen dp_659 0x7f07030b +int dimen dp_66 0x7f07030c +int dimen dp_660 0x7f07030d +int dimen dp_661 0x7f07030e +int dimen dp_662 0x7f07030f +int dimen dp_663 0x7f070310 +int dimen dp_664 0x7f070311 +int dimen dp_665 0x7f070312 +int dimen dp_666 0x7f070313 +int dimen dp_667 0x7f070314 +int dimen dp_668 0x7f070315 +int dimen dp_669 0x7f070316 +int dimen dp_67 0x7f070317 +int dimen dp_670 0x7f070318 +int dimen dp_671 0x7f070319 +int dimen dp_672 0x7f07031a +int dimen dp_673 0x7f07031b +int dimen dp_674 0x7f07031c +int dimen dp_675 0x7f07031d +int dimen dp_676 0x7f07031e +int dimen dp_677 0x7f07031f +int dimen dp_678 0x7f070320 +int dimen dp_679 0x7f070321 +int dimen dp_68 0x7f070322 +int dimen dp_680 0x7f070323 +int dimen dp_681 0x7f070324 +int dimen dp_682 0x7f070325 +int dimen dp_683 0x7f070326 +int dimen dp_684 0x7f070327 +int dimen dp_685 0x7f070328 +int dimen dp_686 0x7f070329 +int dimen dp_687 0x7f07032a +int dimen dp_688 0x7f07032b +int dimen dp_689 0x7f07032c +int dimen dp_69 0x7f07032d +int dimen dp_690 0x7f07032e +int dimen dp_691 0x7f07032f +int dimen dp_692 0x7f070330 +int dimen dp_693 0x7f070331 +int dimen dp_694 0x7f070332 +int dimen dp_695 0x7f070333 +int dimen dp_696 0x7f070334 +int dimen dp_697 0x7f070335 +int dimen dp_698 0x7f070336 +int dimen dp_699 0x7f070337 +int dimen dp_7 0x7f070338 +int dimen dp_70 0x7f070339 +int dimen dp_700 0x7f07033a +int dimen dp_701 0x7f07033b +int dimen dp_702 0x7f07033c +int dimen dp_703 0x7f07033d +int dimen dp_704 0x7f07033e +int dimen dp_705 0x7f07033f +int dimen dp_706 0x7f070340 +int dimen dp_707 0x7f070341 +int dimen dp_708 0x7f070342 +int dimen dp_709 0x7f070343 +int dimen dp_71 0x7f070344 +int dimen dp_710 0x7f070345 +int dimen dp_711 0x7f070346 +int dimen dp_712 0x7f070347 +int dimen dp_713 0x7f070348 +int dimen dp_714 0x7f070349 +int dimen dp_715 0x7f07034a +int dimen dp_716 0x7f07034b +int dimen dp_717 0x7f07034c +int dimen dp_718 0x7f07034d +int dimen dp_719 0x7f07034e +int dimen dp_72 0x7f07034f +int dimen dp_720 0x7f070350 +int dimen dp_721 0x7f070351 +int dimen dp_722 0x7f070352 +int dimen dp_723 0x7f070353 +int dimen dp_724 0x7f070354 +int dimen dp_725 0x7f070355 +int dimen dp_726 0x7f070356 +int dimen dp_727 0x7f070357 +int dimen dp_728 0x7f070358 +int dimen dp_729 0x7f070359 +int dimen dp_73 0x7f07035a +int dimen dp_730 0x7f07035b +int dimen dp_731 0x7f07035c +int dimen dp_732 0x7f07035d +int dimen dp_733 0x7f07035e +int dimen dp_734 0x7f07035f +int dimen dp_735 0x7f070360 +int dimen dp_736 0x7f070361 +int dimen dp_737 0x7f070362 +int dimen dp_738 0x7f070363 +int dimen dp_739 0x7f070364 +int dimen dp_74 0x7f070365 +int dimen dp_740 0x7f070366 +int dimen dp_741 0x7f070367 +int dimen dp_742 0x7f070368 +int dimen dp_743 0x7f070369 +int dimen dp_744 0x7f07036a +int dimen dp_745 0x7f07036b +int dimen dp_746 0x7f07036c +int dimen dp_747 0x7f07036d +int dimen dp_748 0x7f07036e +int dimen dp_749 0x7f07036f +int dimen dp_75 0x7f070370 +int dimen dp_750 0x7f070371 +int dimen dp_751 0x7f070372 +int dimen dp_752 0x7f070373 +int dimen dp_753 0x7f070374 +int dimen dp_754 0x7f070375 +int dimen dp_755 0x7f070376 +int dimen dp_756 0x7f070377 +int dimen dp_757 0x7f070378 +int dimen dp_758 0x7f070379 +int dimen dp_759 0x7f07037a +int dimen dp_76 0x7f07037b +int dimen dp_760 0x7f07037c +int dimen dp_761 0x7f07037d +int dimen dp_762 0x7f07037e +int dimen dp_763 0x7f07037f +int dimen dp_764 0x7f070380 +int dimen dp_765 0x7f070381 +int dimen dp_766 0x7f070382 +int dimen dp_767 0x7f070383 +int dimen dp_768 0x7f070384 +int dimen dp_769 0x7f070385 +int dimen dp_77 0x7f070386 +int dimen dp_770 0x7f070387 +int dimen dp_771 0x7f070388 +int dimen dp_772 0x7f070389 +int dimen dp_773 0x7f07038a +int dimen dp_774 0x7f07038b +int dimen dp_775 0x7f07038c +int dimen dp_776 0x7f07038d +int dimen dp_777 0x7f07038e +int dimen dp_778 0x7f07038f +int dimen dp_779 0x7f070390 +int dimen dp_78 0x7f070391 +int dimen dp_780 0x7f070392 +int dimen dp_781 0x7f070393 +int dimen dp_782 0x7f070394 +int dimen dp_783 0x7f070395 +int dimen dp_784 0x7f070396 +int dimen dp_785 0x7f070397 +int dimen dp_786 0x7f070398 +int dimen dp_787 0x7f070399 +int dimen dp_788 0x7f07039a +int dimen dp_789 0x7f07039b +int dimen dp_79 0x7f07039c +int dimen dp_790 0x7f07039d +int dimen dp_791 0x7f07039e +int dimen dp_792 0x7f07039f +int dimen dp_793 0x7f0703a0 +int dimen dp_794 0x7f0703a1 +int dimen dp_795 0x7f0703a2 +int dimen dp_796 0x7f0703a3 +int dimen dp_797 0x7f0703a4 +int dimen dp_798 0x7f0703a5 +int dimen dp_799 0x7f0703a6 +int dimen dp_7_5 0x7f0703a7 +int dimen dp_8 0x7f0703a8 +int dimen dp_80 0x7f0703a9 +int dimen dp_800 0x7f0703aa +int dimen dp_801 0x7f0703ab +int dimen dp_802 0x7f0703ac +int dimen dp_803 0x7f0703ad +int dimen dp_804 0x7f0703ae +int dimen dp_805 0x7f0703af +int dimen dp_806 0x7f0703b0 +int dimen dp_807 0x7f0703b1 +int dimen dp_808 0x7f0703b2 +int dimen dp_809 0x7f0703b3 +int dimen dp_81 0x7f0703b4 +int dimen dp_810 0x7f0703b5 +int dimen dp_811 0x7f0703b6 +int dimen dp_812 0x7f0703b7 +int dimen dp_813 0x7f0703b8 +int dimen dp_814 0x7f0703b9 +int dimen dp_815 0x7f0703ba +int dimen dp_816 0x7f0703bb +int dimen dp_817 0x7f0703bc +int dimen dp_818 0x7f0703bd +int dimen dp_819 0x7f0703be +int dimen dp_82 0x7f0703bf +int dimen dp_820 0x7f0703c0 +int dimen dp_821 0x7f0703c1 +int dimen dp_822 0x7f0703c2 +int dimen dp_823 0x7f0703c3 +int dimen dp_824 0x7f0703c4 +int dimen dp_825 0x7f0703c5 +int dimen dp_826 0x7f0703c6 +int dimen dp_827 0x7f0703c7 +int dimen dp_828 0x7f0703c8 +int dimen dp_829 0x7f0703c9 +int dimen dp_83 0x7f0703ca +int dimen dp_830 0x7f0703cb +int dimen dp_831 0x7f0703cc +int dimen dp_832 0x7f0703cd +int dimen dp_833 0x7f0703ce +int dimen dp_834 0x7f0703cf +int dimen dp_835 0x7f0703d0 +int dimen dp_836 0x7f0703d1 +int dimen dp_837 0x7f0703d2 +int dimen dp_838 0x7f0703d3 +int dimen dp_839 0x7f0703d4 +int dimen dp_84 0x7f0703d5 +int dimen dp_840 0x7f0703d6 +int dimen dp_841 0x7f0703d7 +int dimen dp_842 0x7f0703d8 +int dimen dp_843 0x7f0703d9 +int dimen dp_844 0x7f0703da +int dimen dp_845 0x7f0703db +int dimen dp_846 0x7f0703dc +int dimen dp_847 0x7f0703dd +int dimen dp_848 0x7f0703de +int dimen dp_849 0x7f0703df +int dimen dp_85 0x7f0703e0 +int dimen dp_850 0x7f0703e1 +int dimen dp_851 0x7f0703e2 +int dimen dp_852 0x7f0703e3 +int dimen dp_853 0x7f0703e4 +int dimen dp_854 0x7f0703e5 +int dimen dp_855 0x7f0703e6 +int dimen dp_856 0x7f0703e7 +int dimen dp_857 0x7f0703e8 +int dimen dp_858 0x7f0703e9 +int dimen dp_859 0x7f0703ea +int dimen dp_86 0x7f0703eb +int dimen dp_860 0x7f0703ec +int dimen dp_861 0x7f0703ed +int dimen dp_862 0x7f0703ee +int dimen dp_863 0x7f0703ef +int dimen dp_864 0x7f0703f0 +int dimen dp_865 0x7f0703f1 +int dimen dp_866 0x7f0703f2 +int dimen dp_867 0x7f0703f3 +int dimen dp_868 0x7f0703f4 +int dimen dp_869 0x7f0703f5 +int dimen dp_87 0x7f0703f6 +int dimen dp_870 0x7f0703f7 +int dimen dp_871 0x7f0703f8 +int dimen dp_872 0x7f0703f9 +int dimen dp_873 0x7f0703fa +int dimen dp_874 0x7f0703fb +int dimen dp_875 0x7f0703fc +int dimen dp_876 0x7f0703fd +int dimen dp_877 0x7f0703fe +int dimen dp_878 0x7f0703ff +int dimen dp_879 0x7f070400 +int dimen dp_88 0x7f070401 +int dimen dp_880 0x7f070402 +int dimen dp_881 0x7f070403 +int dimen dp_882 0x7f070404 +int dimen dp_883 0x7f070405 +int dimen dp_884 0x7f070406 +int dimen dp_885 0x7f070407 +int dimen dp_886 0x7f070408 +int dimen dp_887 0x7f070409 +int dimen dp_888 0x7f07040a +int dimen dp_889 0x7f07040b +int dimen dp_89 0x7f07040c +int dimen dp_890 0x7f07040d +int dimen dp_891 0x7f07040e +int dimen dp_892 0x7f07040f +int dimen dp_893 0x7f070410 +int dimen dp_894 0x7f070411 +int dimen dp_895 0x7f070412 +int dimen dp_896 0x7f070413 +int dimen dp_897 0x7f070414 +int dimen dp_898 0x7f070415 +int dimen dp_899 0x7f070416 +int dimen dp_9 0x7f070417 +int dimen dp_90 0x7f070418 +int dimen dp_900 0x7f070419 +int dimen dp_901 0x7f07041a +int dimen dp_902 0x7f07041b +int dimen dp_903 0x7f07041c +int dimen dp_904 0x7f07041d +int dimen dp_905 0x7f07041e +int dimen dp_906 0x7f07041f +int dimen dp_907 0x7f070420 +int dimen dp_908 0x7f070421 +int dimen dp_909 0x7f070422 +int dimen dp_91 0x7f070423 +int dimen dp_910 0x7f070424 +int dimen dp_911 0x7f070425 +int dimen dp_912 0x7f070426 +int dimen dp_913 0x7f070427 +int dimen dp_914 0x7f070428 +int dimen dp_915 0x7f070429 +int dimen dp_916 0x7f07042a +int dimen dp_917 0x7f07042b +int dimen dp_918 0x7f07042c +int dimen dp_919 0x7f07042d +int dimen dp_92 0x7f07042e +int dimen dp_920 0x7f07042f +int dimen dp_921 0x7f070430 +int dimen dp_922 0x7f070431 +int dimen dp_923 0x7f070432 +int dimen dp_924 0x7f070433 +int dimen dp_925 0x7f070434 +int dimen dp_926 0x7f070435 +int dimen dp_927 0x7f070436 +int dimen dp_928 0x7f070437 +int dimen dp_929 0x7f070438 +int dimen dp_93 0x7f070439 +int dimen dp_930 0x7f07043a +int dimen dp_931 0x7f07043b +int dimen dp_932 0x7f07043c +int dimen dp_933 0x7f07043d +int dimen dp_934 0x7f07043e +int dimen dp_935 0x7f07043f +int dimen dp_936 0x7f070440 +int dimen dp_937 0x7f070441 +int dimen dp_938 0x7f070442 +int dimen dp_939 0x7f070443 +int dimen dp_94 0x7f070444 +int dimen dp_940 0x7f070445 +int dimen dp_941 0x7f070446 +int dimen dp_942 0x7f070447 +int dimen dp_943 0x7f070448 +int dimen dp_944 0x7f070449 +int dimen dp_945 0x7f07044a +int dimen dp_946 0x7f07044b +int dimen dp_947 0x7f07044c +int dimen dp_948 0x7f07044d +int dimen dp_949 0x7f07044e +int dimen dp_95 0x7f07044f +int dimen dp_950 0x7f070450 +int dimen dp_951 0x7f070451 +int dimen dp_952 0x7f070452 +int dimen dp_953 0x7f070453 +int dimen dp_954 0x7f070454 +int dimen dp_955 0x7f070455 +int dimen dp_956 0x7f070456 +int dimen dp_957 0x7f070457 +int dimen dp_958 0x7f070458 +int dimen dp_959 0x7f070459 +int dimen dp_96 0x7f07045a +int dimen dp_960 0x7f07045b +int dimen dp_961 0x7f07045c +int dimen dp_962 0x7f07045d +int dimen dp_963 0x7f07045e +int dimen dp_964 0x7f07045f +int dimen dp_965 0x7f070460 +int dimen dp_966 0x7f070461 +int dimen dp_967 0x7f070462 +int dimen dp_968 0x7f070463 +int dimen dp_969 0x7f070464 +int dimen dp_97 0x7f070465 +int dimen dp_970 0x7f070466 +int dimen dp_971 0x7f070467 +int dimen dp_972 0x7f070468 +int dimen dp_973 0x7f070469 +int dimen dp_974 0x7f07046a +int dimen dp_975 0x7f07046b +int dimen dp_976 0x7f07046c +int dimen dp_977 0x7f07046d +int dimen dp_978 0x7f07046e +int dimen dp_979 0x7f07046f +int dimen dp_98 0x7f070470 +int dimen dp_980 0x7f070471 +int dimen dp_981 0x7f070472 +int dimen dp_982 0x7f070473 +int dimen dp_983 0x7f070474 +int dimen dp_984 0x7f070475 +int dimen dp_985 0x7f070476 +int dimen dp_986 0x7f070477 +int dimen dp_987 0x7f070478 +int dimen dp_988 0x7f070479 +int dimen dp_989 0x7f07047a +int dimen dp_99 0x7f07047b +int dimen dp_990 0x7f07047c +int dimen dp_991 0x7f07047d +int dimen dp_992 0x7f07047e +int dimen dp_993 0x7f07047f +int dimen dp_994 0x7f070480 +int dimen dp_995 0x7f070481 +int dimen dp_996 0x7f070482 +int dimen dp_997 0x7f070483 +int dimen dp_998 0x7f070484 +int dimen dp_999 0x7f070485 +int dimen dp_m_1 0x7f070486 +int dimen dp_m_10 0x7f070487 +int dimen dp_m_12 0x7f070488 +int dimen dp_m_2 0x7f070489 +int dimen dp_m_20 0x7f07048a +int dimen dp_m_30 0x7f07048b +int dimen dp_m_5 0x7f07048c +int dimen dp_m_60 0x7f07048d +int dimen dp_m_8 0x7f07048e +int dimen exo_media_button_height 0x7f07048f +int dimen exo_media_button_width 0x7f070490 +int dimen fastscroll_default_thickness 0x7f070491 +int dimen fastscroll_margin 0x7f070492 +int dimen fastscroll_minimum_range 0x7f070493 +int dimen highlight_alpha_material_colored 0x7f070494 +int dimen highlight_alpha_material_dark 0x7f070495 +int dimen highlight_alpha_material_light 0x7f070496 +int dimen hint_alpha_material_dark 0x7f070497 +int dimen hint_alpha_material_light 0x7f070498 +int dimen hint_pressed_alpha_material_dark 0x7f070499 +int dimen hint_pressed_alpha_material_light 0x7f07049a +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f07049b +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f07049c +int dimen item_touch_helper_swipe_escape_velocity 0x7f07049d +int dimen layout_margin_bottom 0x7f07049e +int dimen material_bottom_sheet_max_width 0x7f07049f +int dimen material_clock_display_padding 0x7f0704a0 +int dimen material_clock_face_margin_top 0x7f0704a1 +int dimen material_clock_hand_center_dot_radius 0x7f0704a2 +int dimen material_clock_hand_padding 0x7f0704a3 +int dimen material_clock_hand_stroke_width 0x7f0704a4 +int dimen material_clock_number_text_size 0x7f0704a5 +int dimen material_clock_period_toggle_height 0x7f0704a6 +int dimen material_clock_period_toggle_margin_left 0x7f0704a7 +int dimen material_clock_period_toggle_width 0x7f0704a8 +int dimen material_clock_size 0x7f0704a9 +int dimen material_cursor_inset_bottom 0x7f0704aa +int dimen material_cursor_inset_top 0x7f0704ab +int dimen material_cursor_width 0x7f0704ac +int dimen material_emphasis_disabled 0x7f0704ad +int dimen material_emphasis_high_type 0x7f0704ae +int dimen material_emphasis_medium 0x7f0704af +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f0704b0 +int dimen material_filled_edittext_font_1_3_padding_top 0x7f0704b1 +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f0704b2 +int dimen material_filled_edittext_font_2_0_padding_top 0x7f0704b3 +int dimen material_font_1_3_box_collapsed_padding_top 0x7f0704b4 +int dimen material_font_2_0_box_collapsed_padding_top 0x7f0704b5 +int dimen material_helper_text_default_padding_top 0x7f0704b6 +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f0704b7 +int dimen material_helper_text_font_1_3_padding_top 0x7f0704b8 +int dimen material_input_text_to_prefix_suffix_padding 0x7f0704b9 +int dimen material_text_view_test_line_height 0x7f0704ba +int dimen material_text_view_test_line_height_override 0x7f0704bb +int dimen material_textinput_default_width 0x7f0704bc +int dimen material_textinput_max_width 0x7f0704bd +int dimen material_textinput_min_width 0x7f0704be +int dimen material_time_picker_minimum_screen_height 0x7f0704bf +int dimen material_time_picker_minimum_screen_width 0x7f0704c0 +int dimen material_timepicker_dialog_buttons_margin_top 0x7f0704c1 +int dimen module_commons_toast_icon_width 0x7f0704c2 +int dimen module_commons_toast_marginBottom 0x7f0704c3 +int dimen module_commons_toast_marginLeft 0x7f0704c4 +int dimen module_commons_toast_marginRight 0x7f0704c5 +int dimen module_commons_toast_marginTop 0x7f0704c6 +int dimen module_commons_toast_maxWidth 0x7f0704c7 +int dimen module_commons_toast_minWidth 0x7f0704c8 +int dimen module_commons_toast_space_between_icon_and_msg 0x7f0704c9 +int dimen module_commons_toast_textSize 0x7f0704ca +int dimen module_commons_toast_with_left_drawable_marginBottom 0x7f0704cb +int dimen module_commons_toast_with_left_drawable_marginLeft 0x7f0704cc +int dimen module_commons_toast_with_left_drawable_marginTop 0x7f0704cd +int dimen module_commons_toast_y_offset 0x7f0704ce +int dimen module_ext_arcView_center_text_size 0x7f0704cf +int dimen module_ext_arcView_des_text_size 0x7f0704d0 +int dimen module_ext_arcView_height 0x7f0704d1 +int dimen module_ext_arcView_stroke_with 0x7f0704d2 +int dimen module_ext_arcView_top 0x7f0704d3 +int dimen module_ext_arcView_width 0x7f0704d4 +int dimen module_ext_speed_height 0x7f0704d5 +int dimen module_ext_speed_padding 0x7f0704d6 +int dimen module_ext_speed_width 0x7f0704d7 +int dimen module_ext_speed_width_big_radius 0x7f0704d8 +int dimen module_ext_speed_width_sm_radius 0x7f0704d9 +int dimen module_hmi_autopilot_status_bg_big_radius 0x7f0704da +int dimen module_hmi_autopilot_status_bg_sm_radius 0x7f0704db +int dimen module_hmi_btn_size 0x7f0704dc +int dimen module_hmi_btn_text_size 0x7f0704dd +int dimen module_hmi_check_left 0x7f0704de +int dimen module_hmi_check_size 0x7f0704df +int dimen module_mogo_autopilot_status_bg_height 0x7f0704e0 +int dimen module_mogo_autopilot_status_bg_width 0x7f0704e1 +int dimen module_mogo_autopilot_status_icon_margin 0x7f0704e2 +int dimen module_mogo_autopilot_status_icon_width 0x7f0704e3 +int dimen module_mogo_autopilot_status_margin_left 0x7f0704e4 +int dimen module_mogo_autopilot_status_margin_top 0x7f0704e5 +int dimen module_mogo_autopilot_status_padding 0x7f0704e6 +int dimen module_mogo_autopilot_status_text_margin_start 0x7f0704e7 +int dimen module_mogo_autopilot_status_text_size 0x7f0704e8 +int dimen module_services_empty_tip_marginTop 0x7f0704e9 +int dimen module_services_empty_tip_textSize 0x7f0704ea +int dimen module_services_id_panel_item_avatar_border_width 0x7f0704eb +int dimen module_services_id_panel_item_distance_marginLeft 0x7f0704ec +int dimen module_services_load_strategy_marginRight 0x7f0704ed +int dimen module_services_load_strategy_paddingLeft 0x7f0704ee +int dimen module_services_load_strategy_paddingTop 0x7f0704ef +int dimen module_services_load_strategy_textSize 0x7f0704f0 +int dimen module_services_online_car_panel_recycler_view_margin_top 0x7f0704f1 +int dimen module_services_online_car_panel_title_margin_top 0x7f0704f2 +int dimen module_services_online_car_panel_title_text_size 0x7f0704f3 +int dimen module_services_panel_item_avatar_size 0x7f0704f4 +int dimen module_services_panel_item_corner 0x7f0704f5 +int dimen module_services_panel_item_detail_bkg_corner 0x7f0704f6 +int dimen module_services_panel_item_detail_padding 0x7f0704f7 +int dimen module_services_panel_item_detail_textSize 0x7f0704f8 +int dimen module_services_panel_item_distance_textSize 0x7f0704f9 +int dimen module_services_panel_item_marginBottom 0x7f0704fa +int dimen module_services_panel_item_nickname_marginLeft 0x7f0704fb +int dimen module_services_panel_item_nickname_textSize 0x7f0704fc +int dimen module_services_panel_item_padding 0x7f0704fd +int dimen module_services_panel_strategy_button_bkg_corner 0x7f0704fe +int dimen module_services_panel_strategy_button_marginTop 0x7f0704ff +int dimen module_switch_image 0x7f070500 +int dimen module_switch_image_circle 0x7f070501 +int dimen module_switch_map 0x7f070502 +int dimen module_switch_map_height 0x7f070503 +int dimen module_switch_margin_left 0x7f070504 +int dimen module_switch_text_size 0x7f070505 +int dimen module_vip_height 0x7f070506 +int dimen module_vip_margin_left 0x7f070507 +int dimen module_vip_margin_left_bus_passenger 0x7f070508 +int dimen module_vip_margin_left_taxi_passenger 0x7f070509 +int dimen module_vip_margin_top 0x7f07050a +int dimen module_vip_margin_top_passenger 0x7f07050b +int dimen module_vip_width 0x7f07050c +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f07050d +int dimen mtrl_alert_dialog_background_inset_end 0x7f07050e +int dimen mtrl_alert_dialog_background_inset_start 0x7f07050f +int dimen mtrl_alert_dialog_background_inset_top 0x7f070510 +int dimen mtrl_alert_dialog_picker_background_inset 0x7f070511 +int dimen mtrl_badge_horizontal_edge_offset 0x7f070512 +int dimen mtrl_badge_long_text_horizontal_padding 0x7f070513 +int dimen mtrl_badge_radius 0x7f070514 +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f070515 +int dimen mtrl_badge_text_size 0x7f070516 +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f070517 +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f070518 +int dimen mtrl_badge_with_text_radius 0x7f070519 +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f07051a +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f07051b +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f07051c +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f07051d +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f07051e +int dimen mtrl_bottomappbar_height 0x7f07051f +int dimen mtrl_btn_corner_radius 0x7f070520 +int dimen mtrl_btn_dialog_btn_min_width 0x7f070521 +int dimen mtrl_btn_disabled_elevation 0x7f070522 +int dimen mtrl_btn_disabled_z 0x7f070523 +int dimen mtrl_btn_elevation 0x7f070524 +int dimen mtrl_btn_focused_z 0x7f070525 +int dimen mtrl_btn_hovered_z 0x7f070526 +int dimen mtrl_btn_icon_btn_padding_left 0x7f070527 +int dimen mtrl_btn_icon_padding 0x7f070528 +int dimen mtrl_btn_inset 0x7f070529 +int dimen mtrl_btn_letter_spacing 0x7f07052a +int dimen mtrl_btn_max_width 0x7f07052b +int dimen mtrl_btn_padding_bottom 0x7f07052c +int dimen mtrl_btn_padding_left 0x7f07052d +int dimen mtrl_btn_padding_right 0x7f07052e +int dimen mtrl_btn_padding_top 0x7f07052f +int dimen mtrl_btn_pressed_z 0x7f070530 +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f070531 +int dimen mtrl_btn_stroke_size 0x7f070532 +int dimen mtrl_btn_text_btn_icon_padding 0x7f070533 +int dimen mtrl_btn_text_btn_padding_left 0x7f070534 +int dimen mtrl_btn_text_btn_padding_right 0x7f070535 +int dimen mtrl_btn_text_size 0x7f070536 +int dimen mtrl_btn_z 0x7f070537 +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f070538 +int dimen mtrl_calendar_action_height 0x7f070539 +int dimen mtrl_calendar_action_padding 0x7f07053a +int dimen mtrl_calendar_bottom_padding 0x7f07053b +int dimen mtrl_calendar_content_padding 0x7f07053c +int dimen mtrl_calendar_day_corner 0x7f07053d +int dimen mtrl_calendar_day_height 0x7f07053e +int dimen mtrl_calendar_day_horizontal_padding 0x7f07053f +int dimen mtrl_calendar_day_today_stroke 0x7f070540 +int dimen mtrl_calendar_day_vertical_padding 0x7f070541 +int dimen mtrl_calendar_day_width 0x7f070542 +int dimen mtrl_calendar_days_of_week_height 0x7f070543 +int dimen mtrl_calendar_dialog_background_inset 0x7f070544 +int dimen mtrl_calendar_header_content_padding 0x7f070545 +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f070546 +int dimen mtrl_calendar_header_divider_thickness 0x7f070547 +int dimen mtrl_calendar_header_height 0x7f070548 +int dimen mtrl_calendar_header_height_fullscreen 0x7f070549 +int dimen mtrl_calendar_header_selection_line_height 0x7f07054a +int dimen mtrl_calendar_header_text_padding 0x7f07054b +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f07054c +int dimen mtrl_calendar_header_toggle_margin_top 0x7f07054d +int dimen mtrl_calendar_landscape_header_width 0x7f07054e +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f07054f +int dimen mtrl_calendar_month_horizontal_padding 0x7f070550 +int dimen mtrl_calendar_month_vertical_padding 0x7f070551 +int dimen mtrl_calendar_navigation_bottom_padding 0x7f070552 +int dimen mtrl_calendar_navigation_height 0x7f070553 +int dimen mtrl_calendar_navigation_top_padding 0x7f070554 +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f070555 +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f070556 +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f070557 +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f070558 +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f070559 +int dimen mtrl_calendar_text_input_padding_top 0x7f07055a +int dimen mtrl_calendar_title_baseline_to_top 0x7f07055b +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f07055c +int dimen mtrl_calendar_year_corner 0x7f07055d +int dimen mtrl_calendar_year_height 0x7f07055e +int dimen mtrl_calendar_year_horizontal_padding 0x7f07055f +int dimen mtrl_calendar_year_vertical_padding 0x7f070560 +int dimen mtrl_calendar_year_width 0x7f070561 +int dimen mtrl_card_checked_icon_margin 0x7f070562 +int dimen mtrl_card_checked_icon_size 0x7f070563 +int dimen mtrl_card_corner_radius 0x7f070564 +int dimen mtrl_card_dragged_z 0x7f070565 +int dimen mtrl_card_elevation 0x7f070566 +int dimen mtrl_card_spacing 0x7f070567 +int dimen mtrl_chip_pressed_translation_z 0x7f070568 +int dimen mtrl_chip_text_size 0x7f070569 +int dimen mtrl_edittext_rectangle_top_offset 0x7f07056a +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f07056b +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f07056c +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f07056d +int dimen mtrl_extended_fab_bottom_padding 0x7f07056e +int dimen mtrl_extended_fab_corner_radius 0x7f07056f +int dimen mtrl_extended_fab_disabled_elevation 0x7f070570 +int dimen mtrl_extended_fab_disabled_translation_z 0x7f070571 +int dimen mtrl_extended_fab_elevation 0x7f070572 +int dimen mtrl_extended_fab_end_padding 0x7f070573 +int dimen mtrl_extended_fab_end_padding_icon 0x7f070574 +int dimen mtrl_extended_fab_icon_size 0x7f070575 +int dimen mtrl_extended_fab_icon_text_spacing 0x7f070576 +int dimen mtrl_extended_fab_min_height 0x7f070577 +int dimen mtrl_extended_fab_min_width 0x7f070578 +int dimen mtrl_extended_fab_start_padding 0x7f070579 +int dimen mtrl_extended_fab_start_padding_icon 0x7f07057a +int dimen mtrl_extended_fab_top_padding 0x7f07057b +int dimen mtrl_extended_fab_translation_z_base 0x7f07057c +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f07057d +int dimen mtrl_extended_fab_translation_z_pressed 0x7f07057e +int dimen mtrl_fab_elevation 0x7f07057f +int dimen mtrl_fab_min_touch_target 0x7f070580 +int dimen mtrl_fab_translation_z_hovered_focused 0x7f070581 +int dimen mtrl_fab_translation_z_pressed 0x7f070582 +int dimen mtrl_high_ripple_default_alpha 0x7f070583 +int dimen mtrl_high_ripple_focused_alpha 0x7f070584 +int dimen mtrl_high_ripple_hovered_alpha 0x7f070585 +int dimen mtrl_high_ripple_pressed_alpha 0x7f070586 +int dimen mtrl_large_touch_target 0x7f070587 +int dimen mtrl_low_ripple_default_alpha 0x7f070588 +int dimen mtrl_low_ripple_focused_alpha 0x7f070589 +int dimen mtrl_low_ripple_hovered_alpha 0x7f07058a +int dimen mtrl_low_ripple_pressed_alpha 0x7f07058b +int dimen mtrl_min_touch_target_size 0x7f07058c +int dimen mtrl_navigation_bar_item_default_icon_size 0x7f07058d +int dimen mtrl_navigation_bar_item_default_margin 0x7f07058e +int dimen mtrl_navigation_elevation 0x7f07058f +int dimen mtrl_navigation_item_horizontal_padding 0x7f070590 +int dimen mtrl_navigation_item_icon_padding 0x7f070591 +int dimen mtrl_navigation_item_icon_size 0x7f070592 +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f070593 +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f070594 +int dimen mtrl_navigation_rail_active_text_size 0x7f070595 +int dimen mtrl_navigation_rail_compact_width 0x7f070596 +int dimen mtrl_navigation_rail_default_width 0x7f070597 +int dimen mtrl_navigation_rail_elevation 0x7f070598 +int dimen mtrl_navigation_rail_icon_margin 0x7f070599 +int dimen mtrl_navigation_rail_icon_size 0x7f07059a +int dimen mtrl_navigation_rail_margin 0x7f07059b +int dimen mtrl_navigation_rail_text_bottom_margin 0x7f07059c +int dimen mtrl_navigation_rail_text_size 0x7f07059d +int dimen mtrl_progress_circular_inset 0x7f07059e +int dimen mtrl_progress_circular_inset_extra_small 0x7f07059f +int dimen mtrl_progress_circular_inset_medium 0x7f0705a0 +int dimen mtrl_progress_circular_inset_small 0x7f0705a1 +int dimen mtrl_progress_circular_radius 0x7f0705a2 +int dimen mtrl_progress_circular_size 0x7f0705a3 +int dimen mtrl_progress_circular_size_extra_small 0x7f0705a4 +int dimen mtrl_progress_circular_size_medium 0x7f0705a5 +int dimen mtrl_progress_circular_size_small 0x7f0705a6 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f0705a7 +int dimen mtrl_progress_circular_track_thickness_medium 0x7f0705a8 +int dimen mtrl_progress_circular_track_thickness_small 0x7f0705a9 +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f0705aa +int dimen mtrl_progress_track_thickness 0x7f0705ab +int dimen mtrl_shape_corner_size_large_component 0x7f0705ac +int dimen mtrl_shape_corner_size_medium_component 0x7f0705ad +int dimen mtrl_shape_corner_size_small_component 0x7f0705ae +int dimen mtrl_slider_halo_radius 0x7f0705af +int dimen mtrl_slider_label_padding 0x7f0705b0 +int dimen mtrl_slider_label_radius 0x7f0705b1 +int dimen mtrl_slider_label_square_side 0x7f0705b2 +int dimen mtrl_slider_thumb_elevation 0x7f0705b3 +int dimen mtrl_slider_thumb_radius 0x7f0705b4 +int dimen mtrl_slider_track_height 0x7f0705b5 +int dimen mtrl_slider_track_side_padding 0x7f0705b6 +int dimen mtrl_slider_track_top 0x7f0705b7 +int dimen mtrl_slider_widget_height 0x7f0705b8 +int dimen mtrl_snackbar_action_text_color_alpha 0x7f0705b9 +int dimen mtrl_snackbar_background_corner_radius 0x7f0705ba +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f0705bb +int dimen mtrl_snackbar_margin 0x7f0705bc +int dimen mtrl_snackbar_message_margin_horizontal 0x7f0705bd +int dimen mtrl_snackbar_padding_horizontal 0x7f0705be +int dimen mtrl_switch_thumb_elevation 0x7f0705bf +int dimen mtrl_textinput_box_corner_radius_medium 0x7f0705c0 +int dimen mtrl_textinput_box_corner_radius_small 0x7f0705c1 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f0705c2 +int dimen mtrl_textinput_box_stroke_width_default 0x7f0705c3 +int dimen mtrl_textinput_box_stroke_width_focused 0x7f0705c4 +int dimen mtrl_textinput_counter_margin_start 0x7f0705c5 +int dimen mtrl_textinput_end_icon_margin_start 0x7f0705c6 +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0705c7 +int dimen mtrl_textinput_start_icon_margin_end 0x7f0705c8 +int dimen mtrl_toolbar_default_height 0x7f0705c9 +int dimen mtrl_tooltip_arrowSize 0x7f0705ca +int dimen mtrl_tooltip_cornerSize 0x7f0705cb +int dimen mtrl_tooltip_minHeight 0x7f0705cc +int dimen mtrl_tooltip_minWidth 0x7f0705cd +int dimen mtrl_tooltip_padding 0x7f0705ce +int dimen mtrl_transition_shared_axis_slide_distance 0x7f0705cf +int dimen notice_current_time_margin 0x7f0705d0 +int dimen notice_fullscreen_bt 0x7f0705d1 +int dimen notice_loading_bt 0x7f0705d2 +int dimen notice_play_bottom 0x7f0705d3 +int dimen notice_play_height 0x7f0705d4 +int dimen notice_play_marginleft 0x7f0705d5 +int dimen notice_play_marginleft_small 0x7f0705d6 +int dimen notice_play_marginright 0x7f0705d7 +int dimen notice_play_marginright_small 0x7f0705d8 +int dimen notice_seekbar_bottom 0x7f0705d9 +int dimen notice_seekbar_width 0x7f0705da +int dimen notice_seekbar_width_small 0x7f0705db +int dimen notice_time_bottom 0x7f0705dc +int dimen notification_action_icon_size 0x7f0705dd +int dimen notification_action_text_size 0x7f0705de +int dimen notification_big_circle_margin 0x7f0705df +int dimen notification_content_margin_start 0x7f0705e0 +int dimen notification_large_icon_height 0x7f0705e1 +int dimen notification_large_icon_width 0x7f0705e2 +int dimen notification_main_column_padding_top 0x7f0705e3 +int dimen notification_media_narrow_margin 0x7f0705e4 +int dimen notification_right_icon_size 0x7f0705e5 +int dimen notification_right_side_padding_top 0x7f0705e6 +int dimen notification_small_icon_background_padding 0x7f0705e7 +int dimen notification_small_icon_size_as_large 0x7f0705e8 +int dimen notification_subtext_size 0x7f0705e9 +int dimen notification_top_pad 0x7f0705ea +int dimen notification_top_pad_large_text 0x7f0705eb +int dimen seek_bar_image 0x7f0705ec +int dimen sp_10 0x7f0705ed +int dimen sp_11 0x7f0705ee +int dimen sp_12 0x7f0705ef +int dimen sp_120 0x7f0705f0 +int dimen sp_13 0x7f0705f1 +int dimen sp_14 0x7f0705f2 +int dimen sp_15 0x7f0705f3 +int dimen sp_16 0x7f0705f4 +int dimen sp_17 0x7f0705f5 +int dimen sp_18 0x7f0705f6 +int dimen sp_19 0x7f0705f7 +int dimen sp_20 0x7f0705f8 +int dimen sp_21 0x7f0705f9 +int dimen sp_22 0x7f0705fa +int dimen sp_23 0x7f0705fb +int dimen sp_24 0x7f0705fc +int dimen sp_25 0x7f0705fd +int dimen sp_28 0x7f0705fe +int dimen sp_30 0x7f0705ff +int dimen sp_32 0x7f070600 +int dimen sp_34 0x7f070601 +int dimen sp_36 0x7f070602 +int dimen sp_38 0x7f070603 +int dimen sp_40 0x7f070604 +int dimen sp_42 0x7f070605 +int dimen sp_46 0x7f070606 +int dimen sp_48 0x7f070607 +int dimen sp_6 0x7f070608 +int dimen sp_7 0x7f070609 +int dimen sp_76 0x7f07060a +int dimen sp_8 0x7f07060b +int dimen sp_9 0x7f07060c +int dimen test_mtrl_calendar_day_cornerSize 0x7f07060d +int dimen test_navigation_bar_active_item_max_width 0x7f07060e +int dimen test_navigation_bar_active_item_min_width 0x7f07060f +int dimen test_navigation_bar_active_text_size 0x7f070610 +int dimen test_navigation_bar_elevation 0x7f070611 +int dimen test_navigation_bar_height 0x7f070612 +int dimen test_navigation_bar_icon_size 0x7f070613 +int dimen test_navigation_bar_item_max_width 0x7f070614 +int dimen test_navigation_bar_item_min_width 0x7f070615 +int dimen test_navigation_bar_label_padding 0x7f070616 +int dimen test_navigation_bar_shadow_height 0x7f070617 +int dimen test_navigation_bar_text_size 0x7f070618 +int dimen time_textsize 0x7f070619 +int dimen tooltip_corner_radius 0x7f07061a +int dimen tooltip_horizontal_padding 0x7f07061b +int dimen tooltip_margin 0x7f07061c +int dimen tooltip_precise_anchor_extra_offset 0x7f07061d +int dimen tooltip_precise_anchor_threshold 0x7f07061e +int dimen tooltip_vertical_padding 0x7f07061f +int dimen tooltip_y_offset_non_touch 0x7f070620 +int dimen tooltip_y_offset_touch 0x7f070621 +int dimen video_progress_dialog_margin_top 0x7f070622 +int dimen video_volume_dialog_margin_left 0x7f070623 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001 +int drawable abc_action_bar_item_background_material 0x7f080002 +int drawable abc_btn_borderless_material 0x7f080003 +int drawable abc_btn_check_material 0x7f080004 +int drawable abc_btn_check_material_anim 0x7f080005 +int drawable abc_btn_check_to_on_mtrl_000 0x7f080006 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080007 +int drawable abc_btn_colored_material 0x7f080008 +int drawable abc_btn_default_mtrl_shape 0x7f080009 +int drawable abc_btn_radio_material 0x7f08000a +int drawable abc_btn_radio_material_anim 0x7f08000b +int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000c +int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000d +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f +int drawable abc_cab_background_internal_bg 0x7f080010 +int drawable abc_cab_background_top_material 0x7f080011 +int drawable abc_cab_background_top_mtrl_alpha 0x7f080012 +int drawable abc_control_background_material 0x7f080013 +int drawable abc_dialog_material_background 0x7f080014 +int drawable abc_edit_text_material 0x7f080015 +int drawable abc_ic_ab_back_material 0x7f080016 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080017 +int drawable abc_ic_clear_material 0x7f080018 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080019 +int drawable abc_ic_go_search_api_material 0x7f08001a +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f08001b +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001c +int drawable abc_ic_menu_overflow_material 0x7f08001d +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001e +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001f +int drawable abc_ic_menu_share_mtrl_alpha 0x7f080020 +int drawable abc_ic_search_api_material 0x7f080021 +int drawable abc_ic_star_black_16dp 0x7f080022 +int drawable abc_ic_star_black_36dp 0x7f080023 +int drawable abc_ic_star_black_48dp 0x7f080024 +int drawable abc_ic_star_half_black_16dp 0x7f080025 +int drawable abc_ic_star_half_black_36dp 0x7f080026 +int drawable abc_ic_star_half_black_48dp 0x7f080027 +int drawable abc_ic_voice_search_api_material 0x7f080028 +int drawable abc_item_background_holo_dark 0x7f080029 +int drawable abc_item_background_holo_light 0x7f08002a +int drawable abc_list_divider_material 0x7f08002b +int drawable abc_list_divider_mtrl_alpha 0x7f08002c +int drawable abc_list_focused_holo 0x7f08002d +int drawable abc_list_longpressed_holo 0x7f08002e +int drawable abc_list_pressed_holo_dark 0x7f08002f +int drawable abc_list_pressed_holo_light 0x7f080030 +int drawable abc_list_selector_background_transition_holo_dark 0x7f080031 +int drawable abc_list_selector_background_transition_holo_light 0x7f080032 +int drawable abc_list_selector_disabled_holo_dark 0x7f080033 +int drawable abc_list_selector_disabled_holo_light 0x7f080034 +int drawable abc_list_selector_holo_dark 0x7f080035 +int drawable abc_list_selector_holo_light 0x7f080036 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080037 +int drawable abc_popup_background_mtrl_mult 0x7f080038 +int drawable abc_ratingbar_indicator_material 0x7f080039 +int drawable abc_ratingbar_material 0x7f08003a +int drawable abc_ratingbar_small_material 0x7f08003b +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003c +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003d +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003e +int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003f +int drawable abc_scrubber_track_mtrl_alpha 0x7f080040 +int drawable abc_seekbar_thumb_material 0x7f080041 +int drawable abc_seekbar_tick_mark_material 0x7f080042 +int drawable abc_seekbar_track_material 0x7f080043 +int drawable abc_spinner_mtrl_am_alpha 0x7f080044 +int drawable abc_spinner_textfield_background_material 0x7f080045 +int drawable abc_star_black_48dp 0x7f080046 +int drawable abc_star_half_black_48dp 0x7f080047 +int drawable abc_switch_thumb_material 0x7f080048 +int drawable abc_switch_track_mtrl_alpha 0x7f080049 +int drawable abc_tab_indicator_material 0x7f08004a +int drawable abc_tab_indicator_mtrl_alpha 0x7f08004b +int drawable abc_text_cursor_material 0x7f08004c +int drawable abc_text_select_handle_left_mtrl 0x7f08004d +int drawable abc_text_select_handle_left_mtrl_dark 0x7f08004e +int drawable abc_text_select_handle_left_mtrl_light 0x7f08004f +int drawable abc_text_select_handle_middle_mtrl 0x7f080050 +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f080051 +int drawable abc_text_select_handle_middle_mtrl_light 0x7f080052 +int drawable abc_text_select_handle_right_mtrl 0x7f080053 +int drawable abc_text_select_handle_right_mtrl_dark 0x7f080054 +int drawable abc_text_select_handle_right_mtrl_light 0x7f080055 +int drawable abc_textfield_activated_mtrl_alpha 0x7f080056 +int drawable abc_textfield_default_mtrl_alpha 0x7f080057 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080058 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080059 +int drawable abc_textfield_search_material 0x7f08005a +int drawable abc_vector_test 0x7f08005b +int drawable ai_collect_selector 0x7f08005c +int drawable ai_collect_title_bg 0x7f08005d +int drawable avd_hide_password 0x7f08005e +int drawable avd_show_password 0x7f08005f +int drawable bad_case_dialog_bg 0x7f080060 +int drawable bad_case_search_bg 0x7f080061 +int drawable bad_case_selector 0x7f080062 +int drawable badcase_radio_button_style 0x7f080063 +int drawable badcase_record_edit_bg 0x7f080064 +int drawable bg_adas_dialog 0x7f080065 +int drawable bg_v2x_event_type_blue 0x7f080066 +int drawable bg_v2x_event_type_orange 0x7f080067 +int drawable bg_v2x_event_type_orange_vr 0x7f080068 +int drawable bg_v2x_event_type_read 0x7f080069 +int drawable bg_v2x_event_type_red_vr 0x7f08006a +int drawable bg_waring_limiting_velocity 0x7f08006b +int drawable bg_waring_traffic_light_vr 0x7f08006c +int drawable bg_warning_bg 0x7f08006d +int drawable bottom_left 0x7f08006e +int drawable bottom_right 0x7f08006f +int drawable btn_checkbox_checked_mtrl 0x7f080070 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f080071 +int drawable btn_checkbox_unchecked_mtrl 0x7f080072 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f080073 +int drawable btn_radio_off_mtrl 0x7f080074 +int drawable btn_radio_off_to_on_mtrl_animation 0x7f080075 +int drawable btn_radio_on_mtrl 0x7f080076 +int drawable btn_radio_on_to_off_mtrl_animation 0x7f080077 +int drawable case_list_normal 0x7f080078 +int drawable case_list_select 0x7f080079 +int drawable case_list_selector 0x7f08007a +int drawable check_error_image 0x7f08007b +int drawable dark_color_close 0x7f08007c +int drawable design_fab_background 0x7f08007d +int drawable design_ic_visibility 0x7f08007e +int drawable design_ic_visibility_off 0x7f08007f +int drawable design_password_eye 0x7f080080 +int drawable design_snackbar_background 0x7f080081 +int drawable empty_drawable 0x7f080082 +int drawable exo_controls_fastforward 0x7f080083 +int drawable exo_controls_next 0x7f080084 +int drawable exo_controls_pause 0x7f080085 +int drawable exo_controls_play 0x7f080086 +int drawable exo_controls_previous 0x7f080087 +int drawable exo_controls_rewind 0x7f080088 +int drawable exo_edit_mode_logo 0x7f080089 +int drawable flex_divider 0x7f08008a +int drawable ic_amap_navi_cursor 0x7f08008b +int drawable ic_clock_black_24dp 0x7f08008c +int drawable ic_keyboard_arrow_left_white_36dp 0x7f08008d +int drawable ic_keyboard_black_24dp 0x7f08008e +int drawable ic_mtrl_checked_circle 0x7f08008f +int drawable ic_mtrl_chip_checked_black 0x7f080090 +int drawable ic_mtrl_chip_checked_circle 0x7f080091 +int drawable ic_mtrl_chip_close_circle 0x7f080092 +int drawable ic_navi_start 0x7f080093 +int drawable ic_navi_target 0x7f080094 +int drawable ic_share_black_24dp 0x7f080095 +int drawable icon_ai_normal 0x7f080096 +int drawable icon_ai_select 0x7f080097 +int drawable icon_ap_badcase_check 0x7f080098 +int drawable icon_ap_badcase_default 0x7f080099 +int drawable icon_audio 0x7f08009a +int drawable icon_audio_bg 0x7f08009b +int drawable icon_autopilot_status 0x7f08009c +int drawable icon_autopilot_status_disabled 0x7f08009d +int drawable icon_bad_case_audio_normal 0x7f08009e +int drawable icon_bad_case_audio_select 0x7f08009f +int drawable icon_bad_case_delect 0x7f0800a0 +int drawable icon_bad_case_normal 0x7f0800a1 +int drawable icon_bad_case_search 0x7f0800a2 +int drawable icon_bad_case_select 0x7f0800a3 +int drawable icon_cancel_bg 0x7f0800a4 +int drawable icon_car_red 0x7f0800a5 +int drawable icon_close_nor 0x7f0800a6 +int drawable icon_default 0x7f0800a7 +int drawable icon_default_user_head 0x7f0800a8 +int drawable icon_dev_status_can_disable 0x7f0800a9 +int drawable icon_dev_status_can_enable 0x7f0800aa +int drawable icon_dev_status_gps_disable 0x7f0800ab +int drawable icon_dev_status_gps_enable 0x7f0800ac +int drawable icon_dev_status_ipc_disable 0x7f0800ad +int drawable icon_dev_status_ipc_enable 0x7f0800ae +int drawable icon_dev_status_net_disable 0x7f0800af +int drawable icon_dev_status_net_enable 0x7f0800b0 +int drawable icon_dev_status_route_enable 0x7f0800b1 +int drawable icon_dev_status_rtk_error 0x7f0800b2 +int drawable icon_dev_status_rtk_good 0x7f0800b3 +int drawable icon_dev_status_rtk_inaccurate 0x7f0800b4 +int drawable icon_dev_status_rtk_not_credible 0x7f0800b5 +int drawable icon_dev_status_rtk_unknow 0x7f0800b6 +int drawable icon_dev_status_slam_good 0x7f0800b7 +int drawable icon_dev_status_trace_unkown 0x7f0800b8 +int drawable icon_dev_status_track_enable 0x7f0800b9 +int drawable icon_dev_status_un_fold 0x7f0800ba +int drawable icon_download_guide 0x7f0800bb +int drawable icon_expand 0x7f0800bc +int drawable icon_map_marker_car_gray 0x7f0800bd +int drawable icon_map_marker_car_type_110 0x7f0800be +int drawable icon_map_marker_car_type_119 0x7f0800bf +int drawable icon_map_marker_car_type_120 0x7f0800c0 +int drawable icon_map_marker_car_type_bus 0x7f0800c1 +int drawable icon_map_marker_car_type_taxi 0x7f0800c2 +int drawable icon_map_marker_location_yellow 0x7f0800c3 +int drawable icon_map_marker_location_yellow_vr 0x7f0800c4 +int drawable icon_map_marker_road_block_up 0x7f0800c5 +int drawable icon_map_marker_road_block_up2 0x7f0800c6 +int drawable icon_map_marker_road_block_up2_white 0x7f0800c7 +int drawable icon_map_marker_road_check2_white 0x7f0800c8 +int drawable icon_module_small_map_four_corners 0x7f0800c9 +int drawable icon_num_bg 0x7f0800ca +int drawable icon_small_v2x_road_construction 0x7f0800cb +int drawable icon_v2x_marker 0x7f0800cc +int drawable icon_waring_traffic_light_green_vr 0x7f0800cd +int drawable icon_waring_traffic_light_red_vr 0x7f0800ce +int drawable icon_waring_traffic_light_yellow_vr 0x7f0800cf +int drawable icon_warning_gas_station 0x7f0800d0 +int drawable icon_warning_road_hollow 0x7f0800d1 +int drawable icon_warning_take_over 0x7f0800d2 +int drawable icon_warning_v2x_abnormal_vehicle 0x7f0800d3 +int drawable icon_warning_v2x_blind_area_collision 0x7f0800d4 +int drawable icon_warning_v2x_collision_warning 0x7f0800d5 +int drawable icon_warning_v2x_congestion 0x7f0800d6 +int drawable icon_warning_v2x_emergency_brake 0x7f0800d7 +int drawable icon_warning_v2x_give_way 0x7f0800d8 +int drawable icon_warning_v2x_hump_bridge 0x7f0800d9 +int drawable icon_warning_v2x_motobike 0x7f0800da +int drawable icon_warning_v2x_motorcycle_collision 0x7f0800db +int drawable icon_warning_v2x_no_parking 0x7f0800dc +int drawable icon_warning_v2x_no_tooting 0x7f0800dd +int drawable icon_warning_v2x_optimal_route 0x7f0800de +int drawable icon_warning_v2x_over_speed 0x7f0800df +int drawable icon_warning_v2x_pedestrian_crossing 0x7f0800e0 +int drawable icon_warning_v2x_reverse_overtaking 0x7f0800e1 +int drawable icon_warning_v2x_road_construction 0x7f0800e2 +int drawable icon_warning_v2x_road_dangerous 0x7f0800e3 +int drawable icon_warning_v2x_roundaboutpng 0x7f0800e4 +int drawable icon_warning_v2x_school 0x7f0800e5 +int drawable icon_warning_v2x_special_vehicle_access 0x7f0800e6 +int drawable icon_warning_v2x_test_section 0x7f0800e7 +int drawable icon_warning_v2x_traffic_light_gray 0x7f0800e8 +int drawable icon_warning_v2x_traffic_light_green 0x7f0800e9 +int drawable icon_warning_v2x_traffic_light_red 0x7f0800ea +int drawable icon_warning_v2x_traffic_light_yellow 0x7f0800eb +int drawable icon_warning_v2x_traffic_lights_green 0x7f0800ec +int drawable icon_warning_v2x_traffic_lights_red 0x7f0800ed +int drawable icon_warning_v2x_tramcar 0x7f0800ee +int drawable icon_warning_v2x_turn_left_sharp 0x7f0800ef +int drawable icon_warning_v2x_turn_right_sharp 0x7f0800f0 +int drawable icon_warning_v2x_vehicle_control 0x7f0800f1 +int drawable icon_warning_v2x_vip_turn_light 0x7f0800f2 +int drawable lock 0x7f0800f3 +int drawable log_debug_dialog_bg 0x7f0800f4 +int drawable log_debug_retry_btn_bg 0x7f0800f5 +int drawable log_debug_start_btn_bg 0x7f0800f6 +int drawable log_debug_stop_btn_bg 0x7f0800f7 +int drawable map_api_ic_current_location2 0x7f0800f8 +int drawable map_api_ic_current_location2_cursor 0x7f0800f9 +int drawable map_bus_icon 0x7f0800fa +int drawable map_car_icon 0x7f0800fb +int drawable material_cursor_drawable 0x7f0800fc +int drawable material_ic_calendar_black_24dp 0x7f0800fd +int drawable material_ic_clear_black_24dp 0x7f0800fe +int drawable material_ic_edit_black_24dp 0x7f0800ff +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f080100 +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f080101 +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f080102 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f080103 +int drawable material_ic_menu_arrow_down_black_24dp 0x7f080104 +int drawable material_ic_menu_arrow_up_black_24dp 0x7f080105 +int drawable module_camera_real_time_traffic 0x7f080106 +int drawable module_common_close_selector 0x7f080107 +int drawable module_common_close_selector_vr 0x7f080108 +int drawable module_common_ic_rc_accident3 0x7f080109 +int drawable module_common_ic_rc_accident3_white 0x7f08010a +int drawable module_common_ic_rc_dark_frog2 0x7f08010b +int drawable module_common_ic_rc_dark_frog2_white 0x7f08010c +int drawable module_common_ic_rc_freeze2 0x7f08010d +int drawable module_common_ic_rc_freeze2_white 0x7f08010e +int drawable module_common_ic_rc_illegal_park 0x7f08010f +int drawable module_common_ic_rc_illegal_park_white 0x7f080110 +int drawable module_common_icon_close 0x7f080111 +int drawable module_common_icon_close_press 0x7f080112 +int drawable module_common_icon_close_vr 0x7f080113 +int drawable module_common_icon_map_marker_living 0x7f080114 +int drawable module_common_icon_map_marker_living_white 0x7f080115 +int drawable module_common_icon_map_marker_pondingl2 0x7f080116 +int drawable module_common_icon_map_marker_pondingl2_white 0x7f080117 +int drawable module_common_icon_map_marker_road_block_off2 0x7f080118 +int drawable module_common_icon_map_marker_road_block_off2_white 0x7f080119 +int drawable module_common_icon_map_marker_road_block_up2 0x7f08011a +int drawable module_common_icon_map_marker_road_block_up2_white 0x7f08011b +int drawable module_common_icon_map_marker_road_check2 0x7f08011c +int drawable module_common_icon_map_marker_road_check2_white 0x7f08011d +int drawable module_common_icon_map_marker_road_work2 0x7f08011e +int drawable module_common_icon_map_marker_road_work2_white 0x7f08011f +int drawable module_common_icon_seek_help 0x7f080120 +int drawable module_common_selector_call 0x7f080121 +int drawable module_commons_dialog_bg 0x7f080122 +int drawable module_commons_dialog_left_bg 0x7f080123 +int drawable module_commons_dialog_right_bg 0x7f080124 +int drawable module_commons_toast_bkg 0x7f080125 +int drawable module_dw_common_corner_bkg_light 0x7f080126 +int drawable module_ext_check 0x7f080127 +int drawable module_ext_drawable_shadow_bg 0x7f080128 +int drawable module_ext_shadow_bkg 0x7f080129 +int drawable module_ext_shadow_bkg_pressed 0x7f08012a +int drawable module_hmi_autopilot_status_bg 0x7f08012b +int drawable module_hmi_autopilot_status_checked_bg 0x7f08012c +int drawable module_hmi_autopilot_status_disabled_bg 0x7f08012d +int drawable module_hmi_autopilot_status_enable_bg 0x7f08012e +int drawable module_hmi_warning_bkg_bottom 0x7f08012f +int drawable module_hmi_warning_bkg_left 0x7f080130 +int drawable module_hmi_warning_bkg_right 0x7f080131 +int drawable module_hmi_warning_bkg_right_bottom 0x7f080132 +int drawable module_hmi_warning_bkg_right_top 0x7f080133 +int drawable module_hmi_warning_bkg_top 0x7f080134 +int drawable module_services_marker_bkg 0x7f080135 +int drawable module_services_marker_vr_bkg 0x7f080136 +int drawable module_services_marker_vr_bkg_checked 0x7f080137 +int drawable module_small_map_view_border 0x7f080138 +int drawable module_small_map_view_border_north 0x7f080139 +int drawable module_small_map_view_my_location_logo 0x7f08013a +int drawable module_switch_map_angle 0x7f08013b +int drawable module_switch_map_bg 0x7f08013c +int drawable mogo_image_accident_small 0x7f08013d +int drawable mogo_image_daolushigong_nor 0x7f08013e +int drawable mogo_image_daolushigong_small 0x7f08013f +int drawable mogo_image_fenglu_nor 0x7f080140 +int drawable mogo_image_fenglu_small 0x7f080141 +int drawable mogo_image_jiaotongjiancha_nor 0x7f080142 +int drawable mogo_image_jiaotongjiancha_small 0x7f080143 +int drawable mogo_image_jiaotongshigu_nor 0x7f080144 +int drawable mogo_image_jiebing_nor 0x7f080145 +int drawable mogo_image_jiebing_small 0x7f080146 +int drawable mogo_image_jishui_nor 0x7f080147 +int drawable mogo_image_jishui_small 0x7f080148 +int drawable mogo_image_nongwu_nor 0x7f080149 +int drawable mogo_image_nongwu_small 0x7f08014a +int drawable mogo_image_shishilukuang_small 0x7f08014b +int drawable mogo_image_shishlukuang_nor 0x7f08014c +int drawable mogo_image_yongdu_nor 0x7f08014d +int drawable mogo_image_yongdu_small 0x7f08014e +int drawable mtrl_dialog_background 0x7f08014f +int drawable mtrl_dropdown_arrow 0x7f080150 +int drawable mtrl_ic_arrow_drop_down 0x7f080151 +int drawable mtrl_ic_arrow_drop_up 0x7f080152 +int drawable mtrl_ic_cancel 0x7f080153 +int drawable mtrl_ic_error 0x7f080154 +int drawable mtrl_navigation_bar_item_background 0x7f080155 +int drawable mtrl_popupmenu_background 0x7f080156 +int drawable mtrl_popupmenu_background_dark 0x7f080157 +int drawable mtrl_tabs_default_indicator 0x7f080158 +int drawable navigation_empty_icon 0x7f080159 +int drawable notice_banner_default 0x7f08015a +int drawable notice_banner_icon_video 0x7f08015b +int drawable notice_player_ic_circle_nor 0x7f08015c +int drawable notice_seekbar_style 0x7f08015d +int drawable notice_video_after_pause 0x7f08015e +int drawable notice_video_pause 0x7f08015f +int drawable notice_video_play 0x7f080160 +int drawable notification_action_background 0x7f080161 +int drawable notification_bg 0x7f080162 +int drawable notification_bg_low 0x7f080163 +int drawable notification_bg_low_normal 0x7f080164 +int drawable notification_bg_low_pressed 0x7f080165 +int drawable notification_bg_normal 0x7f080166 +int drawable notification_bg_normal_pressed 0x7f080167 +int drawable notification_icon_background 0x7f080168 +int drawable notification_template_icon_bg 0x7f080169 +int drawable notification_template_icon_low_bg 0x7f08016a +int drawable notification_tile_bg 0x7f08016b +int drawable notify_panel_notification_icon_bg 0x7f08016c +int drawable placeholder 0x7f08016d +int drawable report_button_bg 0x7f08016e +int drawable rv_scroll_bar_thumb 0x7f08016f +int drawable rv_scroll_bar_track 0x7f080170 +int drawable save_button_bg 0x7f080171 +int drawable selector_call_btn_normal 0x7f080172 +int drawable selector_call_btn_pressed 0x7f080173 +int drawable shape_size_check_false 0x7f080174 +int drawable shape_size_check_true 0x7f080175 +int drawable template_list_bg 0x7f080176 +int drawable test_custom_background 0x7f080177 +int drawable tooltip_frame_dark 0x7f080178 +int drawable tooltip_frame_light 0x7f080179 +int drawable top_left 0x7f08017a +int drawable unlock 0x7f08017b +int drawable utils_toast_bg 0x7f08017c +int drawable v2x_icon_car_collide_warning 0x7f08017d +int drawable v2x_icon_daolushigong_vr 0x7f08017e +int drawable v2x_icon_fenglu_vr 0x7f08017f +int drawable v2x_icon_jiaotongjiancha_vr 0x7f080180 +int drawable v2x_icon_jiaotongshigu_vr 0x7f080181 +int drawable v2x_icon_jiebing_vr 0x7f080182 +int drawable v2x_icon_jishui_vr 0x7f080183 +int drawable v2x_icon_live_logo 0x7f080184 +int drawable v2x_icon_nongwu_vr 0x7f080185 +int drawable v2x_icon_yongdu_vr 0x7f080186 +int drawable v_to_x_event_ugc_yongdu 0x7f080187 +int drawable v_to_x_marker_1 0x7f080188 +int drawable v_to_x_marker_11 0x7f080189 +int drawable v_to_x_marker_16 0x7f08018a +int drawable v_to_x_marker_2 0x7f08018b +int drawable v_to_x_marker_3 0x7f08018c +int drawable v_to_x_marker_5 0x7f08018d +int drawable v_to_x_marker_6 0x7f08018e +int drawable v_to_x_marker_7 0x7f08018f +int drawable v_to_x_marker_8 0x7f080190 +int drawable v_to_x_marker_9 0x7f080191 +int drawable v_to_x_warning_car_red 0x7f080192 +int drawable video_back 0x7f080193 +int drawable video_backward_icon 0x7f080194 +int drawable video_brightness_6_white_36dp 0x7f080195 +int drawable video_click_error_selector 0x7f080196 +int drawable video_click_pause_selector 0x7f080197 +int drawable video_click_play_selector 0x7f080198 +int drawable video_dialog_progress 0x7f080199 +int drawable video_dialog_progress_bg 0x7f08019a +int drawable video_enlarge 0x7f08019b +int drawable video_error_normal 0x7f08019c +int drawable video_error_pressed 0x7f08019d +int drawable video_forward_icon 0x7f08019e +int drawable video_jump_btn_bg 0x7f08019f +int drawable video_loading 0x7f0801a0 +int drawable video_loading_bg 0x7f0801a1 +int drawable video_pause_normal 0x7f0801a2 +int drawable video_pause_pressed 0x7f0801a3 +int drawable video_play_normal 0x7f0801a4 +int drawable video_play_pressed 0x7f0801a5 +int drawable video_progress 0x7f0801a6 +int drawable video_seek_progress 0x7f0801a7 +int drawable video_seek_thumb 0x7f0801a8 +int drawable video_seek_thumb_normal 0x7f0801a9 +int drawable video_seek_thumb_pressed 0x7f0801aa +int drawable video_shrink 0x7f0801ab +int drawable video_small_close 0x7f0801ac +int drawable video_title_bg 0x7f0801ad +int drawable video_volume_icon 0x7f0801ae +int drawable video_volume_progress_bg 0x7f0801af +int drawable yi_biao_pan_bg_nor 0x7f0801b0 +int drawable yi_biao_pan_bg_speeding 0x7f0801b1 +int drawable zxing_scanline 0x7f0801b2 +int id BOTTOM_END 0x7f0b0001 +int id BOTTOM_START 0x7f0b0002 +int id NO_DEBUG 0x7f0b0003 +int id SHOW_ALL 0x7f0b0004 +int id SHOW_PATH 0x7f0b0005 +int id SHOW_PROGRESS 0x7f0b0006 +int id TOP_END 0x7f0b0007 +int id TOP_START 0x7f0b0008 +int id accelerate 0x7f0b0009 +int id accessibility_action_clickable_span 0x7f0b000a +int id accessibility_custom_action_0 0x7f0b000b +int id accessibility_custom_action_1 0x7f0b000c +int id accessibility_custom_action_10 0x7f0b000d +int id accessibility_custom_action_11 0x7f0b000e +int id accessibility_custom_action_12 0x7f0b000f +int id accessibility_custom_action_13 0x7f0b0010 +int id accessibility_custom_action_14 0x7f0b0011 +int id accessibility_custom_action_15 0x7f0b0012 +int id accessibility_custom_action_16 0x7f0b0013 +int id accessibility_custom_action_17 0x7f0b0014 +int id accessibility_custom_action_18 0x7f0b0015 +int id accessibility_custom_action_19 0x7f0b0016 +int id accessibility_custom_action_2 0x7f0b0017 +int id accessibility_custom_action_20 0x7f0b0018 +int id accessibility_custom_action_21 0x7f0b0019 +int id accessibility_custom_action_22 0x7f0b001a +int id accessibility_custom_action_23 0x7f0b001b +int id accessibility_custom_action_24 0x7f0b001c +int id accessibility_custom_action_25 0x7f0b001d +int id accessibility_custom_action_26 0x7f0b001e +int id accessibility_custom_action_27 0x7f0b001f +int id accessibility_custom_action_28 0x7f0b0020 +int id accessibility_custom_action_29 0x7f0b0021 +int id accessibility_custom_action_3 0x7f0b0022 +int id accessibility_custom_action_30 0x7f0b0023 +int id accessibility_custom_action_31 0x7f0b0024 +int id accessibility_custom_action_4 0x7f0b0025 +int id accessibility_custom_action_5 0x7f0b0026 +int id accessibility_custom_action_6 0x7f0b0027 +int id accessibility_custom_action_7 0x7f0b0028 +int id accessibility_custom_action_8 0x7f0b0029 +int id accessibility_custom_action_9 0x7f0b002a +int id actionDown 0x7f0b002b +int id actionDownUp 0x7f0b002c +int id actionUp 0x7f0b002d +int id action_bar 0x7f0b002e +int id action_bar_activity_content 0x7f0b002f +int id action_bar_container 0x7f0b0030 +int id action_bar_root 0x7f0b0031 +int id action_bar_spinner 0x7f0b0032 +int id action_bar_subtitle 0x7f0b0033 +int id action_bar_title 0x7f0b0034 +int id action_container 0x7f0b0035 +int id action_context_bar 0x7f0b0036 +int id action_divider 0x7f0b0037 +int id action_image 0x7f0b0038 +int id action_menu_divider 0x7f0b0039 +int id action_menu_presenter 0x7f0b003a +int id action_mode_bar 0x7f0b003b +int id action_mode_bar_stub 0x7f0b003c +int id action_mode_close_button 0x7f0b003d +int id action_text 0x7f0b003e +int id actions 0x7f0b003f +int id activity_chooser_view_content 0x7f0b0040 +int id ad_full_id 0x7f0b0041 +int id ad_small_id 0x7f0b0042 +int id ad_time 0x7f0b0043 +int id add 0x7f0b0044 +int id alertTitle 0x7f0b0045 +int id aligned 0x7f0b0046 +int id allStates 0x7f0b0047 +int id animateToEnd 0x7f0b0048 +int id animateToStart 0x7f0b0049 +int id antiClockwise 0x7f0b004a +int id anticipate 0x7f0b004b +int id app_video_brightness 0x7f0b004c +int id app_video_brightness_box 0x7f0b004d +int id app_video_brightness_icon 0x7f0b004e +int id arc 0x7f0b004f +int id asConfigured 0x7f0b0050 +int id async 0x7f0b0051 +int id auto 0x7f0b0052 +int id autoComplete 0x7f0b0053 +int id autoCompleteToEnd 0x7f0b0054 +int id autoCompleteToStart 0x7f0b0055 +int id back 0x7f0b0056 +int id backId 0x7f0b0057 +int id back_tiny 0x7f0b0058 +int id barrier 0x7f0b0059 +int id baseline 0x7f0b005a +int id bestChoice 0x7f0b005b +int id blocking 0x7f0b005c +int id bottom 0x7f0b005d +int id bottom_progressbar 0x7f0b005e +int id bounce 0x7f0b005f +int id btnForceClearNotice 0x7f0b0060 +int id btnRetryFlow 0x7f0b0061 +int id btnStart 0x7f0b0062 +int id btnStop 0x7f0b0063 +int id btn_close_battery_optimizations 0x7f0b0064 +int id buttonPanel 0x7f0b0065 +int id cancel_button 0x7f0b0066 +int id carryVelocity 0x7f0b0067 +int id caseName 0x7f0b0068 +int id center 0x7f0b0069 +int id centerCrop 0x7f0b006a +int id centerInside 0x7f0b006b +int id chain 0x7f0b006c +int id checkbox 0x7f0b006d +int id checked 0x7f0b006e +int id chip 0x7f0b006f +int id chip1 0x7f0b0070 +int id chip2 0x7f0b0071 +int id chip3 0x7f0b0072 +int id chip_group 0x7f0b0073 +int id chronometer 0x7f0b0074 +int id circle 0x7f0b0075 +int id circle_center 0x7f0b0076 +int id clSearchLayout 0x7f0b0077 +int id clear_text 0x7f0b0078 +int id clockwise 0x7f0b0079 +int id closest 0x7f0b007a +int id color 0x7f0b007b +int id column 0x7f0b007c +int id column_reverse 0x7f0b007d +int id confirm_button 0x7f0b007e +int id constraint 0x7f0b007f +int id container 0x7f0b0080 +int id content 0x7f0b0081 +int id contentPanel 0x7f0b0082 +int id contiguous 0x7f0b0083 +int id continuousVelocity 0x7f0b0084 +int id coordinator 0x7f0b0085 +int id cos 0x7f0b0086 +int id counterclockwise 0x7f0b0087 +int id current 0x7f0b0088 +int id currentState 0x7f0b0089 +int id custom 0x7f0b008a +int id customPanel 0x7f0b008b +int id cut 0x7f0b008c +int id dash 0x7f0b008d +int id date_picker_actions 0x7f0b008e +int id decelerate 0x7f0b008f +int id decelerateAndComplete 0x7f0b0090 +int id decor_content_parent 0x7f0b0091 +int id default_activity_button 0x7f0b0092 +int id deltaRelative 0x7f0b0093 +int id design_bottom_sheet 0x7f0b0094 +int id design_menu_item_action_area 0x7f0b0095 +int id design_menu_item_action_area_stub 0x7f0b0096 +int id design_menu_item_text 0x7f0b0097 +int id design_navigation_view 0x7f0b0098 +int id dialog_button 0x7f0b0099 +int id disjoint 0x7f0b009a +int id dragAnticlockwise 0x7f0b009b +int id dragClockwise 0x7f0b009c +int id dragDown 0x7f0b009d +int id dragEnd 0x7f0b009e +int id dragLeft 0x7f0b009f +int id dragRight 0x7f0b00a0 +int id dragStart 0x7f0b00a1 +int id dragUp 0x7f0b00a2 +int id dropdown_menu 0x7f0b00a3 +int id duration_image_tip 0x7f0b00a4 +int id duration_progressbar 0x7f0b00a5 +int id easeIn 0x7f0b00a6 +int id easeInOut 0x7f0b00a7 +int id easeOut 0x7f0b00a8 +int id east 0x7f0b00a9 +int id edit_query 0x7f0b00aa +int id elastic 0x7f0b00ab +int id end 0x7f0b00ac +int id endToStart 0x7f0b00ad +int id etInitiativeAfterTime 0x7f0b00ae +int id etInitiativePreTime 0x7f0b00af +int id etPassiveAfterTime 0x7f0b00b0 +int id etPassivePreTime 0x7f0b00b1 +int id etSearch 0x7f0b00b2 +int id exo_artwork 0x7f0b00b3 +int id exo_content_frame 0x7f0b00b4 +int id exo_controller_placeholder 0x7f0b00b5 +int id exo_duration 0x7f0b00b6 +int id exo_ffwd 0x7f0b00b7 +int id exo_next 0x7f0b00b8 +int id exo_overlay 0x7f0b00b9 +int id exo_pause 0x7f0b00ba +int id exo_play 0x7f0b00bb +int id exo_position 0x7f0b00bc +int id exo_prev 0x7f0b00bd +int id exo_progress 0x7f0b00be +int id exo_rew 0x7f0b00bf +int id exo_shutter 0x7f0b00c0 +int id exo_subtitles 0x7f0b00c1 +int id expand_activities_button 0x7f0b00c2 +int id expanded_menu 0x7f0b00c3 +int id fade 0x7f0b00c4 +int id feed_back_badcase_count_down_job 0x7f0b00c5 +int id feed_back_badcase_job 0x7f0b00c6 +int id feed_back_badcase_tag 0x7f0b00c7 +int id feed_back_badcase_taskid_tag 0x7f0b00c8 +int id fill 0x7f0b00c9 +int id filled 0x7f0b00ca +int id fit 0x7f0b00cb +int id fitBottomStart 0x7f0b00cc +int id fitCenter 0x7f0b00cd +int id fitEnd 0x7f0b00ce +int id fitStart 0x7f0b00cf +int id fitXY 0x7f0b00d0 +int id fixed 0x7f0b00d1 +int id fixed_height 0x7f0b00d2 +int id fixed_width 0x7f0b00d3 +int id flReasonLayout 0x7f0b00d4 +int id flex_end 0x7f0b00d5 +int id flex_start 0x7f0b00d6 +int id flip 0x7f0b00d7 +int id floating 0x7f0b00d8 +int id focusCrop 0x7f0b00d9 +int id forever 0x7f0b00da +int id fragment_container_view_tag 0x7f0b00db +int id frost 0x7f0b00dc +int id full_id 0x7f0b00dd +int id fullscreen 0x7f0b00de +int id ghost_view 0x7f0b00df +int id ghost_view_holder 0x7f0b00e0 +int id glide_custom_view_target_tag 0x7f0b00e1 +int id gone 0x7f0b00e2 +int id group_divider 0x7f0b00e3 +int id guideline 0x7f0b00e4 +int id header_title 0x7f0b00e5 +int id hint_battery 0x7f0b00e6 +int id home 0x7f0b00e7 +int id honorRequest 0x7f0b00e8 +int id horizontal 0x7f0b00e9 +int id horizontal_only 0x7f0b00ea +int id icon 0x7f0b00eb +int id icon_group 0x7f0b00ec +int id ignore 0x7f0b00ed +int id ignoreRequest 0x7f0b00ee +int id image 0x7f0b00ef +int id immediateStop 0x7f0b00f0 +int id included 0x7f0b00f1 +int id info 0x7f0b00f2 +int id invisible 0x7f0b00f3 +int id inward 0x7f0b00f4 +int id italic 0x7f0b00f5 +int id item_list 0x7f0b00f6 +int id item_touch_helper_previous_elevation 0x7f0b00f7 +int id item_video_cover 0x7f0b00f8 +int id iv 0x7f0b00f9 +int id ivConfigClose 0x7f0b00fa +int id ivRecordTemplate 0x7f0b00fb +int id ivSearch 0x7f0b00fc +int id jumpToEnd 0x7f0b00fd +int id jumpToStart 0x7f0b00fe +int id jump_ad 0x7f0b00ff +int id labeled 0x7f0b0100 +int id layout 0x7f0b0101 +int id layout_bottom 0x7f0b0102 +int id layout_top 0x7f0b0103 +int id left 0x7f0b0104 +int id leftToRight 0x7f0b0105 +int id line1 0x7f0b0106 +int id line3 0x7f0b0107 +int id linear 0x7f0b0108 +int id listMode 0x7f0b0109 +int id list_item 0x7f0b010a +int id loading 0x7f0b010b +int id lock_screen 0x7f0b010c +int id masked 0x7f0b010d +int id match_constraint 0x7f0b010e +int id match_parent 0x7f0b010f +int id material_clock_display 0x7f0b0110 +int id material_clock_face 0x7f0b0111 +int id material_clock_hand 0x7f0b0112 +int id material_clock_period_am_button 0x7f0b0113 +int id material_clock_period_pm_button 0x7f0b0114 +int id material_clock_period_toggle 0x7f0b0115 +int id material_hour_text_input 0x7f0b0116 +int id material_hour_tv 0x7f0b0117 +int id material_label 0x7f0b0118 +int id material_minute_text_input 0x7f0b0119 +int id material_minute_tv 0x7f0b011a +int id material_textinput_timepicker 0x7f0b011b +int id material_timepicker_cancel_button 0x7f0b011c +int id material_timepicker_container 0x7f0b011d +int id material_timepicker_edit_text 0x7f0b011e +int id material_timepicker_mode_button 0x7f0b011f +int id material_timepicker_ok_button 0x7f0b0120 +int id material_timepicker_view 0x7f0b0121 +int id material_value_index 0x7f0b0122 +int id message 0x7f0b0123 +int id middle 0x7f0b0124 +int id mini 0x7f0b0125 +int id module_commons_toast_left_drawable 0x7f0b0126 +int id module_commons_toast_msg 0x7f0b0127 +int id month_grid 0x7f0b0128 +int id month_navigation_bar 0x7f0b0129 +int id month_navigation_fragment_toggle 0x7f0b012a +int id month_navigation_next 0x7f0b012b +int id month_navigation_previous 0x7f0b012c +int id month_title 0x7f0b012d +int id motion_base 0x7f0b012e +int id mtrl_anchor_parent 0x7f0b012f +int id mtrl_calendar_day_selector_frame 0x7f0b0130 +int id mtrl_calendar_days_of_week 0x7f0b0131 +int id mtrl_calendar_frame 0x7f0b0132 +int id mtrl_calendar_main_pane 0x7f0b0133 +int id mtrl_calendar_months 0x7f0b0134 +int id mtrl_calendar_selection_frame 0x7f0b0135 +int id mtrl_calendar_text_input_frame 0x7f0b0136 +int id mtrl_calendar_year_selector_frame 0x7f0b0137 +int id mtrl_card_checked_layer_id 0x7f0b0138 +int id mtrl_child_content_container 0x7f0b0139 +int id mtrl_internal_children_alpha_tag 0x7f0b013a +int id mtrl_motion_snapshot_view 0x7f0b013b +int id mtrl_picker_fullscreen 0x7f0b013c +int id mtrl_picker_header 0x7f0b013d +int id mtrl_picker_header_selection_text 0x7f0b013e +int id mtrl_picker_header_title_and_selection 0x7f0b013f +int id mtrl_picker_header_toggle 0x7f0b0140 +int id mtrl_picker_text_input_date 0x7f0b0141 +int id mtrl_picker_text_input_range_end 0x7f0b0142 +int id mtrl_picker_text_input_range_start 0x7f0b0143 +int id mtrl_picker_title_text 0x7f0b0144 +int id mtrl_view_tag_bottom_padding 0x7f0b0145 +int id multiply 0x7f0b0146 +int id navigation_bar_item_icon_view 0x7f0b0147 +int id navigation_bar_item_labels_group 0x7f0b0148 +int id navigation_bar_item_large_label_view 0x7f0b0149 +int id navigation_bar_item_small_label_view 0x7f0b014a +int id navigation_header_container 0x7f0b014b +int id neverCompleteToEnd 0x7f0b014c +int id neverCompleteToStart 0x7f0b014d +int id noId 0x7f0b014e +int id noState 0x7f0b014f +int id none 0x7f0b0150 +int id normal 0x7f0b0151 +int id north 0x7f0b0152 +int id notification_background 0x7f0b0153 +int id notification_main_column 0x7f0b0154 +int id notification_main_column_container 0x7f0b0155 +int id nowrap 0x7f0b0156 +int id off 0x7f0b0157 +int id on 0x7f0b0158 +int id outline 0x7f0b0159 +int id outward 0x7f0b015a +int id overshoot 0x7f0b015b +int id packed 0x7f0b015c +int id parallax 0x7f0b015d +int id parent 0x7f0b015e +int id parentPanel 0x7f0b015f +int id parentRelative 0x7f0b0160 +int id parent_matrix 0x7f0b0161 +int id password_toggle 0x7f0b0162 +int id path 0x7f0b0163 +int id pathId 0x7f0b0164 +int id pathRelative 0x7f0b0165 +int id percent 0x7f0b0166 +int id pin 0x7f0b0167 +int id position 0x7f0b0168 +int id postLayout 0x7f0b0169 +int id preview_layout 0x7f0b016a +int id progress 0x7f0b016b +int id progress_circular 0x7f0b016c +int id progress_horizontal 0x7f0b016d +int id radio 0x7f0b016e +int id rbAccident 0x7f0b016f +int id rbConstruction 0x7f0b0170 +int id rbDeveloper 0x7f0b0171 +int id rbFive 0x7f0b0172 +int id rbFour 0x7f0b0173 +int id rbLargeCar 0x7f0b0174 +int id rbNightTraffic 0x7f0b0175 +int id rbOne 0x7f0b0176 +int id rbProduct 0x7f0b0177 +int id rbRain 0x7f0b0178 +int id rbSafetyOfficer 0x7f0b0179 +int id rbSix 0x7f0b017a +int id rbThree 0x7f0b017b +int id rbTrafficLight 0x7f0b017c +int id rbTwo 0x7f0b017d +int id rbWater 0x7f0b017e +int id rectangles 0x7f0b017f +int id reverseSawtooth 0x7f0b0180 +int id right 0x7f0b0181 +int id rightToLeft 0x7f0b0182 +int id right_icon 0x7f0b0183 +int id right_side 0x7f0b0184 +int id round 0x7f0b0185 +int id round_rect 0x7f0b0186 +int id rounded 0x7f0b0187 +int id row 0x7f0b0188 +int id row_index_key 0x7f0b0189 +int id row_reverse 0x7f0b018a +int id rtl 0x7f0b018b +int id rv 0x7f0b018c +int id rvCaseList 0x7f0b018d +int id rvTemplate 0x7f0b018e +int id rvTopicList 0x7f0b018f +int id save_non_transition_alpha 0x7f0b0190 +int id save_overlay_view 0x7f0b0191 +int id sawtooth 0x7f0b0192 +int id scale 0x7f0b0193 +int id screen 0x7f0b0194 +int id scrollIndicatorDown 0x7f0b0195 +int id scrollIndicatorUp 0x7f0b0196 +int id scrollView 0x7f0b0197 +int id scrollable 0x7f0b0198 +int id search_badge 0x7f0b0199 +int id search_bar 0x7f0b019a +int id search_button 0x7f0b019b +int id search_close_btn 0x7f0b019c +int id search_edit_frame 0x7f0b019d +int id search_go_btn 0x7f0b019e +int id search_mag_icon 0x7f0b019f +int id search_plate 0x7f0b01a0 +int id search_src_text 0x7f0b01a1 +int id search_voice_btn 0x7f0b01a2 +int id select_dialog_listview 0x7f0b01a3 +int id selected 0x7f0b01a4 +int id selection_type 0x7f0b01a5 +int id shape_left_top 0x7f0b01a6 +int id shape_right_top 0x7f0b01a7 +int id sharedValueSet 0x7f0b01a8 +int id sharedValueUnset 0x7f0b01a9 +int id shortcut 0x7f0b01aa +int id sin 0x7f0b01ab +int id skipped 0x7f0b01ac +int id slide 0x7f0b01ad +int id small_close 0x7f0b01ae +int id small_id 0x7f0b01af +int id smooth 0x7f0b01b0 +int id snackbar_action 0x7f0b01b1 +int id snackbar_text 0x7f0b01b2 +int id south 0x7f0b01b3 +int id space_around 0x7f0b01b4 +int id space_between 0x7f0b01b5 +int id space_evenly 0x7f0b01b6 +int id spacer 0x7f0b01b7 +int id special_effects_controller_view_tag 0x7f0b01b8 +int id spline 0x7f0b01b9 +int id split_action_bar 0x7f0b01ba +int id spread 0x7f0b01bb +int id spread_inside 0x7f0b01bc +int id spring 0x7f0b01bd +int id square 0x7f0b01be +int id src_atop 0x7f0b01bf +int id src_in 0x7f0b01c0 +int id src_over 0x7f0b01c1 +int id standard 0x7f0b01c2 +int id start 0x7f0b01c3 +int id startHorizontal 0x7f0b01c4 +int id startToEnd 0x7f0b01c5 +int id startVertical 0x7f0b01c6 +int id staticLayout 0x7f0b01c7 +int id staticPostLayout 0x7f0b01c8 +int id stop 0x7f0b01c9 +int id stretch 0x7f0b01ca +int id submenuarrow 0x7f0b01cb +int id submit_area 0x7f0b01cc +int id surface_container 0x7f0b01cd +int id surface_view 0x7f0b01ce +int id tabMode 0x7f0b01cf +int id tag_accessibility_actions 0x7f0b01d0 +int id tag_accessibility_clickable_spans 0x7f0b01d1 +int id tag_accessibility_heading 0x7f0b01d2 +int id tag_accessibility_pane_title 0x7f0b01d3 +int id tag_click_time 0x7f0b01d4 +int id tag_on_apply_window_listener 0x7f0b01d5 +int id tag_on_receive_content_listener 0x7f0b01d6 +int id tag_on_receive_content_mime_types 0x7f0b01d7 +int id tag_screen_reader_focusable 0x7f0b01d8 +int id tag_state_description 0x7f0b01d9 +int id tag_transition_group 0x7f0b01da +int id tag_unhandled_key_event_manager 0x7f0b01db +int id tag_unhandled_key_listeners 0x7f0b01dc +int id tag_window_insets_animation_callback 0x7f0b01dd +int id test_checkbox_android_button_tint 0x7f0b01de +int id test_checkbox_app_button_tint 0x7f0b01df +int id test_radiobutton_android_button_tint 0x7f0b01e0 +int id test_radiobutton_app_button_tint 0x7f0b01e1 +int id text 0x7f0b01e2 +int id text2 0x7f0b01e3 +int id textSpacerNoButtons 0x7f0b01e4 +int id textSpacerNoTitle 0x7f0b01e5 +int id text_input_end_icon 0x7f0b01e6 +int id text_input_error_icon 0x7f0b01e7 +int id text_input_start_icon 0x7f0b01e8 +int id textinput_counter 0x7f0b01e9 +int id textinput_error 0x7f0b01ea +int id textinput_helper_text 0x7f0b01eb +int id textinput_placeholder 0x7f0b01ec +int id textinput_prefix_text 0x7f0b01ed +int id textinput_suffix_text 0x7f0b01ee +int id texture_view 0x7f0b01ef +int id thumb 0x7f0b01f0 +int id thumbImage 0x7f0b01f1 +int id time 0x7f0b01f2 +int id title 0x7f0b01f3 +int id titleDividerNoCustom 0x7f0b01f4 +int id titleId 0x7f0b01f5 +int id titleLayoutId 0x7f0b01f6 +int id title_template 0x7f0b01f7 +int id top 0x7f0b01f8 +int id topPanel 0x7f0b01f9 +int id topic_check_box 0x7f0b01fa +int id total 0x7f0b01fb +int id touch_outside 0x7f0b01fc +int id transition_current_scene 0x7f0b01fd +int id transition_layout_save 0x7f0b01fe +int id transition_position 0x7f0b01ff +int id transition_scene_layoutid_cache 0x7f0b0200 +int id transition_transform 0x7f0b0201 +int id triangle 0x7f0b0202 +int id tvAudioCountDown 0x7f0b0203 +int id tvCancel 0x7f0b0204 +int id tvCaseListTitle 0x7f0b0205 +int id tvCaseName 0x7f0b0206 +int id tvCollectCancel 0x7f0b0207 +int id tvCollectNum 0x7f0b0208 +int id tvCollectReport 0x7f0b0209 +int id tvCollectTime 0x7f0b020a +int id tvConfigSave 0x7f0b020b +int id tvConfigTitle 0x7f0b020c +int id tvIdentityTitle 0x7f0b020d +int id tvInitiativeAfter 0x7f0b020e +int id tvInitiativeCancel 0x7f0b020f +int id tvInitiativeIdentity 0x7f0b0210 +int id tvInitiativeNum 0x7f0b0211 +int id tvInitiativePre 0x7f0b0212 +int id tvInitiativeReport 0x7f0b0213 +int id tvInitiativeTime 0x7f0b0214 +int id tvInitiativeTitle 0x7f0b0215 +int id tvLogDebugTitle 0x7f0b0216 +int id tvLoggingNotice 0x7f0b0217 +int id tvPassiveAfter 0x7f0b0218 +int id tvPassiveCancel 0x7f0b0219 +int id tvPassiveIdentity 0x7f0b021a +int id tvPassiveNum 0x7f0b021b +int id tvPassivePre 0x7f0b021c +int id tvPassiveReport 0x7f0b021d +int id tvPassiveTime 0x7f0b021e +int id tvPassiveTitle 0x7f0b021f +int id tvRecordTemplate 0x7f0b0220 +int id tvRecordTitle 0x7f0b0221 +int id tvSave 0x7f0b0222 +int id tv_current 0x7f0b0223 +int id tv_duration 0x7f0b0224 +int id unchecked 0x7f0b0225 +int id uniform 0x7f0b0226 +int id unlabeled 0x7f0b0227 +int id up 0x7f0b0228 +int id utvBottomIconView 0x7f0b0229 +int id utvLeftIconView 0x7f0b022a +int id utvRightIconView 0x7f0b022b +int id utvTopIconView 0x7f0b022c +int id vertical 0x7f0b022d +int id vertical_only 0x7f0b022e +int id viewAudioBg 0x7f0b022f +int id viewAudioButton 0x7f0b0230 +int id viewCancelDivider 0x7f0b0231 +int id viewConfigTitleLine 0x7f0b0232 +int id viewHorizontalLine 0x7f0b0233 +int id viewVerticalLine 0x7f0b0234 +int id view_lifecycle_owner 0x7f0b0235 +int id view_offset_helper 0x7f0b0236 +int id view_transition 0x7f0b0237 +int id view_tree_lifecycle_owner 0x7f0b0238 +int id view_tree_saved_state_registry_owner 0x7f0b0239 +int id view_tree_view_model_store_owner 0x7f0b023a +int id visible 0x7f0b023b +int id visible_removing_fragment_view_tag 0x7f0b023c +int id volume_progressbar 0x7f0b023d +int id west 0x7f0b023e +int id widget_container 0x7f0b023f +int id withinBounds 0x7f0b0240 +int id worm 0x7f0b0241 +int id wrap 0x7f0b0242 +int id wrap_content 0x7f0b0243 +int id wrap_content_constrained 0x7f0b0244 +int id wrap_reverse 0x7f0b0245 +int id x_left 0x7f0b0246 +int id x_right 0x7f0b0247 +int id yesId 0x7f0b0248 +int id zero_corner_chip 0x7f0b0249 +int integer abc_config_activityDefaultDur 0x7f0c0001 +int integer abc_config_activityShortDur 0x7f0c0002 +int integer app_bar_elevation_anim_duration 0x7f0c0003 +int integer bottom_sheet_slide_duration 0x7f0c0004 +int integer cancel_button_image_alpha 0x7f0c0005 +int integer config_tooltipAnimTime 0x7f0c0006 +int integer design_snackbar_text_max_lines 0x7f0c0007 +int integer design_tab_indicator_anim_duration_ms 0x7f0c0008 +int integer hide_password_duration 0x7f0c0009 +int integer material_motion_duration_long_1 0x7f0c000a +int integer material_motion_duration_long_2 0x7f0c000b +int integer material_motion_duration_medium_1 0x7f0c000c +int integer material_motion_duration_medium_2 0x7f0c000d +int integer material_motion_duration_short_1 0x7f0c000e +int integer material_motion_duration_short_2 0x7f0c000f +int integer material_motion_path 0x7f0c0010 +int integer mtrl_badge_max_character_count 0x7f0c0011 +int integer mtrl_btn_anim_delay_ms 0x7f0c0012 +int integer mtrl_btn_anim_duration_ms 0x7f0c0013 +int integer mtrl_calendar_header_orientation 0x7f0c0014 +int integer mtrl_calendar_selection_text_lines 0x7f0c0015 +int integer mtrl_calendar_year_selector_span 0x7f0c0016 +int integer mtrl_card_anim_delay_ms 0x7f0c0017 +int integer mtrl_card_anim_duration_ms 0x7f0c0018 +int integer mtrl_chip_anim_duration 0x7f0c0019 +int integer mtrl_tab_indicator_anim_duration_ms 0x7f0c001a +int integer show_password_duration 0x7f0c001b +int integer status_bar_notification_info_maxnum 0x7f0c001c +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0d0001 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0d0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0d0003 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0d0004 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0d0005 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0d0006 +int interpolator fast_out_slow_in 0x7f0d0007 +int interpolator mtrl_fast_out_linear_in 0x7f0d0008 +int interpolator mtrl_fast_out_slow_in 0x7f0d0009 +int interpolator mtrl_linear 0x7f0d000a +int interpolator mtrl_linear_out_slow_in 0x7f0d000b +int layout abc_action_bar_title_item 0x7f0e0001 +int layout abc_action_bar_up_container 0x7f0e0002 +int layout abc_action_menu_item_layout 0x7f0e0003 +int layout abc_action_menu_layout 0x7f0e0004 +int layout abc_action_mode_bar 0x7f0e0005 +int layout abc_action_mode_close_item_material 0x7f0e0006 +int layout abc_activity_chooser_view 0x7f0e0007 +int layout abc_activity_chooser_view_list_item 0x7f0e0008 +int layout abc_alert_dialog_button_bar_material 0x7f0e0009 +int layout abc_alert_dialog_material 0x7f0e000a +int layout abc_alert_dialog_title_material 0x7f0e000b +int layout abc_cascading_menu_item_layout 0x7f0e000c +int layout abc_dialog_title_material 0x7f0e000d +int layout abc_expanded_menu_layout 0x7f0e000e +int layout abc_list_menu_item_checkbox 0x7f0e000f +int layout abc_list_menu_item_icon 0x7f0e0010 +int layout abc_list_menu_item_layout 0x7f0e0011 +int layout abc_list_menu_item_radio 0x7f0e0012 +int layout abc_popup_menu_header_item_layout 0x7f0e0013 +int layout abc_popup_menu_item_layout 0x7f0e0014 +int layout abc_screen_content_include 0x7f0e0015 +int layout abc_screen_simple 0x7f0e0016 +int layout abc_screen_simple_overlay_action_mode 0x7f0e0017 +int layout abc_screen_toolbar 0x7f0e0018 +int layout abc_search_dropdown_item_icons_2line 0x7f0e0019 +int layout abc_search_view 0x7f0e001a +int layout abc_select_dialog_material 0x7f0e001b +int layout abc_tooltip 0x7f0e001c +int layout activity_log 0x7f0e001d +int layout custom_dialog 0x7f0e001e +int layout design_bottom_navigation_item 0x7f0e001f +int layout design_bottom_sheet_dialog 0x7f0e0020 +int layout design_layout_snackbar 0x7f0e0021 +int layout design_layout_snackbar_include 0x7f0e0022 +int layout design_layout_tab_icon 0x7f0e0023 +int layout design_layout_tab_text 0x7f0e0024 +int layout design_menu_item_action_area 0x7f0e0025 +int layout design_navigation_item 0x7f0e0026 +int layout design_navigation_item_header 0x7f0e0027 +int layout design_navigation_item_separator 0x7f0e0028 +int layout design_navigation_item_subheader 0x7f0e0029 +int layout design_navigation_menu 0x7f0e002a +int layout design_navigation_menu_item 0x7f0e002b +int layout design_text_input_end_icon 0x7f0e002c +int layout design_text_input_start_icon 0x7f0e002d +int layout dialog_adas_permission_long_background_running 0x7f0e002e +int layout dialog_case_list 0x7f0e002f +int layout dialog_case_topic_list 0x7f0e0030 +int layout dialog_log 0x7f0e0031 +int layout dialog_log_debug 0x7f0e0032 +int layout exo_playback_control_view 0x7f0e0033 +int layout exo_simple_player_view 0x7f0e0034 +int layout item_case_list 0x7f0e0035 +int layout item_log 0x7f0e0036 +int layout item_notice_video 0x7f0e0037 +int layout item_notice_video_small 0x7f0e0038 +int layout item_record_template 0x7f0e0039 +int layout item_topic_list 0x7f0e003a +int layout item_v2x_crossroad_live_video 0x7f0e003b +int layout layout_badcase_config 0x7f0e003c +int layout layout_status_bar 0x7f0e003d +int layout layout_status_bar_item 0x7f0e003e +int layout material_chip_input_combo 0x7f0e003f +int layout material_clock_display 0x7f0e0040 +int layout material_clock_display_divider 0x7f0e0041 +int layout material_clock_period_toggle 0x7f0e0042 +int layout material_clock_period_toggle_land 0x7f0e0043 +int layout material_clockface_textview 0x7f0e0044 +int layout material_clockface_view 0x7f0e0045 +int layout material_radial_view_group 0x7f0e0046 +int layout material_textinput_timepicker 0x7f0e0047 +int layout material_time_chip 0x7f0e0048 +int layout material_time_input 0x7f0e0049 +int layout material_timepicker 0x7f0e004a +int layout material_timepicker_dialog 0x7f0e004b +int layout material_timepicker_textinput_display 0x7f0e004c +int layout module_commons_layout_toast 0x7f0e004d +int layout module_commons_layout_toast_with_left_drawable 0x7f0e004e +int layout mtrl_alert_dialog 0x7f0e004f +int layout mtrl_alert_dialog_actions 0x7f0e0050 +int layout mtrl_alert_dialog_title 0x7f0e0051 +int layout mtrl_alert_select_dialog_item 0x7f0e0052 +int layout mtrl_alert_select_dialog_multichoice 0x7f0e0053 +int layout mtrl_alert_select_dialog_singlechoice 0x7f0e0054 +int layout mtrl_calendar_day 0x7f0e0055 +int layout mtrl_calendar_day_of_week 0x7f0e0056 +int layout mtrl_calendar_days_of_week 0x7f0e0057 +int layout mtrl_calendar_horizontal 0x7f0e0058 +int layout mtrl_calendar_month 0x7f0e0059 +int layout mtrl_calendar_month_labeled 0x7f0e005a +int layout mtrl_calendar_month_navigation 0x7f0e005b +int layout mtrl_calendar_months 0x7f0e005c +int layout mtrl_calendar_vertical 0x7f0e005d +int layout mtrl_calendar_year 0x7f0e005e +int layout mtrl_layout_snackbar 0x7f0e005f +int layout mtrl_layout_snackbar_include 0x7f0e0060 +int layout mtrl_navigation_rail_item 0x7f0e0061 +int layout mtrl_picker_actions 0x7f0e0062 +int layout mtrl_picker_dialog 0x7f0e0063 +int layout mtrl_picker_fullscreen 0x7f0e0064 +int layout mtrl_picker_header_dialog 0x7f0e0065 +int layout mtrl_picker_header_fullscreen 0x7f0e0066 +int layout mtrl_picker_header_selection_text 0x7f0e0067 +int layout mtrl_picker_header_title_text 0x7f0e0068 +int layout mtrl_picker_header_toggle 0x7f0e0069 +int layout mtrl_picker_text_input_date 0x7f0e006a +int layout mtrl_picker_text_input_date_range 0x7f0e006b +int layout notice_video_card_layout 0x7f0e006c +int layout notification_action 0x7f0e006d +int layout notification_action_tombstone 0x7f0e006e +int layout notification_template_custom_big 0x7f0e006f +int layout notification_template_icon_group 0x7f0e0070 +int layout notification_template_part_chronometer 0x7f0e0071 +int layout notification_template_part_time 0x7f0e0072 +int layout select_dialog_item_material 0x7f0e0073 +int layout select_dialog_multichoice_material 0x7f0e0074 +int layout select_dialog_singlechoice_material 0x7f0e0075 +int layout support_simple_spinner_dropdown_item 0x7f0e0076 +int layout test_action_chip 0x7f0e0077 +int layout test_chip_zero_corner_radius 0x7f0e0078 +int layout test_design_checkbox 0x7f0e0079 +int layout test_design_radiobutton 0x7f0e007a +int layout test_navigation_bar_item_layout 0x7f0e007b +int layout test_reflow_chipgroup 0x7f0e007c +int layout test_toolbar 0x7f0e007d +int layout test_toolbar_custom_background 0x7f0e007e +int layout test_toolbar_elevation 0x7f0e007f +int layout test_toolbar_surface 0x7f0e0080 +int layout text_view_with_line_height_from_appearance 0x7f0e0081 +int layout text_view_with_line_height_from_layout 0x7f0e0082 +int layout text_view_with_line_height_from_style 0x7f0e0083 +int layout text_view_with_theme_line_height 0x7f0e0084 +int layout text_view_without_line_height 0x7f0e0085 +int layout utils_toast_view 0x7f0e0086 +int layout video_brightness 0x7f0e0087 +int layout video_layout_ad 0x7f0e0088 +int layout video_layout_custom 0x7f0e0089 +int layout video_layout_normal 0x7f0e008a +int layout video_layout_sample_ad 0x7f0e008b +int layout video_layout_standard 0x7f0e008c +int layout video_progress_dialog 0x7f0e008d +int layout video_volume_dialog 0x7f0e008e +int layout view_ai_data_collect 0x7f0e008f +int layout view_initiative_bad_case 0x7f0e0090 +int layout view_passive_bad_case 0x7f0e0091 +int layout wm_logging_notice 0x7f0e0092 +int plurals mtrl_badge_content_description 0x7f120001 +int raw beep 0x7f130001 +int raw chuzuche 0x7f130002 +int raw fangkuang 0x7f130003 +int raw hq_h9 0x7f130004 +int raw huanwei 0x7f130005 +int raw jiantou 0x7f130006 +int raw qfpz 0x7f130007 +int raw qipao 0x7f130008 +int raw sanjiaozhui 0x7f130009 +int raw shexiangtou 0x7f13000a +int raw special_vehicle 0x7f13000b +int raw stopline 0x7f13000c +int raw traffic_daba 0x7f13000d +int raw traffic_daba_day 0x7f13000e +int raw traffic_kache 0x7f13000f +int raw traffic_motuoche 0x7f130010 +int raw traffic_motuoche_day 0x7f130011 +int raw traffic_people 0x7f130012 +int raw traffic_people_day 0x7f130013 +int raw traffic_tachexiaoche 0x7f130014 +int raw traffic_tachexiaoche_day 0x7f130015 +int raw traffic_unkonwn 0x7f130016 +int raw traffic_xiankuang 0x7f130017 +int raw traffic_ziche_day 0x7f130018 +int raw traffic_zixingche 0x7f130019 +int raw traffic_zixingche_day 0x7f13001a +int raw v2x_daolujiebing 0x7f13001b +int raw v2x_daolujishui 0x7f13001c +int raw v2x_daolushigong 0x7f13001d +int raw v2x_guzhangqiuzhu 0x7f13001e +int raw v2x_jiaotongjiancha 0x7f13001f +int raw v2x_nongwu 0x7f130020 +int raw v2x_shigong_warning 0x7f130021 +int raw v2x_shigu 0x7f130022 +int raw v2x_shishilukuang 0x7f130023 +int raw v2x_yongdu 0x7f130024 +int raw xiaobache 0x7f130025 +int raw xingren 0x7f130026 +int raw xingren_night 0x7f130027 +int raw ziche 0x7f130028 +int string N_A 0x7f140001 +int string TrackType_audio 0x7f140002 +int string TrackType_metadata 0x7f140003 +int string TrackType_subtitle 0x7f140004 +int string TrackType_timedtext 0x7f140005 +int string TrackType_unknown 0x7f140006 +int string TrackType_video 0x7f140007 +int string VideoView_ar_16_9_fit_parent 0x7f140008 +int string VideoView_ar_4_3_fit_parent 0x7f140009 +int string VideoView_ar_aspect_fill_parent 0x7f14000a +int string VideoView_ar_aspect_fit_parent 0x7f14000b +int string VideoView_ar_aspect_wrap_content 0x7f14000c +int string VideoView_ar_match_parent 0x7f14000d +int string VideoView_error_button 0x7f14000e +int string VideoView_error_text_invalid_progressive_playback 0x7f14000f +int string VideoView_error_text_unknown 0x7f140010 +int string VideoView_info_text_video_not_supported 0x7f140011 +int string VideoView_player_AndroidMediaPlayer 0x7f140012 +int string VideoView_player_IjkExoMediaPlayer 0x7f140013 +int string VideoView_player_IjkMediaPlayer 0x7f140014 +int string VideoView_player_none 0x7f140015 +int string VideoView_render_none 0x7f140016 +int string VideoView_render_surface_view 0x7f140017 +int string VideoView_render_texture_view 0x7f140018 +int string a_cache 0x7f140019 +int string abc_action_bar_home_description 0x7f14001a +int string abc_action_bar_up_description 0x7f14001b +int string abc_action_menu_overflow_description 0x7f14001c +int string abc_action_mode_done 0x7f14001d +int string abc_activity_chooser_view_see_all 0x7f14001e +int string abc_activitychooserview_choose_application 0x7f14001f +int string abc_capital_off 0x7f140020 +int string abc_capital_on 0x7f140021 +int string abc_font_family_body_1_material 0x7f140022 +int string abc_font_family_body_2_material 0x7f140023 +int string abc_font_family_button_material 0x7f140024 +int string abc_font_family_caption_material 0x7f140025 +int string abc_font_family_display_1_material 0x7f140026 +int string abc_font_family_display_2_material 0x7f140027 +int string abc_font_family_display_3_material 0x7f140028 +int string abc_font_family_display_4_material 0x7f140029 +int string abc_font_family_headline_material 0x7f14002a +int string abc_font_family_menu_material 0x7f14002b +int string abc_font_family_subhead_material 0x7f14002c +int string abc_font_family_title_material 0x7f14002d +int string abc_menu_alt_shortcut_label 0x7f14002e +int string abc_menu_ctrl_shortcut_label 0x7f14002f +int string abc_menu_delete_shortcut_label 0x7f140030 +int string abc_menu_enter_shortcut_label 0x7f140031 +int string abc_menu_function_shortcut_label 0x7f140032 +int string abc_menu_meta_shortcut_label 0x7f140033 +int string abc_menu_shift_shortcut_label 0x7f140034 +int string abc_menu_space_shortcut_label 0x7f140035 +int string abc_menu_sym_shortcut_label 0x7f140036 +int string abc_prepend_shortcut_label 0x7f140037 +int string abc_search_hint 0x7f140038 +int string abc_searchview_description_clear 0x7f140039 +int string abc_searchview_description_query 0x7f14003a +int string abc_searchview_description_search 0x7f14003b +int string abc_searchview_description_submit 0x7f14003c +int string abc_searchview_description_voice 0x7f14003d +int string abc_shareactionprovider_share_with 0x7f14003e +int string abc_shareactionprovider_share_with_application 0x7f14003f +int string abc_toolbar_collapse_description 0x7f140040 +int string androidx_startup 0x7f140041 +int string app_name 0x7f140042 +int string appbar_scrolling_view_behavior 0x7f140043 +int string bit_rate 0x7f140044 +int string bottom_sheet_behavior 0x7f140045 +int string bottomsheet_action_expand_halfway 0x7f140046 +int string character_counter_content_description 0x7f140047 +int string character_counter_overflowed_content_description 0x7f140048 +int string character_counter_pattern 0x7f140049 +int string chip_text 0x7f14004a +int string clear_text_end_icon_content_description 0x7f14004b +int string close 0x7f14004c +int string dialog_title 0x7f14004d +int string error_icon_content_description 0x7f14004e +int string exit 0x7f14004f +int string exo_controls_fastforward_description 0x7f140050 +int string exo_controls_next_description 0x7f140051 +int string exo_controls_pause_description 0x7f140052 +int string exo_controls_play_description 0x7f140053 +int string exo_controls_previous_description 0x7f140054 +int string exo_controls_rewind_description 0x7f140055 +int string exo_controls_stop_description 0x7f140056 +int string exposed_dropdown_menu_content_description 0x7f140057 +int string fab_transformation_scrim_behavior 0x7f140058 +int string fab_transformation_sheet_behavior 0x7f140059 +int string file_not_support 0x7f14005a +int string fps 0x7f14005b +int string hide_bottom_view_on_scroll_behavior 0x7f14005c +int string icon_content_description 0x7f14005d +int string ijkplayer_dummy 0x7f14005e +int string item_view_role_description 0x7f14005f +int string jump_ad 0x7f140060 +int string load_cost 0x7f140061 +int string material_clock_display_divider 0x7f140062 +int string material_clock_toggle_content_description 0x7f140063 +int string material_hour_selection 0x7f140064 +int string material_hour_suffix 0x7f140065 +int string material_minute_selection 0x7f140066 +int string material_minute_suffix 0x7f140067 +int string material_motion_easing_accelerated 0x7f140068 +int string material_motion_easing_decelerated 0x7f140069 +int string material_motion_easing_emphasized 0x7f14006a +int string material_motion_easing_linear 0x7f14006b +int string material_motion_easing_standard 0x7f14006c +int string material_slider_range_end 0x7f14006d +int string material_slider_range_start 0x7f14006e +int string material_timepicker_am 0x7f14006f +int string material_timepicker_clock_mode_description 0x7f140070 +int string material_timepicker_hour 0x7f140071 +int string material_timepicker_minute 0x7f140072 +int string material_timepicker_pm 0x7f140073 +int string material_timepicker_select_time 0x7f140074 +int string material_timepicker_text_input_mode_description 0x7f140075 +int string media_information 0x7f140076 +int string mi__selected_audio_track 0x7f140077 +int string mi__selected_subtitle_track 0x7f140078 +int string mi__selected_video_track 0x7f140079 +int string mi_bit_rate 0x7f14007a +int string mi_channels 0x7f14007b +int string mi_codec 0x7f14007c +int string mi_frame_rate 0x7f14007d +int string mi_language 0x7f14007e +int string mi_length 0x7f14007f +int string mi_media 0x7f140080 +int string mi_pixel_format 0x7f140081 +int string mi_player 0x7f140082 +int string mi_profile_level 0x7f140083 +int string mi_resolution 0x7f140084 +int string mi_sample_rate 0x7f140085 +int string mi_stream_fmt1 0x7f140086 +int string mi_type 0x7f140087 +int string module_map_model_faster 0x7f140088 +int string module_map_model_normal 0x7f140089 +int string mtrl_badge_numberless_content_description 0x7f14008a +int string mtrl_chip_close_icon_content_description 0x7f14008b +int string mtrl_exceed_max_badge_number_content_description 0x7f14008c +int string mtrl_exceed_max_badge_number_suffix 0x7f14008d +int string mtrl_picker_a11y_next_month 0x7f14008e +int string mtrl_picker_a11y_prev_month 0x7f14008f +int string mtrl_picker_announce_current_selection 0x7f140090 +int string mtrl_picker_cancel 0x7f140091 +int string mtrl_picker_confirm 0x7f140092 +int string mtrl_picker_date_header_selected 0x7f140093 +int string mtrl_picker_date_header_title 0x7f140094 +int string mtrl_picker_date_header_unselected 0x7f140095 +int string mtrl_picker_day_of_week_column_header 0x7f140096 +int string mtrl_picker_invalid_format 0x7f140097 +int string mtrl_picker_invalid_format_example 0x7f140098 +int string mtrl_picker_invalid_format_use 0x7f140099 +int string mtrl_picker_invalid_range 0x7f14009a +int string mtrl_picker_navigate_to_year_description 0x7f14009b +int string mtrl_picker_out_of_range 0x7f14009c +int string mtrl_picker_range_header_only_end_selected 0x7f14009d +int string mtrl_picker_range_header_only_start_selected 0x7f14009e +int string mtrl_picker_range_header_selected 0x7f14009f +int string mtrl_picker_range_header_title 0x7f1400a0 +int string mtrl_picker_range_header_unselected 0x7f1400a1 +int string mtrl_picker_save 0x7f1400a2 +int string mtrl_picker_text_input_date_hint 0x7f1400a3 +int string mtrl_picker_text_input_date_range_end_hint 0x7f1400a4 +int string mtrl_picker_text_input_date_range_start_hint 0x7f1400a5 +int string mtrl_picker_text_input_day_abbr 0x7f1400a6 +int string mtrl_picker_text_input_month_abbr 0x7f1400a7 +int string mtrl_picker_text_input_year_abbr 0x7f1400a8 +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f1400a9 +int string mtrl_picker_toggle_to_day_selection 0x7f1400aa +int string mtrl_picker_toggle_to_text_input_mode 0x7f1400ab +int string mtrl_picker_toggle_to_year_selection 0x7f1400ac +int string no 0x7f1400ad +int string no_net 0x7f1400ae +int string no_url 0x7f1400af +int string password_toggle_content_description 0x7f1400b0 +int string path_password_eye 0x7f1400b1 +int string path_password_eye_mask_strike_through 0x7f1400b2 +int string path_password_eye_mask_visible 0x7f1400b3 +int string path_password_strike_through 0x7f1400b4 +int string recent 0x7f1400b5 +int string sample 0x7f1400b6 +int string search_menu_title 0x7f1400b7 +int string seek_cost 0x7f1400b8 +int string seek_load_cost 0x7f1400b9 +int string settings 0x7f1400ba +int string show_info 0x7f1400bb +int string status_bar_notification_info_overflow 0x7f1400bc +int string tcp_speed 0x7f1400bd +int string tips_not_wifi 0x7f1400be +int string tips_not_wifi_cancel 0x7f1400bf +int string tips_not_wifi_confirm 0x7f1400c0 +int string toggle_player 0x7f1400c1 +int string toggle_ratio 0x7f1400c2 +int string toggle_render 0x7f1400c3 +int string tracks 0x7f1400c4 +int string v_cache 0x7f1400c5 +int string vdec 0x7f1400c6 +int string yes 0x7f1400c7 +int style ActivityTranslucent 0x7f150001 +int style AlertDialog_AppCompat 0x7f150002 +int style AlertDialog_AppCompat_Light 0x7f150003 +int style AndroidThemeColorAccentYellow 0x7f150004 +int style Animation_AppCompat_Dialog 0x7f150005 +int style Animation_AppCompat_DropDownUp 0x7f150006 +int style Animation_AppCompat_Tooltip 0x7f150007 +int style Animation_Design_BottomSheetDialog 0x7f150008 +int style Animation_MaterialComponents_BottomSheetDialog 0x7f150009 +int style BaseFloatDialogStyle 0x7f15000a +int style Base_AlertDialog_AppCompat 0x7f15000b +int style Base_AlertDialog_AppCompat_Light 0x7f15000c +int style Base_Animation_AppCompat_Dialog 0x7f15000d +int style Base_Animation_AppCompat_DropDownUp 0x7f15000e +int style Base_Animation_AppCompat_Tooltip 0x7f15000f +int style Base_CardView 0x7f150010 +int style Base_DialogWindowTitleBackground_AppCompat 0x7f150011 +int style Base_DialogWindowTitle_AppCompat 0x7f150012 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f150013 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f150014 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f150015 +int style Base_TextAppearance_AppCompat 0x7f150016 +int style Base_TextAppearance_AppCompat_Body1 0x7f150017 +int style Base_TextAppearance_AppCompat_Body2 0x7f150018 +int style Base_TextAppearance_AppCompat_Button 0x7f150019 +int style Base_TextAppearance_AppCompat_Caption 0x7f15001a +int style Base_TextAppearance_AppCompat_Display1 0x7f15001b +int style Base_TextAppearance_AppCompat_Display2 0x7f15001c +int style Base_TextAppearance_AppCompat_Display3 0x7f15001d +int style Base_TextAppearance_AppCompat_Display4 0x7f15001e +int style Base_TextAppearance_AppCompat_Headline 0x7f15001f +int style Base_TextAppearance_AppCompat_Inverse 0x7f150020 +int style Base_TextAppearance_AppCompat_Large 0x7f150021 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f150022 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f150023 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f150024 +int style Base_TextAppearance_AppCompat_Medium 0x7f150025 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f150026 +int style Base_TextAppearance_AppCompat_Menu 0x7f150027 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f150028 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150029 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f15002a +int style Base_TextAppearance_AppCompat_Small 0x7f15002b +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f15002c +int style Base_TextAppearance_AppCompat_Subhead 0x7f15002d +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f15002e +int style Base_TextAppearance_AppCompat_Title 0x7f15002f +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150030 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f150031 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150032 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150033 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f150034 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f150035 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150036 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150037 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150038 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150039 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f15003a +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f15003b +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f15003c +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f15003d +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f15003e +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f15003f +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150040 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150041 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150042 +int style Base_TextAppearance_MaterialComponents_Badge 0x7f150043 +int style Base_TextAppearance_MaterialComponents_Button 0x7f150044 +int style Base_TextAppearance_MaterialComponents_Headline6 0x7f150045 +int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f150046 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150047 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150048 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150049 +int style Base_ThemeOverlay_AppCompat 0x7f15004a +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15004b +int style Base_ThemeOverlay_AppCompat_Dark 0x7f15004c +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f15004d +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f15004e +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f15004f +int style Base_ThemeOverlay_AppCompat_Light 0x7f150050 +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f150051 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150052 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f150053 +int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f150054 +int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f150055 +int style Base_Theme_AppCompat 0x7f150056 +int style Base_Theme_AppCompat_CompactMenu 0x7f150057 +int style Base_Theme_AppCompat_Dialog 0x7f150058 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150059 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f15005a +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15005b +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15005c +int style Base_Theme_AppCompat_Light 0x7f15005d +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15005e +int style Base_Theme_AppCompat_Light_Dialog 0x7f15005f +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f150060 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150061 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150062 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150063 +int style Base_Theme_MaterialComponents 0x7f150064 +int style Base_Theme_MaterialComponents_Bridge 0x7f150065 +int style Base_Theme_MaterialComponents_CompactMenu 0x7f150066 +int style Base_Theme_MaterialComponents_Dialog 0x7f150067 +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f150068 +int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f150069 +int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f15006a +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f15006b +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f15006c +int style Base_Theme_MaterialComponents_Light 0x7f15006d +int style Base_Theme_MaterialComponents_Light_Bridge 0x7f15006e +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f15006f +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150070 +int style Base_Theme_MaterialComponents_Light_Dialog 0x7f150071 +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150072 +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f150073 +int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150074 +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150075 +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150076 +int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f150077 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f150078 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150079 +int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f15007a +int style Base_V14_Theme_MaterialComponents 0x7f15007b +int style Base_V14_Theme_MaterialComponents_Bridge 0x7f15007c +int style Base_V14_Theme_MaterialComponents_Dialog 0x7f15007d +int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f15007e +int style Base_V14_Theme_MaterialComponents_Light 0x7f15007f +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f150080 +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150081 +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f150082 +int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150083 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150084 +int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f150085 +int style Base_V21_Theme_AppCompat 0x7f150086 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150087 +int style Base_V21_Theme_AppCompat_Light 0x7f150088 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150089 +int style Base_V21_Theme_MaterialComponents 0x7f15008a +int style Base_V21_Theme_MaterialComponents_Dialog 0x7f15008b +int style Base_V21_Theme_MaterialComponents_Light 0x7f15008c +int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f15008d +int style Base_V22_Theme_AppCompat 0x7f15008e +int style Base_V22_Theme_AppCompat_Light 0x7f15008f +int style Base_V23_Theme_AppCompat 0x7f150090 +int style Base_V23_Theme_AppCompat_Light 0x7f150091 +int style Base_V26_Theme_AppCompat 0x7f150092 +int style Base_V26_Theme_AppCompat_Light 0x7f150093 +int style Base_V26_Widget_AppCompat_Toolbar 0x7f150094 +int style Base_V28_Theme_AppCompat 0x7f150095 +int style Base_V28_Theme_AppCompat_Light 0x7f150096 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150097 +int style Base_V7_Theme_AppCompat 0x7f150098 +int style Base_V7_Theme_AppCompat_Dialog 0x7f150099 +int style Base_V7_Theme_AppCompat_Light 0x7f15009a +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f15009b +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f15009c +int style Base_V7_Widget_AppCompat_EditText 0x7f15009d +int style Base_V7_Widget_AppCompat_Toolbar 0x7f15009e +int style Base_Widget_AppCompat_ActionBar 0x7f15009f +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f1500a0 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f1500a1 +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f1500a2 +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f1500a3 +int style Base_Widget_AppCompat_ActionButton 0x7f1500a4 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f1500a5 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f1500a6 +int style Base_Widget_AppCompat_ActionMode 0x7f1500a7 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f1500a8 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f1500a9 +int style Base_Widget_AppCompat_Button 0x7f1500aa +int style Base_Widget_AppCompat_ButtonBar 0x7f1500ab +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f1500ac +int style Base_Widget_AppCompat_Button_Borderless 0x7f1500ad +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f1500ae +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f1500af +int style Base_Widget_AppCompat_Button_Colored 0x7f1500b0 +int style Base_Widget_AppCompat_Button_Small 0x7f1500b1 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f1500b2 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f1500b3 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1500b4 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1500b5 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1500b6 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1500b7 +int style Base_Widget_AppCompat_EditText 0x7f1500b8 +int style Base_Widget_AppCompat_ImageButton 0x7f1500b9 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f1500ba +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1500bb +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1500bc +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1500bd +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1500be +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1500bf +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1500c0 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1500c1 +int style Base_Widget_AppCompat_ListMenuView 0x7f1500c2 +int style Base_Widget_AppCompat_ListPopupWindow 0x7f1500c3 +int style Base_Widget_AppCompat_ListView 0x7f1500c4 +int style Base_Widget_AppCompat_ListView_DropDown 0x7f1500c5 +int style Base_Widget_AppCompat_ListView_Menu 0x7f1500c6 +int style Base_Widget_AppCompat_PopupMenu 0x7f1500c7 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1500c8 +int style Base_Widget_AppCompat_PopupWindow 0x7f1500c9 +int style Base_Widget_AppCompat_ProgressBar 0x7f1500ca +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1500cb +int style Base_Widget_AppCompat_RatingBar 0x7f1500cc +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1500cd +int style Base_Widget_AppCompat_RatingBar_Small 0x7f1500ce +int style Base_Widget_AppCompat_SearchView 0x7f1500cf +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1500d0 +int style Base_Widget_AppCompat_SeekBar 0x7f1500d1 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1500d2 +int style Base_Widget_AppCompat_Spinner 0x7f1500d3 +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1500d4 +int style Base_Widget_AppCompat_TextView 0x7f1500d5 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500d6 +int style Base_Widget_AppCompat_Toolbar 0x7f1500d7 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500d8 +int style Base_Widget_Design_TabLayout 0x7f1500d9 +int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f1500da +int style Base_Widget_MaterialComponents_CheckedTextView 0x7f1500db +int style Base_Widget_MaterialComponents_Chip 0x7f1500dc +int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f1500dd +int style Base_Widget_MaterialComponents_PopupMenu 0x7f1500de +int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1500df +int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1500e0 +int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f1500e1 +int style Base_Widget_MaterialComponents_Slider 0x7f1500e2 +int style Base_Widget_MaterialComponents_Snackbar 0x7f1500e3 +int style Base_Widget_MaterialComponents_TextInputEditText 0x7f1500e4 +int style Base_Widget_MaterialComponents_TextInputLayout 0x7f1500e5 +int style Base_Widget_MaterialComponents_TextView 0x7f1500e6 +int style CardView 0x7f1500e7 +int style CardView_Dark 0x7f1500e8 +int style CardView_Light 0x7f1500e9 +int style EmptyTheme 0x7f1500ea +int style ExoMediaButton 0x7f1500eb +int style ExoMediaButton_FastForward 0x7f1500ec +int style ExoMediaButton_Next 0x7f1500ed +int style ExoMediaButton_Pause 0x7f1500ee +int style ExoMediaButton_Play 0x7f1500ef +int style ExoMediaButton_Previous 0x7f1500f0 +int style ExoMediaButton_Rewind 0x7f1500f1 +int style MaterialAlertDialog_MaterialComponents 0x7f1500f2 +int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f1500f3 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f1500f4 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f1500f5 +int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f1500f6 +int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f1500f7 +int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f1500f8 +int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f1500f9 +int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f1500fa +int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f1500fb +int style PermissionLongBackgroundRunningDialogStyle 0x7f1500fc +int style Platform_AppCompat 0x7f1500fd +int style Platform_AppCompat_Light 0x7f1500fe +int style Platform_MaterialComponents 0x7f1500ff +int style Platform_MaterialComponents_Dialog 0x7f150100 +int style Platform_MaterialComponents_Light 0x7f150101 +int style Platform_MaterialComponents_Light_Dialog 0x7f150102 +int style Platform_ThemeOverlay_AppCompat 0x7f150103 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f150104 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f150105 +int style Platform_V21_AppCompat 0x7f150106 +int style Platform_V21_AppCompat_Light 0x7f150107 +int style Platform_V25_AppCompat 0x7f150108 +int style Platform_V25_AppCompat_Light 0x7f150109 +int style Platform_Widget_AppCompat_Spinner 0x7f15010a +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f15010b +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f15010c +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f15010d +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f15010e +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f15010f +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f150110 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f150111 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f150112 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f150113 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f150114 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f150115 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f150116 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f150117 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f150118 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f150119 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f15011a +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f15011b +int style ShapeAppearanceOverlay 0x7f15011c +int style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize 0x7f15011d +int style ShapeAppearanceOverlay_BottomRightCut 0x7f15011e +int style ShapeAppearanceOverlay_Cut 0x7f15011f +int style ShapeAppearanceOverlay_DifferentCornerSize 0x7f150120 +int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f150121 +int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f150122 +int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f150123 +int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f150124 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150125 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f150126 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f150127 +int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f150128 +int style ShapeAppearanceOverlay_TopLeftCut 0x7f150129 +int style ShapeAppearanceOverlay_TopRightDifferentCornerSize 0x7f15012a +int style ShapeAppearance_MaterialComponents 0x7f15012b +int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f15012c +int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f15012d +int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f15012e +int style ShapeAppearance_MaterialComponents_Test 0x7f15012f +int style ShapeAppearance_MaterialComponents_Tooltip 0x7f150130 +int style TestStyleWithLineHeight 0x7f150131 +int style TestStyleWithLineHeightAppearance 0x7f150132 +int style TestStyleWithThemeLineHeightAttribute 0x7f150133 +int style TestStyleWithoutLineHeight 0x7f150134 +int style TestThemeWithLineHeight 0x7f150135 +int style TestThemeWithLineHeightDisabled 0x7f150136 +int style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150137 +int style Test_Theme_MaterialComponents_MaterialCalendar 0x7f150138 +int style Test_Widget_MaterialComponents_MaterialCalendar 0x7f150139 +int style Test_Widget_MaterialComponents_MaterialCalendar_Day 0x7f15013a +int style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f15013b +int style TextAppearance_AppCompat 0x7f15013c +int style TextAppearance_AppCompat_Body1 0x7f15013d +int style TextAppearance_AppCompat_Body2 0x7f15013e +int style TextAppearance_AppCompat_Button 0x7f15013f +int style TextAppearance_AppCompat_Caption 0x7f150140 +int style TextAppearance_AppCompat_Display1 0x7f150141 +int style TextAppearance_AppCompat_Display2 0x7f150142 +int style TextAppearance_AppCompat_Display3 0x7f150143 +int style TextAppearance_AppCompat_Display4 0x7f150144 +int style TextAppearance_AppCompat_Headline 0x7f150145 +int style TextAppearance_AppCompat_Inverse 0x7f150146 +int style TextAppearance_AppCompat_Large 0x7f150147 +int style TextAppearance_AppCompat_Large_Inverse 0x7f150148 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f150149 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f15014a +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15014b +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15014c +int style TextAppearance_AppCompat_Medium 0x7f15014d +int style TextAppearance_AppCompat_Medium_Inverse 0x7f15014e +int style TextAppearance_AppCompat_Menu 0x7f15014f +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150150 +int style TextAppearance_AppCompat_SearchResult_Title 0x7f150151 +int style TextAppearance_AppCompat_Small 0x7f150152 +int style TextAppearance_AppCompat_Small_Inverse 0x7f150153 +int style TextAppearance_AppCompat_Subhead 0x7f150154 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f150155 +int style TextAppearance_AppCompat_Title 0x7f150156 +int style TextAppearance_AppCompat_Title_Inverse 0x7f150157 +int style TextAppearance_AppCompat_Tooltip 0x7f150158 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150159 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15015a +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15015b +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15015c +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15015d +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15015e +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f15015f +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150160 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f150161 +int style TextAppearance_AppCompat_Widget_Button 0x7f150162 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150163 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150164 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150165 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f150166 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150167 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150168 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150169 +int style TextAppearance_AppCompat_Widget_Switch 0x7f15016a +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15016b +int style TextAppearance_Compat_Notification 0x7f15016c +int style TextAppearance_Compat_Notification_Info 0x7f15016d +int style TextAppearance_Compat_Notification_Line2 0x7f15016e +int style TextAppearance_Compat_Notification_Time 0x7f15016f +int style TextAppearance_Compat_Notification_Title 0x7f150170 +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f150171 +int style TextAppearance_Design_Counter 0x7f150172 +int style TextAppearance_Design_Counter_Overflow 0x7f150173 +int style TextAppearance_Design_Error 0x7f150174 +int style TextAppearance_Design_HelperText 0x7f150175 +int style TextAppearance_Design_Hint 0x7f150176 +int style TextAppearance_Design_Placeholder 0x7f150177 +int style TextAppearance_Design_Prefix 0x7f150178 +int style TextAppearance_Design_Snackbar_Message 0x7f150179 +int style TextAppearance_Design_Suffix 0x7f15017a +int style TextAppearance_Design_Tab 0x7f15017b +int style TextAppearance_MaterialComponents_Badge 0x7f15017c +int style TextAppearance_MaterialComponents_Body1 0x7f15017d +int style TextAppearance_MaterialComponents_Body2 0x7f15017e +int style TextAppearance_MaterialComponents_Button 0x7f15017f +int style TextAppearance_MaterialComponents_Caption 0x7f150180 +int style TextAppearance_MaterialComponents_Chip 0x7f150181 +int style TextAppearance_MaterialComponents_Headline1 0x7f150182 +int style TextAppearance_MaterialComponents_Headline2 0x7f150183 +int style TextAppearance_MaterialComponents_Headline3 0x7f150184 +int style TextAppearance_MaterialComponents_Headline4 0x7f150185 +int style TextAppearance_MaterialComponents_Headline5 0x7f150186 +int style TextAppearance_MaterialComponents_Headline6 0x7f150187 +int style TextAppearance_MaterialComponents_Overline 0x7f150188 +int style TextAppearance_MaterialComponents_Subtitle1 0x7f150189 +int style TextAppearance_MaterialComponents_Subtitle2 0x7f15018a +int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f15018b +int style TextAppearance_MaterialComponents_Tooltip 0x7f15018c +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15018d +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15018e +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15018f +int style ThemeOverlayColorAccentRed 0x7f150190 +int style ThemeOverlay_AppCompat 0x7f150191 +int style ThemeOverlay_AppCompat_ActionBar 0x7f150192 +int style ThemeOverlay_AppCompat_Dark 0x7f150193 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150194 +int style ThemeOverlay_AppCompat_DayNight 0x7f150195 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f150196 +int style ThemeOverlay_AppCompat_Dialog 0x7f150197 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150198 +int style ThemeOverlay_AppCompat_Light 0x7f150199 +int style ThemeOverlay_Design_TextInputEditText 0x7f15019a +int style ThemeOverlay_MaterialComponents 0x7f15019b +int style ThemeOverlay_MaterialComponents_ActionBar 0x7f15019c +int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f15019d +int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f15019e +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f15019f +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f1501a0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f1501a1 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f1501a2 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f1501a3 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f1501a4 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f1501a5 +int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1501a6 +int style ThemeOverlay_MaterialComponents_Dark 0x7f1501a7 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f1501a8 +int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f1501a9 +int style ThemeOverlay_MaterialComponents_Dialog 0x7f1501aa +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f1501ab +int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f1501ac +int style ThemeOverlay_MaterialComponents_Light 0x7f1501ad +int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f1501ae +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1501af +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f1501b0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f1501b1 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f1501b2 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f1501b3 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f1501b4 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f1501b5 +int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f1501b6 +int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f1501b7 +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f1501b8 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f1501b9 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1501ba +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1501bb +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1501bc +int style ThemeOverlay_MaterialComponents_TimePicker 0x7f1501bd +int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f1501be +int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f1501bf +int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f1501c0 +int style Theme_AppCompat 0x7f1501c1 +int style Theme_AppCompat_CompactMenu 0x7f1501c2 +int style Theme_AppCompat_DayNight 0x7f1501c3 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f1501c4 +int style Theme_AppCompat_DayNight_Dialog 0x7f1501c5 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f1501c6 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f1501c7 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f1501c8 +int style Theme_AppCompat_DayNight_NoActionBar 0x7f1501c9 +int style Theme_AppCompat_Dialog 0x7f1501ca +int style Theme_AppCompat_DialogWhenLarge 0x7f1501cb +int style Theme_AppCompat_Dialog_Alert 0x7f1501cc +int style Theme_AppCompat_Dialog_MinWidth 0x7f1501cd +int style Theme_AppCompat_Empty 0x7f1501ce +int style Theme_AppCompat_Light 0x7f1501cf +int style Theme_AppCompat_Light_DarkActionBar 0x7f1501d0 +int style Theme_AppCompat_Light_Dialog 0x7f1501d1 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f1501d2 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f1501d3 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f1501d4 +int style Theme_AppCompat_Light_NoActionBar 0x7f1501d5 +int style Theme_AppCompat_NoActionBar 0x7f1501d6 +int style Theme_Design 0x7f1501d7 +int style Theme_Design_BottomSheetDialog 0x7f1501d8 +int style Theme_Design_Light 0x7f1501d9 +int style Theme_Design_Light_BottomSheetDialog 0x7f1501da +int style Theme_Design_Light_NoActionBar 0x7f1501db +int style Theme_Design_NoActionBar 0x7f1501dc +int style Theme_MaterialComponents 0x7f1501dd +int style Theme_MaterialComponents_BottomSheetDialog 0x7f1501de +int style Theme_MaterialComponents_Bridge 0x7f1501df +int style Theme_MaterialComponents_CompactMenu 0x7f1501e0 +int style Theme_MaterialComponents_DayNight 0x7f1501e1 +int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f1501e2 +int style Theme_MaterialComponents_DayNight_Bridge 0x7f1501e3 +int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f1501e4 +int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f1501e5 +int style Theme_MaterialComponents_DayNight_Dialog 0x7f1501e6 +int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f1501e7 +int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f1501e8 +int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f1501e9 +int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f1501ea +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f1501eb +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f1501ec +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f1501ed +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f1501ee +int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f1501ef +int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f1501f0 +int style Theme_MaterialComponents_Dialog 0x7f1501f1 +int style Theme_MaterialComponents_DialogWhenLarge 0x7f1501f2 +int style Theme_MaterialComponents_Dialog_Alert 0x7f1501f3 +int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f1501f4 +int style Theme_MaterialComponents_Dialog_Bridge 0x7f1501f5 +int style Theme_MaterialComponents_Dialog_FixedSize 0x7f1501f6 +int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f1501f7 +int style Theme_MaterialComponents_Dialog_MinWidth 0x7f1501f8 +int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f1501f9 +int style Theme_MaterialComponents_Light 0x7f1501fa +int style Theme_MaterialComponents_Light_BarSize 0x7f1501fb +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f1501fc +int style Theme_MaterialComponents_Light_Bridge 0x7f1501fd +int style Theme_MaterialComponents_Light_DarkActionBar 0x7f1501fe +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f1501ff +int style Theme_MaterialComponents_Light_Dialog 0x7f150200 +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150201 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f150202 +int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f150203 +int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150204 +int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150205 +int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f150206 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150207 +int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f150208 +int style Theme_MaterialComponents_Light_LargeTouch 0x7f150209 +int style Theme_MaterialComponents_Light_NoActionBar 0x7f15020a +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f15020b +int style Theme_MaterialComponents_NoActionBar 0x7f15020c +int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f15020d +int style Widget_AppCompat_ActionBar 0x7f15020e +int style Widget_AppCompat_ActionBar_Solid 0x7f15020f +int style Widget_AppCompat_ActionBar_TabBar 0x7f150210 +int style Widget_AppCompat_ActionBar_TabText 0x7f150211 +int style Widget_AppCompat_ActionBar_TabView 0x7f150212 +int style Widget_AppCompat_ActionButton 0x7f150213 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f150214 +int style Widget_AppCompat_ActionButton_Overflow 0x7f150215 +int style Widget_AppCompat_ActionMode 0x7f150216 +int style Widget_AppCompat_ActivityChooserView 0x7f150217 +int style Widget_AppCompat_AutoCompleteTextView 0x7f150218 +int style Widget_AppCompat_Button 0x7f150219 +int style Widget_AppCompat_ButtonBar 0x7f15021a +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f15021b +int style Widget_AppCompat_Button_Borderless 0x7f15021c +int style Widget_AppCompat_Button_Borderless_Colored 0x7f15021d +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15021e +int style Widget_AppCompat_Button_Colored 0x7f15021f +int style Widget_AppCompat_Button_Small 0x7f150220 +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150221 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150222 +int style Widget_AppCompat_CompoundButton_Switch 0x7f150223 +int style Widget_AppCompat_DrawerArrowToggle 0x7f150224 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f150225 +int style Widget_AppCompat_EditText 0x7f150226 +int style Widget_AppCompat_ImageButton 0x7f150227 +int style Widget_AppCompat_Light_ActionBar 0x7f150228 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f150229 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f15022a +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f15022b +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f15022c +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f15022d +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f15022e +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f15022f +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f150230 +int style Widget_AppCompat_Light_ActionButton 0x7f150231 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150232 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150233 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150234 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f150235 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f150236 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f150237 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f150238 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f150239 +int style Widget_AppCompat_Light_PopupMenu 0x7f15023a +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15023b +int style Widget_AppCompat_Light_SearchView 0x7f15023c +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f15023d +int style Widget_AppCompat_ListMenuView 0x7f15023e +int style Widget_AppCompat_ListPopupWindow 0x7f15023f +int style Widget_AppCompat_ListView 0x7f150240 +int style Widget_AppCompat_ListView_DropDown 0x7f150241 +int style Widget_AppCompat_ListView_Menu 0x7f150242 +int style Widget_AppCompat_PopupMenu 0x7f150243 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f150244 +int style Widget_AppCompat_PopupWindow 0x7f150245 +int style Widget_AppCompat_ProgressBar 0x7f150246 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f150247 +int style Widget_AppCompat_RatingBar 0x7f150248 +int style Widget_AppCompat_RatingBar_Indicator 0x7f150249 +int style Widget_AppCompat_RatingBar_Small 0x7f15024a +int style Widget_AppCompat_SearchView 0x7f15024b +int style Widget_AppCompat_SearchView_ActionBar 0x7f15024c +int style Widget_AppCompat_SeekBar 0x7f15024d +int style Widget_AppCompat_SeekBar_Discrete 0x7f15024e +int style Widget_AppCompat_Spinner 0x7f15024f +int style Widget_AppCompat_Spinner_DropDown 0x7f150250 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f150251 +int style Widget_AppCompat_Spinner_Underlined 0x7f150252 +int style Widget_AppCompat_TextView 0x7f150253 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f150254 +int style Widget_AppCompat_Toolbar 0x7f150255 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f150256 +int style Widget_Compat_NotificationActionContainer 0x7f150257 +int style Widget_Compat_NotificationActionText 0x7f150258 +int style Widget_Design_AppBarLayout 0x7f150259 +int style Widget_Design_BottomNavigationView 0x7f15025a +int style Widget_Design_BottomSheet_Modal 0x7f15025b +int style Widget_Design_CollapsingToolbar 0x7f15025c +int style Widget_Design_FloatingActionButton 0x7f15025d +int style Widget_Design_NavigationView 0x7f15025e +int style Widget_Design_ScrimInsetsFrameLayout 0x7f15025f +int style Widget_Design_Snackbar 0x7f150260 +int style Widget_Design_TabLayout 0x7f150261 +int style Widget_Design_TextInputEditText 0x7f150262 +int style Widget_Design_TextInputLayout 0x7f150263 +int style Widget_MaterialComponents_ActionBar_Primary 0x7f150264 +int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f150265 +int style Widget_MaterialComponents_ActionBar_Solid 0x7f150266 +int style Widget_MaterialComponents_ActionBar_Surface 0x7f150267 +int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f150268 +int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f150269 +int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f15026a +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f15026b +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f15026c +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f15026d +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f15026e +int style Widget_MaterialComponents_Badge 0x7f15026f +int style Widget_MaterialComponents_BottomAppBar 0x7f150270 +int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f150271 +int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f150272 +int style Widget_MaterialComponents_BottomNavigationView 0x7f150273 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f150274 +int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f150275 +int style Widget_MaterialComponents_BottomSheet 0x7f150276 +int style Widget_MaterialComponents_BottomSheet_Modal 0x7f150277 +int style Widget_MaterialComponents_Button 0x7f150278 +int style Widget_MaterialComponents_Button_Icon 0x7f150279 +int style Widget_MaterialComponents_Button_OutlinedButton 0x7f15027a +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f15027b +int style Widget_MaterialComponents_Button_TextButton 0x7f15027c +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f15027d +int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f15027e +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f15027f +int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f150280 +int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f150281 +int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f150282 +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f150283 +int style Widget_MaterialComponents_CardView 0x7f150284 +int style Widget_MaterialComponents_CheckedTextView 0x7f150285 +int style Widget_MaterialComponents_ChipGroup 0x7f150286 +int style Widget_MaterialComponents_Chip_Action 0x7f150287 +int style Widget_MaterialComponents_Chip_Choice 0x7f150288 +int style Widget_MaterialComponents_Chip_Entry 0x7f150289 +int style Widget_MaterialComponents_Chip_Filter 0x7f15028a +int style Widget_MaterialComponents_CircularProgressIndicator 0x7f15028b +int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f15028c +int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f15028d +int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f15028e +int style Widget_MaterialComponents_CollapsingToolbar 0x7f15028f +int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f150290 +int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f150291 +int style Widget_MaterialComponents_CompoundButton_Switch 0x7f150292 +int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f150293 +int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f150294 +int style Widget_MaterialComponents_FloatingActionButton 0x7f150295 +int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f150296 +int style Widget_MaterialComponents_LinearProgressIndicator 0x7f150297 +int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f150298 +int style Widget_MaterialComponents_MaterialCalendar 0x7f150299 +int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f15029a +int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f15029b +int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f15029c +int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f15029d +int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f15029e +int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f15029f +int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f1502a0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f1502a1 +int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f1502a2 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f1502a3 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f1502a4 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f1502a5 +int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f1502a6 +int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f1502a7 +int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f1502a8 +int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f1502a9 +int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f1502aa +int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f1502ab +int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f1502ac +int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f1502ad +int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f1502ae +int style Widget_MaterialComponents_NavigationRailView 0x7f1502af +int style Widget_MaterialComponents_NavigationRailView_Colored 0x7f1502b0 +int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x7f1502b1 +int style Widget_MaterialComponents_NavigationRailView_Compact 0x7f1502b2 +int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x7f1502b3 +int style Widget_MaterialComponents_NavigationView 0x7f1502b4 +int style Widget_MaterialComponents_PopupMenu 0x7f1502b5 +int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1502b6 +int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1502b7 +int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f1502b8 +int style Widget_MaterialComponents_ProgressIndicator 0x7f1502b9 +int style Widget_MaterialComponents_ShapeableImageView 0x7f1502ba +int style Widget_MaterialComponents_Slider 0x7f1502bb +int style Widget_MaterialComponents_Snackbar 0x7f1502bc +int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f1502bd +int style Widget_MaterialComponents_Snackbar_TextView 0x7f1502be +int style Widget_MaterialComponents_TabLayout 0x7f1502bf +int style Widget_MaterialComponents_TabLayout_Colored 0x7f1502c0 +int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f1502c1 +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f1502c2 +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1502c3 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1502c4 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1502c5 +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f1502c6 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f1502c7 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f1502c8 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f1502c9 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f1502ca +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f1502cb +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f1502cc +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f1502cd +int style Widget_MaterialComponents_TextView 0x7f1502ce +int style Widget_MaterialComponents_TimePicker 0x7f1502cf +int style Widget_MaterialComponents_TimePicker_Button 0x7f1502d0 +int style Widget_MaterialComponents_TimePicker_Clock 0x7f1502d1 +int style Widget_MaterialComponents_TimePicker_Display 0x7f1502d2 +int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f1502d3 +int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f1502d4 +int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f1502d5 +int style Widget_MaterialComponents_Toolbar 0x7f1502d6 +int style Widget_MaterialComponents_Toolbar_Primary 0x7f1502d7 +int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f1502d8 +int style Widget_MaterialComponents_Toolbar_Surface 0x7f1502d9 +int style Widget_MaterialComponents_Tooltip 0x7f1502da +int style Widget_Support_CoordinatorLayout 0x7f1502db +int style bad_case_dialog 0x7f1502dc +int style rv_vertical_style 0x7f1502dd +int style video_popup_toast_anim 0x7f1502de +int style video_style_dialog_progress 0x7f1502df +int style video_vertical_progressBar 0x7f1502e0 +int[] styleable ActionBar { 0x7f04004a, 0x7f040052, 0x7f040053, 0x7f0400fd, 0x7f0400fe, 0x7f0400ff, 0x7f040100, 0x7f040101, 0x7f040102, 0x7f040129, 0x7f04013c, 0x7f04013d, 0x7f04015e, 0x7f0401bb, 0x7f0401c2, 0x7f0401c9, 0x7f0401ca, 0x7f0401cd, 0x7f0401de, 0x7f0401f0, 0x7f04026f, 0x7f0402d5, 0x7f04030d, 0x7f040318, 0x7f040319, 0x7f040392, 0x7f040396, 0x7f0403ff, 0x7f04040b } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f04004a, 0x7f040052, 0x7f0400d7, 0x7f0401bb, 0x7f040396, 0x7f04040b } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f040172, 0x7f0401e4 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x7f040088, 0x7f040089, 0x7f040264, 0x7f040265, 0x7f0402d1, 0x7f040368, 0x7f04036b } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppBarLayout { 0x10100d4, 0x1010540, 0x101048f, 0x7f04015e, 0x7f040173, 0x7f04025a, 0x7f04025b, 0x7f04038c } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_keyboardNavigationCluster 1 +int styleable AppBarLayout_android_touchscreenBlocksFocus 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollTargetViewId 6 +int styleable AppBarLayout_statusBarForeground 7 +int[] styleable AppBarLayoutStates { 0x7f040386, 0x7f040387, 0x7f040389, 0x7f04038a } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f040256, 0x7f040257 } +int styleable AppBarLayout_Layout_layout_scrollFlags 0 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 +int[] styleable AppCompatImageView { 0x1010119, 0x7f04037d, 0x7f0403fd, 0x7f0403fe } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x7f0403f9, 0x7f0403fa, 0x7f0403fb } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x7f040044, 0x7f040045, 0x7f040046, 0x7f040047, 0x7f040048, 0x7f04014e, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f040153, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f04018f, 0x7f0401a7, 0x7f0401b0, 0x7f040207, 0x7f04025d, 0x7f0403bf, 0x7f0403e1 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000e, 0x7f04000f, 0x7f040010, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040020, 0x7f040021, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040028, 0x7f04002e, 0x7f04002f, 0x7f040030, 0x7f040031, 0x10100ae, 0x1010057, 0x7f040043, 0x7f04006d, 0x7f040081, 0x7f040082, 0x7f040083, 0x7f040084, 0x7f040085, 0x7f04008a, 0x7f04008b, 0x7f0400a1, 0x7f0400aa, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5, 0x7f0400ec, 0x7f0400ed, 0x7f0400f3, 0x7f04010c, 0x7f040138, 0x7f040139, 0x7f04013a, 0x7f040141, 0x7f040143, 0x7f040158, 0x7f040159, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f0401c9, 0x7f0401d8, 0x7f040260, 0x7f040261, 0x7f040262, 0x7f040263, 0x7f040266, 0x7f040267, 0x7f040268, 0x7f040269, 0x7f04026a, 0x7f04026b, 0x7f04026c, 0x7f04026d, 0x7f04026e, 0x7f0402ee, 0x7f0402ef, 0x7f0402f0, 0x7f04030c, 0x7f04030e, 0x7f04031f, 0x7f040321, 0x7f040322, 0x7f040323, 0x7f040351, 0x7f040352, 0x7f040353, 0x7f040354, 0x7f040375, 0x7f040376, 0x7f04039e, 0x7f0403ca, 0x7f0403cc, 0x7f0403cd, 0x7f0403ce, 0x7f0403d0, 0x7f0403d1, 0x7f0403d2, 0x7f0403d3, 0x7f0403db, 0x7f0403dc, 0x7f04040d, 0x7f04040e, 0x7f04040f, 0x7f040410, 0x7f040438, 0x7f04044d, 0x7f04044e, 0x7f04044f, 0x7f040450, 0x7f040451, 0x7f040452, 0x7f040453, 0x7f040454, 0x7f040455, 0x7f040456 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseContentDescription 17 +int styleable AppCompatTheme_actionModeCloseDrawable 18 +int styleable AppCompatTheme_actionModeCopyDrawable 19 +int styleable AppCompatTheme_actionModeCutDrawable 20 +int styleable AppCompatTheme_actionModeFindDrawable 21 +int styleable AppCompatTheme_actionModePasteDrawable 22 +int styleable AppCompatTheme_actionModePopupWindowStyle 23 +int styleable AppCompatTheme_actionModeSelectAllDrawable 24 +int styleable AppCompatTheme_actionModeShareDrawable 25 +int styleable AppCompatTheme_actionModeSplitBackground 26 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeTheme 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_android_windowAnimationStyle 37 +int styleable AppCompatTheme_android_windowIsFloating 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 66 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable AspectRatioFrameLayout { 0x7f04032d } +int styleable AspectRatioFrameLayout_resize_mode 0 +int[] styleable AutoScannerView { 0x7f04007e, 0x7f04007f, 0x7f040271, 0x7f040347, 0x7f040366, 0x7f040413, 0x7f040414, 0x7f040428, 0x7f040429, 0x7f04042a } +int styleable AutoScannerView_btmText 0 +int styleable AutoScannerView_btmTextSize 1 +int styleable AutoScannerView_maskColor 2 +int styleable AutoScannerView_scanline 3 +int styleable AutoScannerView_showRectLine 4 +int styleable AutoScannerView_topText 5 +int styleable AutoScannerView_topTextSize 6 +int styleable AutoScannerView_triAngleColor 7 +int styleable AutoScannerView_triAngleLength 8 +int styleable AutoScannerView_triAngleWidth 9 +int[] styleable Badge { 0x7f04004b, 0x7f040056, 0x7f040058, 0x7f0401cb, 0x7f040291, 0x7f0402da, 0x7f040436 } +int styleable Badge_backgroundColor 0 +int styleable Badge_badgeGravity 1 +int styleable Badge_badgeTextColor 2 +int styleable Badge_horizontalOffset 3 +int styleable Badge_maxCharacterCount 4 +int styleable Badge_number 5 +int styleable Badge_verticalOffset 6 +int[] styleable BaseProgressIndicator { 0x1010139, 0x7f0401c0, 0x7f0401df, 0x7f04029d, 0x7f04035d, 0x7f04035f, 0x7f04041a, 0x7f04041d, 0x7f04041f } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_minHideDelay 3 +int styleable BaseProgressIndicator_showAnimationBehavior 4 +int styleable BaseProgressIndicator_showDelay 5 +int styleable BaseProgressIndicator_trackColor 6 +int styleable BaseProgressIndicator_trackCornerRadius 7 +int styleable BaseProgressIndicator_trackThickness 8 +int[] styleable BottomAppBar { 0x7f040054, 0x7f04015e, 0x7f04017f, 0x7f040180, 0x7f040181, 0x7f040182, 0x7f040183, 0x7f0401c3, 0x7f0402e7, 0x7f0402e9, 0x7f0402ea } +int styleable BottomAppBar_backgroundTint 0 +int styleable BottomAppBar_elevation 1 +int styleable BottomAppBar_fabAlignmentMode 2 +int styleable BottomAppBar_fabAnimationMode 3 +int styleable BottomAppBar_fabCradleMargin 4 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 5 +int styleable BottomAppBar_fabCradleVerticalOffset 6 +int styleable BottomAppBar_hideOnScroll 7 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 8 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 9 +int styleable BottomAppBar_paddingRightSystemWindowInsets 10 +int[] styleable BottomNavigationView { 0x7f0401eb } +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 0 +int[] styleable BottomSheetBehavior_Layout { 0x1010440, 0x101011f, 0x7f040054, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040066, 0x7f040067, 0x7f040068, 0x7f0401b6, 0x7f0402e7, 0x7f0402e9, 0x7f0402ea, 0x7f0402ed, 0x7f040358, 0x7f04035b } +int styleable BottomSheetBehavior_Layout_android_elevation 0 +int styleable BottomSheetBehavior_Layout_android_maxWidth 1 +int styleable BottomSheetBehavior_Layout_backgroundTint 2 +int styleable BottomSheetBehavior_Layout_behavior_draggable 3 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 4 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 5 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 6 +int styleable BottomSheetBehavior_Layout_behavior_hideable 7 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 8 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 9 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 10 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 11 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 12 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 13 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_shapeAppearance 16 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 17 +int[] styleable ButtonBarLayout { 0x7f040034 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CardView { 0x1010140, 0x101013f, 0x7f04008e, 0x7f04008f, 0x7f040090, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040103, 0x7f040104, 0x7f040106, 0x7f040107, 0x7f040109 } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Carousel { 0x7f040096, 0x7f040097, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f04009c, 0x7f04009d, 0x7f04009e, 0x7f04009f } +int styleable Carousel_carousel_backwardTransition 0 +int styleable Carousel_carousel_emptyViewsBehavior 1 +int styleable Carousel_carousel_firstView 2 +int styleable Carousel_carousel_forwardTransition 3 +int styleable Carousel_carousel_infinite 4 +int styleable Carousel_carousel_nextState 5 +int styleable Carousel_carousel_previousState 6 +int styleable Carousel_carousel_touchUpMode 7 +int styleable Carousel_carousel_touchUp_dampeningFactor 8 +int styleable Carousel_carousel_touchUp_velocityThreshold 9 +int[] styleable Chip { 0x10101e5, 0x10100ab, 0x101011f, 0x101014f, 0x1010034, 0x1010098, 0x1010095, 0x7f0400a4, 0x7f0400a5, 0x7f0400a8, 0x7f0400a9, 0x7f0400ab, 0x7f0400ac, 0x7f0400ad, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f0400ba, 0x7f0400bb, 0x7f0400bc, 0x7f0400be, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f04016a, 0x7f0401c1, 0x7f0401ce, 0x7f0401d2, 0x7f040332, 0x7f040358, 0x7f04035b, 0x7f040364, 0x7f0403dd, 0x7f0403e6 } +int styleable Chip_android_checkable 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_textAppearance 4 +int styleable Chip_android_textColor 5 +int styleable Chip_android_textSize 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable ChipGroup { 0x7f0400a3, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f040355, 0x7f04036c, 0x7f04036d } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int[] styleable CircularProgressIndicator { 0x7f0401e0, 0x7f0401e2, 0x7f0401e3 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x7f0400cc, 0x7f0400cf } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0400cd, 0x7f040289, 0x7f040356 } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0400db, 0x7f0400dc, 0x7f04010a, 0x7f040175, 0x7f040176, 0x7f040177, 0x7f040178, 0x7f040179, 0x7f04017a, 0x7f04017b, 0x7f04017e, 0x7f0401b2, 0x7f040295, 0x7f040348, 0x7f04034a, 0x7f04038d, 0x7f0403ff, 0x7f040401, 0x7f040402, 0x7f04040c } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_contentScrim 2 +int styleable CollapsingToolbarLayout_expandedTitleGravity 3 +int styleable CollapsingToolbarLayout_expandedTitleMargin 4 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 10 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 11 +int styleable CollapsingToolbarLayout_maxLines 12 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 13 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 14 +int styleable CollapsingToolbarLayout_statusBarScrim 15 +int styleable CollapsingToolbarLayout_title 16 +int styleable CollapsingToolbarLayout_titleCollapseMode 17 +int styleable CollapsingToolbarLayout_titleEnabled 18 +int styleable CollapsingToolbarLayout_toolbarId 19 +int[] styleable CollapsingToolbarLayout_Layout { 0x7f040210, 0x7f040211 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x7f040035, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x7f040086, 0x7f04008c, 0x7f04008d } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040038, 0x7f040039, 0x7f04003a, 0x7f04005b, 0x7f04005c, 0x7f04005d, 0x7f0400a0, 0x7f0400f8, 0x7f0400f9, 0x7f04014d, 0x7f040193, 0x7f040194, 0x7f040195, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a1, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040241, 0x7f040242, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b, 0x7f04024c, 0x7f04024f, 0x7f040259, 0x7f0402cb, 0x7f0402cc, 0x7f0402f6, 0x7f0402fd, 0x7f04030a, 0x7f04031a, 0x7f04031b, 0x7f04031c, 0x7f040422, 0x7f040424, 0x7f040426, 0x7f04043d } +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animateCircleAngleTo 27 +int styleable Constraint_animateRelativeTo 28 +int styleable Constraint_animate_relativeTo 29 +int styleable Constraint_barrierAllowsGoneWidgets 30 +int styleable Constraint_barrierDirection 31 +int styleable Constraint_barrierMargin 32 +int styleable Constraint_chainUseRtl 33 +int styleable Constraint_constraint_referenced_ids 34 +int styleable Constraint_constraint_referenced_tags 35 +int styleable Constraint_drawPath 36 +int styleable Constraint_flow_firstHorizontalBias 37 +int styleable Constraint_flow_firstHorizontalStyle 38 +int styleable Constraint_flow_firstVerticalBias 39 +int styleable Constraint_flow_firstVerticalStyle 40 +int styleable Constraint_flow_horizontalAlign 41 +int styleable Constraint_flow_horizontalBias 42 +int styleable Constraint_flow_horizontalGap 43 +int styleable Constraint_flow_horizontalStyle 44 +int styleable Constraint_flow_lastHorizontalBias 45 +int styleable Constraint_flow_lastHorizontalStyle 46 +int styleable Constraint_flow_lastVerticalBias 47 +int styleable Constraint_flow_lastVerticalStyle 48 +int styleable Constraint_flow_maxElementsWrap 49 +int styleable Constraint_flow_verticalAlign 50 +int styleable Constraint_flow_verticalBias 51 +int styleable Constraint_flow_verticalGap 52 +int styleable Constraint_flow_verticalStyle 53 +int styleable Constraint_flow_wrapMode 54 +int styleable Constraint_layout_constrainedHeight 55 +int styleable Constraint_layout_constrainedWidth 56 +int styleable Constraint_layout_constraintBaseline_creator 57 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 58 +int styleable Constraint_layout_constraintBaseline_toBottomOf 59 +int styleable Constraint_layout_constraintBaseline_toTopOf 60 +int styleable Constraint_layout_constraintBottom_creator 61 +int styleable Constraint_layout_constraintBottom_toBottomOf 62 +int styleable Constraint_layout_constraintBottom_toTopOf 63 +int styleable Constraint_layout_constraintCircle 64 +int styleable Constraint_layout_constraintCircleAngle 65 +int styleable Constraint_layout_constraintCircleRadius 66 +int styleable Constraint_layout_constraintDimensionRatio 67 +int styleable Constraint_layout_constraintEnd_toEndOf 68 +int styleable Constraint_layout_constraintEnd_toStartOf 69 +int styleable Constraint_layout_constraintGuide_begin 70 +int styleable Constraint_layout_constraintGuide_end 71 +int styleable Constraint_layout_constraintGuide_percent 72 +int styleable Constraint_layout_constraintHeight 73 +int styleable Constraint_layout_constraintHeight_default 74 +int styleable Constraint_layout_constraintHeight_max 75 +int styleable Constraint_layout_constraintHeight_min 76 +int styleable Constraint_layout_constraintHeight_percent 77 +int styleable Constraint_layout_constraintHorizontal_bias 78 +int styleable Constraint_layout_constraintHorizontal_chainStyle 79 +int styleable Constraint_layout_constraintHorizontal_weight 80 +int styleable Constraint_layout_constraintLeft_creator 81 +int styleable Constraint_layout_constraintLeft_toLeftOf 82 +int styleable Constraint_layout_constraintLeft_toRightOf 83 +int styleable Constraint_layout_constraintRight_creator 84 +int styleable Constraint_layout_constraintRight_toLeftOf 85 +int styleable Constraint_layout_constraintRight_toRightOf 86 +int styleable Constraint_layout_constraintStart_toEndOf 87 +int styleable Constraint_layout_constraintStart_toStartOf 88 +int styleable Constraint_layout_constraintTag 89 +int styleable Constraint_layout_constraintTop_creator 90 +int styleable Constraint_layout_constraintTop_toBottomOf 91 +int styleable Constraint_layout_constraintTop_toTopOf 92 +int styleable Constraint_layout_constraintVertical_bias 93 +int styleable Constraint_layout_constraintVertical_chainStyle 94 +int styleable Constraint_layout_constraintVertical_weight 95 +int styleable Constraint_layout_constraintWidth 96 +int styleable Constraint_layout_constraintWidth_default 97 +int styleable Constraint_layout_constraintWidth_max 98 +int styleable Constraint_layout_constraintWidth_min 99 +int styleable Constraint_layout_constraintWidth_percent 100 +int styleable Constraint_layout_editor_absoluteX 101 +int styleable Constraint_layout_editor_absoluteY 102 +int styleable Constraint_layout_goneMarginBaseline 103 +int styleable Constraint_layout_goneMarginBottom 104 +int styleable Constraint_layout_goneMarginEnd 105 +int styleable Constraint_layout_goneMarginLeft 106 +int styleable Constraint_layout_goneMarginRight 107 +int styleable Constraint_layout_goneMarginStart 108 +int styleable Constraint_layout_goneMarginTop 109 +int styleable Constraint_layout_marginBaseline 110 +int styleable Constraint_layout_wrapBehaviorInParent 111 +int styleable Constraint_motionProgress 112 +int styleable Constraint_motionStagger 113 +int styleable Constraint_pathMotionArc 114 +int styleable Constraint_pivotAnchor 115 +int styleable Constraint_polarRelativeTo 116 +int styleable Constraint_quantizeMotionInterpolator 117 +int styleable Constraint_quantizeMotionPhase 118 +int styleable Constraint_quantizeMotionSteps 119 +int styleable Constraint_transformPivotTarget 120 +int styleable Constraint_transitionEasing 121 +int styleable Constraint_transitionPathRotate 122 +int styleable Constraint_visibilityMode 123 +int[] styleable ConstraintLayout_Layout { 0x1010440, 0x10100f5, 0x10100f6, 0x10100fa, 0x10103b6, 0x101053b, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x101053c, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10100d5, 0x10100d9, 0x10103b4, 0x10100d6, 0x10100d8, 0x10103b3, 0x10100d7, 0x10100dc, 0x7f04005b, 0x7f04005c, 0x7f04005d, 0x7f0400a0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400f5, 0x7f0400f8, 0x7f0400f9, 0x7f040193, 0x7f040194, 0x7f040195, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a1, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f040209, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040241, 0x7f040242, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b, 0x7f04024c, 0x7f04024f, 0x7f040254, 0x7f040259 } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_layout_height 1 +int styleable ConstraintLayout_Layout_android_layout_margin 2 +int styleable ConstraintLayout_Layout_android_layout_marginBottom 3 +int styleable ConstraintLayout_Layout_android_layout_marginEnd 4 +int styleable ConstraintLayout_Layout_android_layout_marginHorizontal 5 +int styleable ConstraintLayout_Layout_android_layout_marginLeft 6 +int styleable ConstraintLayout_Layout_android_layout_marginRight 7 +int styleable ConstraintLayout_Layout_android_layout_marginStart 8 +int styleable ConstraintLayout_Layout_android_layout_marginTop 9 +int styleable ConstraintLayout_Layout_android_layout_marginVertical 10 +int styleable ConstraintLayout_Layout_android_layout_width 11 +int styleable ConstraintLayout_Layout_android_maxHeight 12 +int styleable ConstraintLayout_Layout_android_maxWidth 13 +int styleable ConstraintLayout_Layout_android_minHeight 14 +int styleable ConstraintLayout_Layout_android_minWidth 15 +int styleable ConstraintLayout_Layout_android_orientation 16 +int styleable ConstraintLayout_Layout_android_padding 17 +int styleable ConstraintLayout_Layout_android_paddingBottom 18 +int styleable ConstraintLayout_Layout_android_paddingEnd 19 +int styleable ConstraintLayout_Layout_android_paddingLeft 20 +int styleable ConstraintLayout_Layout_android_paddingRight 21 +int styleable ConstraintLayout_Layout_android_paddingStart 22 +int styleable ConstraintLayout_Layout_android_paddingTop 23 +int styleable ConstraintLayout_Layout_android_visibility 24 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 25 +int styleable ConstraintLayout_Layout_barrierDirection 26 +int styleable ConstraintLayout_Layout_barrierMargin 27 +int styleable ConstraintLayout_Layout_chainUseRtl 28 +int styleable ConstraintLayout_Layout_circularflow_angles 29 +int styleable ConstraintLayout_Layout_circularflow_defaultAngle 30 +int styleable ConstraintLayout_Layout_circularflow_defaultRadius 31 +int styleable ConstraintLayout_Layout_circularflow_radiusInDP 32 +int styleable ConstraintLayout_Layout_circularflow_viewCenter 33 +int styleable ConstraintLayout_Layout_constraintSet 34 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 35 +int styleable ConstraintLayout_Layout_constraint_referenced_tags 36 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 37 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 38 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 39 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 40 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 41 +int styleable ConstraintLayout_Layout_flow_horizontalBias 42 +int styleable ConstraintLayout_Layout_flow_horizontalGap 43 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 44 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 45 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 46 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 47 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 48 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 49 +int styleable ConstraintLayout_Layout_flow_verticalAlign 50 +int styleable ConstraintLayout_Layout_flow_verticalBias 51 +int styleable ConstraintLayout_Layout_flow_verticalGap 52 +int styleable ConstraintLayout_Layout_flow_verticalStyle 53 +int styleable ConstraintLayout_Layout_flow_wrapMode 54 +int styleable ConstraintLayout_Layout_layoutDescription 55 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 56 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 57 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 58 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 59 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf 60 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toTopOf 61 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 62 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 63 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 64 +int styleable ConstraintLayout_Layout_layout_constraintCircle 65 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 66 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 67 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 68 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 69 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 70 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 71 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 72 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 73 +int styleable ConstraintLayout_Layout_layout_constraintHeight 74 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 75 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 76 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 77 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 78 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 79 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 80 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 81 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 82 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 83 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 84 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 85 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 86 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 87 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 88 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 89 +int styleable ConstraintLayout_Layout_layout_constraintTag 90 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 91 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 92 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 93 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 94 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 95 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 96 +int styleable ConstraintLayout_Layout_layout_constraintWidth 97 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 98 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 99 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 100 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 101 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 102 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 103 +int styleable ConstraintLayout_Layout_layout_goneMarginBaseline 104 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 105 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 106 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 107 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 108 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 109 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 110 +int styleable ConstraintLayout_Layout_layout_marginBaseline 111 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 112 +int styleable ConstraintLayout_Layout_layout_wrapBehaviorInParent 113 +int[] styleable ConstraintLayout_ReactiveGuide { 0x7f040324, 0x7f040325, 0x7f040326, 0x7f040327 } +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange 0 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets 1 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet 2 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_valueId 3 +int[] styleable ConstraintLayout_placeholder { 0x7f0400fb, 0x7f040303 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintOverride { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040038, 0x7f040039, 0x7f04005b, 0x7f04005c, 0x7f04005d, 0x7f0400a0, 0x7f0400f8, 0x7f04014d, 0x7f040193, 0x7f040194, 0x7f040195, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a1, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040218, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022f, 0x7f040234, 0x7f040235, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040241, 0x7f040242, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b, 0x7f04024c, 0x7f04024f, 0x7f040259, 0x7f0402cb, 0x7f0402cc, 0x7f0402cd, 0x7f0402f6, 0x7f0402fd, 0x7f04030a, 0x7f04031a, 0x7f04031b, 0x7f04031c, 0x7f040422, 0x7f040424, 0x7f040426, 0x7f04043d } +int styleable ConstraintOverride_android_alpha 0 +int styleable ConstraintOverride_android_elevation 1 +int styleable ConstraintOverride_android_id 2 +int styleable ConstraintOverride_android_layout_height 3 +int styleable ConstraintOverride_android_layout_marginBottom 4 +int styleable ConstraintOverride_android_layout_marginEnd 5 +int styleable ConstraintOverride_android_layout_marginLeft 6 +int styleable ConstraintOverride_android_layout_marginRight 7 +int styleable ConstraintOverride_android_layout_marginStart 8 +int styleable ConstraintOverride_android_layout_marginTop 9 +int styleable ConstraintOverride_android_layout_width 10 +int styleable ConstraintOverride_android_maxHeight 11 +int styleable ConstraintOverride_android_maxWidth 12 +int styleable ConstraintOverride_android_minHeight 13 +int styleable ConstraintOverride_android_minWidth 14 +int styleable ConstraintOverride_android_orientation 15 +int styleable ConstraintOverride_android_rotation 16 +int styleable ConstraintOverride_android_rotationX 17 +int styleable ConstraintOverride_android_rotationY 18 +int styleable ConstraintOverride_android_scaleX 19 +int styleable ConstraintOverride_android_scaleY 20 +int styleable ConstraintOverride_android_transformPivotX 21 +int styleable ConstraintOverride_android_transformPivotY 22 +int styleable ConstraintOverride_android_translationX 23 +int styleable ConstraintOverride_android_translationY 24 +int styleable ConstraintOverride_android_translationZ 25 +int styleable ConstraintOverride_android_visibility 26 +int styleable ConstraintOverride_animateCircleAngleTo 27 +int styleable ConstraintOverride_animateRelativeTo 28 +int styleable ConstraintOverride_barrierAllowsGoneWidgets 29 +int styleable ConstraintOverride_barrierDirection 30 +int styleable ConstraintOverride_barrierMargin 31 +int styleable ConstraintOverride_chainUseRtl 32 +int styleable ConstraintOverride_constraint_referenced_ids 33 +int styleable ConstraintOverride_drawPath 34 +int styleable ConstraintOverride_flow_firstHorizontalBias 35 +int styleable ConstraintOverride_flow_firstHorizontalStyle 36 +int styleable ConstraintOverride_flow_firstVerticalBias 37 +int styleable ConstraintOverride_flow_firstVerticalStyle 38 +int styleable ConstraintOverride_flow_horizontalAlign 39 +int styleable ConstraintOverride_flow_horizontalBias 40 +int styleable ConstraintOverride_flow_horizontalGap 41 +int styleable ConstraintOverride_flow_horizontalStyle 42 +int styleable ConstraintOverride_flow_lastHorizontalBias 43 +int styleable ConstraintOverride_flow_lastHorizontalStyle 44 +int styleable ConstraintOverride_flow_lastVerticalBias 45 +int styleable ConstraintOverride_flow_lastVerticalStyle 46 +int styleable ConstraintOverride_flow_maxElementsWrap 47 +int styleable ConstraintOverride_flow_verticalAlign 48 +int styleable ConstraintOverride_flow_verticalBias 49 +int styleable ConstraintOverride_flow_verticalGap 50 +int styleable ConstraintOverride_flow_verticalStyle 51 +int styleable ConstraintOverride_flow_wrapMode 52 +int styleable ConstraintOverride_layout_constrainedHeight 53 +int styleable ConstraintOverride_layout_constrainedWidth 54 +int styleable ConstraintOverride_layout_constraintBaseline_creator 55 +int styleable ConstraintOverride_layout_constraintBottom_creator 56 +int styleable ConstraintOverride_layout_constraintCircleAngle 57 +int styleable ConstraintOverride_layout_constraintCircleRadius 58 +int styleable ConstraintOverride_layout_constraintDimensionRatio 59 +int styleable ConstraintOverride_layout_constraintGuide_begin 60 +int styleable ConstraintOverride_layout_constraintGuide_end 61 +int styleable ConstraintOverride_layout_constraintGuide_percent 62 +int styleable ConstraintOverride_layout_constraintHeight 63 +int styleable ConstraintOverride_layout_constraintHeight_default 64 +int styleable ConstraintOverride_layout_constraintHeight_max 65 +int styleable ConstraintOverride_layout_constraintHeight_min 66 +int styleable ConstraintOverride_layout_constraintHeight_percent 67 +int styleable ConstraintOverride_layout_constraintHorizontal_bias 68 +int styleable ConstraintOverride_layout_constraintHorizontal_chainStyle 69 +int styleable ConstraintOverride_layout_constraintHorizontal_weight 70 +int styleable ConstraintOverride_layout_constraintLeft_creator 71 +int styleable ConstraintOverride_layout_constraintRight_creator 72 +int styleable ConstraintOverride_layout_constraintTag 73 +int styleable ConstraintOverride_layout_constraintTop_creator 74 +int styleable ConstraintOverride_layout_constraintVertical_bias 75 +int styleable ConstraintOverride_layout_constraintVertical_chainStyle 76 +int styleable ConstraintOverride_layout_constraintVertical_weight 77 +int styleable ConstraintOverride_layout_constraintWidth 78 +int styleable ConstraintOverride_layout_constraintWidth_default 79 +int styleable ConstraintOverride_layout_constraintWidth_max 80 +int styleable ConstraintOverride_layout_constraintWidth_min 81 +int styleable ConstraintOverride_layout_constraintWidth_percent 82 +int styleable ConstraintOverride_layout_editor_absoluteX 83 +int styleable ConstraintOverride_layout_editor_absoluteY 84 +int styleable ConstraintOverride_layout_goneMarginBaseline 85 +int styleable ConstraintOverride_layout_goneMarginBottom 86 +int styleable ConstraintOverride_layout_goneMarginEnd 87 +int styleable ConstraintOverride_layout_goneMarginLeft 88 +int styleable ConstraintOverride_layout_goneMarginRight 89 +int styleable ConstraintOverride_layout_goneMarginStart 90 +int styleable ConstraintOverride_layout_goneMarginTop 91 +int styleable ConstraintOverride_layout_marginBaseline 92 +int styleable ConstraintOverride_layout_wrapBehaviorInParent 93 +int styleable ConstraintOverride_motionProgress 94 +int styleable ConstraintOverride_motionStagger 95 +int styleable ConstraintOverride_motionTarget 96 +int styleable ConstraintOverride_pathMotionArc 97 +int styleable ConstraintOverride_pivotAnchor 98 +int styleable ConstraintOverride_polarRelativeTo 99 +int styleable ConstraintOverride_quantizeMotionInterpolator 100 +int styleable ConstraintOverride_quantizeMotionPhase 101 +int styleable ConstraintOverride_quantizeMotionSteps 102 +int styleable ConstraintOverride_transformPivotTarget 103 +int styleable ConstraintOverride_transitionEasing 104 +int styleable ConstraintOverride_transitionPathRotate 105 +int styleable ConstraintOverride_visibilityMode 106 +int[] styleable ConstraintSet { 0x7f040001, 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10101b5, 0x10101b6, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040038, 0x7f040039, 0x7f04003a, 0x7f04005b, 0x7f04005c, 0x7f04005d, 0x7f0400a0, 0x7f0400f8, 0x7f0400f9, 0x7f040137, 0x7f04014d, 0x7f040193, 0x7f040194, 0x7f040195, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a1, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040241, 0x7f040242, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b, 0x7f04024c, 0x7f04024f, 0x7f040259, 0x7f0402cb, 0x7f0402cc, 0x7f0402f6, 0x7f0402fd, 0x7f04030a, 0x7f04031c, 0x7f040424, 0x7f040426 } +int styleable ConstraintSet_ConstraintRotate 0 +int styleable ConstraintSet_android_alpha 1 +int styleable ConstraintSet_android_elevation 2 +int styleable ConstraintSet_android_id 3 +int styleable ConstraintSet_android_layout_height 4 +int styleable ConstraintSet_android_layout_marginBottom 5 +int styleable ConstraintSet_android_layout_marginEnd 6 +int styleable ConstraintSet_android_layout_marginLeft 7 +int styleable ConstraintSet_android_layout_marginRight 8 +int styleable ConstraintSet_android_layout_marginStart 9 +int styleable ConstraintSet_android_layout_marginTop 10 +int styleable ConstraintSet_android_layout_width 11 +int styleable ConstraintSet_android_maxHeight 12 +int styleable ConstraintSet_android_maxWidth 13 +int styleable ConstraintSet_android_minHeight 14 +int styleable ConstraintSet_android_minWidth 15 +int styleable ConstraintSet_android_orientation 16 +int styleable ConstraintSet_android_pivotX 17 +int styleable ConstraintSet_android_pivotY 18 +int styleable ConstraintSet_android_rotation 19 +int styleable ConstraintSet_android_rotationX 20 +int styleable ConstraintSet_android_rotationY 21 +int styleable ConstraintSet_android_scaleX 22 +int styleable ConstraintSet_android_scaleY 23 +int styleable ConstraintSet_android_transformPivotX 24 +int styleable ConstraintSet_android_transformPivotY 25 +int styleable ConstraintSet_android_translationX 26 +int styleable ConstraintSet_android_translationY 27 +int styleable ConstraintSet_android_translationZ 28 +int styleable ConstraintSet_android_visibility 29 +int styleable ConstraintSet_animateCircleAngleTo 30 +int styleable ConstraintSet_animateRelativeTo 31 +int styleable ConstraintSet_animate_relativeTo 32 +int styleable ConstraintSet_barrierAllowsGoneWidgets 33 +int styleable ConstraintSet_barrierDirection 34 +int styleable ConstraintSet_barrierMargin 35 +int styleable ConstraintSet_chainUseRtl 36 +int styleable ConstraintSet_constraint_referenced_ids 37 +int styleable ConstraintSet_constraint_referenced_tags 38 +int styleable ConstraintSet_deriveConstraintsFrom 39 +int styleable ConstraintSet_drawPath 40 +int styleable ConstraintSet_flow_firstHorizontalBias 41 +int styleable ConstraintSet_flow_firstHorizontalStyle 42 +int styleable ConstraintSet_flow_firstVerticalBias 43 +int styleable ConstraintSet_flow_firstVerticalStyle 44 +int styleable ConstraintSet_flow_horizontalAlign 45 +int styleable ConstraintSet_flow_horizontalBias 46 +int styleable ConstraintSet_flow_horizontalGap 47 +int styleable ConstraintSet_flow_horizontalStyle 48 +int styleable ConstraintSet_flow_lastHorizontalBias 49 +int styleable ConstraintSet_flow_lastHorizontalStyle 50 +int styleable ConstraintSet_flow_lastVerticalBias 51 +int styleable ConstraintSet_flow_lastVerticalStyle 52 +int styleable ConstraintSet_flow_maxElementsWrap 53 +int styleable ConstraintSet_flow_verticalAlign 54 +int styleable ConstraintSet_flow_verticalBias 55 +int styleable ConstraintSet_flow_verticalGap 56 +int styleable ConstraintSet_flow_verticalStyle 57 +int styleable ConstraintSet_flow_wrapMode 58 +int styleable ConstraintSet_layout_constrainedHeight 59 +int styleable ConstraintSet_layout_constrainedWidth 60 +int styleable ConstraintSet_layout_constraintBaseline_creator 61 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 62 +int styleable ConstraintSet_layout_constraintBaseline_toBottomOf 63 +int styleable ConstraintSet_layout_constraintBaseline_toTopOf 64 +int styleable ConstraintSet_layout_constraintBottom_creator 65 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 66 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 67 +int styleable ConstraintSet_layout_constraintCircle 68 +int styleable ConstraintSet_layout_constraintCircleAngle 69 +int styleable ConstraintSet_layout_constraintCircleRadius 70 +int styleable ConstraintSet_layout_constraintDimensionRatio 71 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 72 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 73 +int styleable ConstraintSet_layout_constraintGuide_begin 74 +int styleable ConstraintSet_layout_constraintGuide_end 75 +int styleable ConstraintSet_layout_constraintGuide_percent 76 +int styleable ConstraintSet_layout_constraintHeight_default 77 +int styleable ConstraintSet_layout_constraintHeight_max 78 +int styleable ConstraintSet_layout_constraintHeight_min 79 +int styleable ConstraintSet_layout_constraintHeight_percent 80 +int styleable ConstraintSet_layout_constraintHorizontal_bias 81 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 82 +int styleable ConstraintSet_layout_constraintHorizontal_weight 83 +int styleable ConstraintSet_layout_constraintLeft_creator 84 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 85 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 86 +int styleable ConstraintSet_layout_constraintRight_creator 87 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 88 +int styleable ConstraintSet_layout_constraintRight_toRightOf 89 +int styleable ConstraintSet_layout_constraintStart_toEndOf 90 +int styleable ConstraintSet_layout_constraintStart_toStartOf 91 +int styleable ConstraintSet_layout_constraintTag 92 +int styleable ConstraintSet_layout_constraintTop_creator 93 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 94 +int styleable ConstraintSet_layout_constraintTop_toTopOf 95 +int styleable ConstraintSet_layout_constraintVertical_bias 96 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 97 +int styleable ConstraintSet_layout_constraintVertical_weight 98 +int styleable ConstraintSet_layout_constraintWidth_default 99 +int styleable ConstraintSet_layout_constraintWidth_max 100 +int styleable ConstraintSet_layout_constraintWidth_min 101 +int styleable ConstraintSet_layout_constraintWidth_percent 102 +int styleable ConstraintSet_layout_editor_absoluteX 103 +int styleable ConstraintSet_layout_editor_absoluteY 104 +int styleable ConstraintSet_layout_goneMarginBaseline 105 +int styleable ConstraintSet_layout_goneMarginBottom 106 +int styleable ConstraintSet_layout_goneMarginEnd 107 +int styleable ConstraintSet_layout_goneMarginLeft 108 +int styleable ConstraintSet_layout_goneMarginRight 109 +int styleable ConstraintSet_layout_goneMarginStart 110 +int styleable ConstraintSet_layout_goneMarginTop 111 +int styleable ConstraintSet_layout_marginBaseline 112 +int styleable ConstraintSet_layout_wrapBehaviorInParent 113 +int styleable ConstraintSet_motionProgress 114 +int styleable ConstraintSet_motionStagger 115 +int styleable ConstraintSet_pathMotionArc 116 +int styleable ConstraintSet_pivotAnchor 117 +int styleable ConstraintSet_polarRelativeTo 118 +int styleable ConstraintSet_quantizeMotionSteps 119 +int styleable ConstraintSet_transitionEasing 120 +int styleable ConstraintSet_transitionPathRotate 121 +int[] styleable CoordinatorLayout { 0x7f040203, 0x7f04038b } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f04020d, 0x7f04020e, 0x7f04020f, 0x7f040240, 0x7f04024d, 0x7f04024e } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable CustomAttribute { 0x7f040041, 0x7f040123, 0x7f040124, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f04012a, 0x7f04012b, 0x7f04012c, 0x7f04029b } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customReference 8 +int styleable CustomAttribute_customStringValue 9 +int styleable CustomAttribute_methodName 10 +int[] styleable CustomCircleImageView { 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9 } +int styleable CustomCircleImageView_civ_border_color 0 +int styleable CustomCircleImageView_civ_border_overlay 1 +int styleable CustomCircleImageView_civ_border_width 2 +int styleable CustomCircleImageView_civ_fill_color 3 +int[] styleable DefaultTimeBar { 0x7f04002c, 0x7f04002d, 0x7f04005a, 0x7f040080, 0x7f040308, 0x7f04034b, 0x7f04034c, 0x7f04034d, 0x7f04034e, 0x7f040418, 0x7f04042f } +int styleable DefaultTimeBar_ad_marker_color 0 +int styleable DefaultTimeBar_ad_marker_width 1 +int styleable DefaultTimeBar_bar_height 2 +int styleable DefaultTimeBar_buffered_color 3 +int styleable DefaultTimeBar_played_color 4 +int styleable DefaultTimeBar_scrubber_color 5 +int styleable DefaultTimeBar_scrubber_disabled_size 6 +int styleable DefaultTimeBar_scrubber_dragged_size 7 +int styleable DefaultTimeBar_scrubber_enabled_size 8 +int styleable DefaultTimeBar_touch_target_height 9 +int styleable DefaultTimeBar_unplayed_color 10 +int[] styleable DrawerArrowToggle { 0x7f04003f, 0x7f040040, 0x7f040059, 0x7f0400de, 0x7f040152, 0x7f0401b5, 0x7f040374, 0x7f0403ed } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable ExtendedFloatingActionButton { 0x7f0400da, 0x7f04015e, 0x7f04017c, 0x7f0401c1, 0x7f040364, 0x7f04036a } +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_hideMotionSpec 3 +int styleable ExtendedFloatingActionButton_showMotionSpec 4 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 5 +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f04005e, 0x7f04005f } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int[] styleable FlexboxLayout { 0x7f040032, 0x7f040033, 0x7f04013e, 0x7f04013f, 0x7f040140, 0x7f040190, 0x7f040191, 0x7f040200, 0x7f040294, 0x7f040360, 0x7f040361, 0x7f040362 } +int styleable FlexboxLayout_alignContent 0 +int styleable FlexboxLayout_alignItems 1 +int styleable FlexboxLayout_dividerDrawable 2 +int styleable FlexboxLayout_dividerDrawableHorizontal 3 +int styleable FlexboxLayout_dividerDrawableVertical 4 +int styleable FlexboxLayout_flexDirection 5 +int styleable FlexboxLayout_flexWrap 6 +int styleable FlexboxLayout_justifyContent 7 +int styleable FlexboxLayout_maxLine 8 +int styleable FlexboxLayout_showDivider 9 +int styleable FlexboxLayout_showDividerHorizontal 10 +int styleable FlexboxLayout_showDividerVertical 11 +int[] styleable FlexboxLayout_Layout { 0x7f04020c, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040250, 0x7f040251, 0x7f040252, 0x7f040253, 0x7f040255, 0x7f040258 } +int styleable FlexboxLayout_Layout_layout_alignSelf 0 +int styleable FlexboxLayout_Layout_layout_flexBasisPercent 1 +int styleable FlexboxLayout_Layout_layout_flexGrow 2 +int styleable FlexboxLayout_Layout_layout_flexShrink 3 +int styleable FlexboxLayout_Layout_layout_maxHeight 4 +int styleable FlexboxLayout_Layout_layout_maxWidth 5 +int styleable FlexboxLayout_Layout_layout_minHeight 6 +int styleable FlexboxLayout_Layout_layout_minWidth 7 +int styleable FlexboxLayout_Layout_layout_order 8 +int styleable FlexboxLayout_Layout_layout_wrapBefore 9 +int[] styleable FloatingActionButton { 0x101000e, 0x7f040054, 0x7f040055, 0x7f04006c, 0x7f04015e, 0x7f04016a, 0x7f040184, 0x7f040185, 0x7f0401c1, 0x7f0401cc, 0x7f040293, 0x7f040314, 0x7f040332, 0x7f040358, 0x7f04035b, 0x7f040364, 0x7f040431 } +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f04005e } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x7f0401f9, 0x7f04025e } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f0401a8, 0x7f0401a9, 0x7f0401aa, 0x7f0401ab, 0x7f0401ac, 0x7f0401ad, 0x7f0401ae } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f0401a6, 0x7f0401af, 0x7f0401b0, 0x7f0401b1, 0x7f04042e } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable ForegroundLinearLayout { 0x1010109, 0x1010200, 0x7f0401b3 } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable GenericDraweeHierarchy { 0x7f04002a, 0x7f04004c, 0x7f040186, 0x7f040187, 0x7f040188, 0x7f0402e5, 0x7f0402fe, 0x7f0402ff, 0x7f040313, 0x7f040315, 0x7f040316, 0x7f040317, 0x7f04032e, 0x7f04032f, 0x7f040335, 0x7f040336, 0x7f040337, 0x7f040338, 0x7f040339, 0x7f04033c, 0x7f04033d, 0x7f04033e, 0x7f04033f, 0x7f040340, 0x7f040341, 0x7f040342, 0x7f040343, 0x7f040344, 0x7f040437 } +int styleable GenericDraweeHierarchy_actualImageScaleType 0 +int styleable GenericDraweeHierarchy_backgroundImage 1 +int styleable GenericDraweeHierarchy_fadeDuration 2 +int styleable GenericDraweeHierarchy_failureImage 3 +int styleable GenericDraweeHierarchy_failureImageScaleType 4 +int styleable GenericDraweeHierarchy_overlayImage 5 +int styleable GenericDraweeHierarchy_placeholderImage 6 +int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 +int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 +int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 +int styleable GenericDraweeHierarchy_progressBarImage 10 +int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 +int styleable GenericDraweeHierarchy_retryImage 12 +int styleable GenericDraweeHierarchy_retryImageScaleType 13 +int styleable GenericDraweeHierarchy_roundAsCircle 14 +int styleable GenericDraweeHierarchy_roundBottomEnd 15 +int styleable GenericDraweeHierarchy_roundBottomLeft 16 +int styleable GenericDraweeHierarchy_roundBottomRight 17 +int styleable GenericDraweeHierarchy_roundBottomStart 18 +int styleable GenericDraweeHierarchy_roundTopEnd 19 +int styleable GenericDraweeHierarchy_roundTopLeft 20 +int styleable GenericDraweeHierarchy_roundTopRight 21 +int styleable GenericDraweeHierarchy_roundTopStart 22 +int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 +int styleable GenericDraweeHierarchy_roundedCornerRadius 24 +int styleable GenericDraweeHierarchy_roundingBorderColor 25 +int styleable GenericDraweeHierarchy_roundingBorderPadding 26 +int styleable GenericDraweeHierarchy_roundingBorderWidth 27 +int styleable GenericDraweeHierarchy_viewAspectRatio 28 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable ImageFilterView { 0x7f040037, 0x7f040069, 0x7f04007d, 0x7f04010b, 0x7f040120, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0402e4, 0x7f040334, 0x7f04033b, 0x7f040345, 0x7f040446 } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_blendSrc 1 +int styleable ImageFilterView_brightness 2 +int styleable ImageFilterView_contrast 3 +int styleable ImageFilterView_crossfade 4 +int styleable ImageFilterView_imagePanX 5 +int styleable ImageFilterView_imagePanY 6 +int styleable ImageFilterView_imageRotate 7 +int styleable ImageFilterView_imageZoom 8 +int styleable ImageFilterView_overlay 9 +int styleable ImageFilterView_round 10 +int styleable ImageFilterView_roundPercent 11 +int styleable ImageFilterView_saturation 12 +int styleable ImageFilterView_warmth 13 +int[] styleable IndicatorView { 0x7f04043f, 0x7f040440, 0x7f040441, 0x7f040442, 0x7f040443, 0x7f040444, 0x7f040445 } +int styleable IndicatorView_vpi_orientation 0 +int styleable IndicatorView_vpi_rtl 1 +int styleable IndicatorView_vpi_slide_mode 2 +int styleable IndicatorView_vpi_slider_checked_color 3 +int styleable IndicatorView_vpi_slider_normal_color 4 +int styleable IndicatorView_vpi_slider_radius 5 +int styleable IndicatorView_vpi_style 6 +int[] styleable Insets { 0x7f0402e7, 0x7f0402e9, 0x7f0402ea, 0x7f0402ed } +int styleable Insets_paddingBottomSystemWindowInsets 0 +int styleable Insets_paddingLeftSystemWindowInsets 1 +int styleable Insets_paddingRightSystemWindowInsets 2 +int styleable Insets_paddingTopSystemWindowInsets 3 +int[] styleable KeyAttribute { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x7f040122, 0x7f0401b4, 0x7f0402cb, 0x7f0402cd, 0x7f040422, 0x7f040424, 0x7f040426 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transformPivotTarget 16 +int styleable KeyAttribute_transitionEasing 17 +int styleable KeyAttribute_transitionPathRotate 18 +int[] styleable KeyCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x7f040122, 0x7f0401b4, 0x7f0402cb, 0x7f0402cd, 0x7f040424, 0x7f040426, 0x7f040448, 0x7f040449, 0x7f04044a, 0x7f04044b, 0x7f04044c } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_wavePhase 18 +int styleable KeyCycle_waveShape 19 +int styleable KeyCycle_waveVariesBy 20 +int[] styleable KeyFrame { } +int[] styleable KeyFramesAcceleration { } +int[] styleable KeyFramesVelocity { } +int[] styleable KeyPosition { 0x7f040122, 0x7f04014d, 0x7f0401b4, 0x7f040201, 0x7f0402cd, 0x7f0402f6, 0x7f0402f8, 0x7f0402f9, 0x7f0402fa, 0x7f0402fb, 0x7f04036e, 0x7f040424 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x7f040122, 0x7f0401b4, 0x7f0402cb, 0x7f0402cd, 0x7f040424, 0x7f040426, 0x7f040447, 0x7f040448, 0x7f040449, 0x7f04044a, 0x7f04044b } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_wavePhase 19 +int styleable KeyTimeCycle_waveShape 20 +int[] styleable KeyTrigger { 0x7f0401b4, 0x7f0402cd, 0x7f0402ce, 0x7f0402cf, 0x7f0402dc, 0x7f0402de, 0x7f0402df, 0x7f04042b, 0x7f04042c, 0x7f04042d, 0x7f04043a, 0x7f04043b, 0x7f04043c } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int styleable KeyTrigger_viewTransitionOnCross 10 +int styleable KeyTrigger_viewTransitionOnNegativeCross 11 +int styleable KeyTrigger_viewTransitionOnPositiveCross 12 +int[] styleable Layout { 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x10100c4, 0x7f04005b, 0x7f04005c, 0x7f04005d, 0x7f0400a0, 0x7f0400f8, 0x7f0400f9, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040241, 0x7f040242, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b, 0x7f04024c, 0x7f04024f, 0x7f040259, 0x7f040292, 0x7f040297, 0x7f04029c, 0x7f0402a0 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_constraint_referenced_tags 14 +int styleable Layout_layout_constrainedHeight 15 +int styleable Layout_layout_constrainedWidth 16 +int styleable Layout_layout_constraintBaseline_creator 17 +int styleable Layout_layout_constraintBaseline_toBaselineOf 18 +int styleable Layout_layout_constraintBaseline_toBottomOf 19 +int styleable Layout_layout_constraintBaseline_toTopOf 20 +int styleable Layout_layout_constraintBottom_creator 21 +int styleable Layout_layout_constraintBottom_toBottomOf 22 +int styleable Layout_layout_constraintBottom_toTopOf 23 +int styleable Layout_layout_constraintCircle 24 +int styleable Layout_layout_constraintCircleAngle 25 +int styleable Layout_layout_constraintCircleRadius 26 +int styleable Layout_layout_constraintDimensionRatio 27 +int styleable Layout_layout_constraintEnd_toEndOf 28 +int styleable Layout_layout_constraintEnd_toStartOf 29 +int styleable Layout_layout_constraintGuide_begin 30 +int styleable Layout_layout_constraintGuide_end 31 +int styleable Layout_layout_constraintGuide_percent 32 +int styleable Layout_layout_constraintHeight 33 +int styleable Layout_layout_constraintHeight_default 34 +int styleable Layout_layout_constraintHeight_max 35 +int styleable Layout_layout_constraintHeight_min 36 +int styleable Layout_layout_constraintHeight_percent 37 +int styleable Layout_layout_constraintHorizontal_bias 38 +int styleable Layout_layout_constraintHorizontal_chainStyle 39 +int styleable Layout_layout_constraintHorizontal_weight 40 +int styleable Layout_layout_constraintLeft_creator 41 +int styleable Layout_layout_constraintLeft_toLeftOf 42 +int styleable Layout_layout_constraintLeft_toRightOf 43 +int styleable Layout_layout_constraintRight_creator 44 +int styleable Layout_layout_constraintRight_toLeftOf 45 +int styleable Layout_layout_constraintRight_toRightOf 46 +int styleable Layout_layout_constraintStart_toEndOf 47 +int styleable Layout_layout_constraintStart_toStartOf 48 +int styleable Layout_layout_constraintTop_creator 49 +int styleable Layout_layout_constraintTop_toBottomOf 50 +int styleable Layout_layout_constraintTop_toTopOf 51 +int styleable Layout_layout_constraintVertical_bias 52 +int styleable Layout_layout_constraintVertical_chainStyle 53 +int styleable Layout_layout_constraintVertical_weight 54 +int styleable Layout_layout_constraintWidth 55 +int styleable Layout_layout_constraintWidth_default 56 +int styleable Layout_layout_constraintWidth_max 57 +int styleable Layout_layout_constraintWidth_min 58 +int styleable Layout_layout_constraintWidth_percent 59 +int styleable Layout_layout_editor_absoluteX 60 +int styleable Layout_layout_editor_absoluteY 61 +int styleable Layout_layout_goneMarginBaseline 62 +int styleable Layout_layout_goneMarginBottom 63 +int styleable Layout_layout_goneMarginEnd 64 +int styleable Layout_layout_goneMarginLeft 65 +int styleable Layout_layout_goneMarginRight 66 +int styleable Layout_layout_goneMarginStart 67 +int styleable Layout_layout_goneMarginTop 68 +int styleable Layout_layout_marginBaseline 69 +int styleable Layout_layout_wrapBehaviorInParent 70 +int styleable Layout_maxHeight 71 +int styleable Layout_maxWidth 72 +int styleable Layout_minHeight 73 +int styleable Layout_minWidth 74 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f04013d, 0x7f040142, 0x7f040298, 0x7f040363 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable LinearProgressIndicator { 0x7f0401dd, 0x7f0401e1 } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialAlertDialog { 0x7f04004d, 0x7f04004e, 0x7f04004f, 0x7f040050 } +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int[] styleable MaterialAlertDialogTheme { 0x7f040272, 0x7f040273, 0x7f040274, 0x7f040275, 0x7f040276 } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 4 +int[] styleable MaterialAutoCompleteTextView { 0x1010220 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int[] styleable MaterialButton { 0x10100d4, 0x10101e5, 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f040054, 0x7f040055, 0x7f040114, 0x7f04015e, 0x7f0401cd, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1, 0x7f0401d3, 0x7f0401d4, 0x7f040332, 0x7f040358, 0x7f04035b, 0x7f04038e, 0x7f04038f } +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_checkable 1 +int styleable MaterialButton_android_insetBottom 2 +int styleable MaterialButton_android_insetLeft 3 +int styleable MaterialButton_android_insetRight 4 +int styleable MaterialButton_android_insetTop 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int[] styleable MaterialButtonToggleGroup { 0x7f0400a2, 0x7f040355, 0x7f04036d } +int styleable MaterialButtonToggleGroup_checkedButton 0 +int styleable MaterialButtonToggleGroup_selectionRequired 1 +int styleable MaterialButtonToggleGroup_singleSelection 2 +int[] styleable MaterialCalendar { 0x101020d, 0x7f04012d, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f0402d9, 0x7f040320, 0x7f040457, 0x7f040458, 0x7f040459 } +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_dayInvalidStyle 1 +int styleable MaterialCalendar_daySelectedStyle 2 +int styleable MaterialCalendar_dayStyle 3 +int styleable MaterialCalendar_dayTodayStyle 4 +int styleable MaterialCalendar_nestedScrollable 5 +int styleable MaterialCalendar_rangeFillColor 6 +int styleable MaterialCalendar_yearSelectedStyle 7 +int styleable MaterialCalendar_yearStyle 8 +int styleable MaterialCalendar_yearTodayStyle 9 +int[] styleable MaterialCalendarItem { 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f0401e9, 0x7f0401f2, 0x7f0401f3, 0x7f0401fa, 0x7f0401fb, 0x7f0401ff } +int styleable MaterialCalendarItem_android_insetBottom 0 +int styleable MaterialCalendarItem_android_insetLeft 1 +int styleable MaterialCalendarItem_android_insetRight 2 +int styleable MaterialCalendarItem_android_insetTop 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int[] styleable MaterialCardView { 0x10101e5, 0x7f040091, 0x7f0400a4, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f040332, 0x7f040358, 0x7f04035b, 0x7f040388, 0x7f04038e, 0x7f04038f } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconMargin 3 +int styleable MaterialCardView_checkedIconSize 4 +int styleable MaterialCardView_checkedIconTint 5 +int styleable MaterialCardView_rippleColor 6 +int styleable MaterialCardView_shapeAppearance 7 +int styleable MaterialCardView_shapeAppearanceOverlay 8 +int styleable MaterialCardView_state_dragged 9 +int styleable MaterialCardView_strokeColor 10 +int styleable MaterialCardView_strokeWidth 11 +int[] styleable MaterialCheckBox { 0x7f04008c, 0x7f040432 } +int styleable MaterialCheckBox_buttonTint 0 +int styleable MaterialCheckBox_useMaterialThemeColors 1 +int[] styleable MaterialRadioButton { 0x7f04008c, 0x7f040432 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f040358, 0x7f04035b } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialTextAppearance { 0x10104b6, 0x101057f, 0x7f04025d } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x101057f, 0x1010034, 0x7f04025d } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f0400ce, 0x7f040202 } +int styleable MaterialTimePicker_clockIcon 0 +int styleable MaterialTimePicker_keyboardIcon 1 +int[] styleable MaterialToolbar { 0x7f0402d4, 0x7f040393, 0x7f040400 } +int styleable MaterialToolbar_navigationIconTint 0 +int styleable MaterialToolbar_subtitleCentered 1 +int styleable MaterialToolbar_titleCentered 2 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f040011, 0x7f040025, 0x7f040027, 0x7f040036, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f0400fc, 0x7f0401d3, 0x7f0401d4, 0x7f0402db, 0x7f04035e, 0x7f040412 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f040312, 0x7f040390 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x7f0402ae, 0x7f0402af, 0x7f0402b0, 0x7f0402b1, 0x7f0402b2, 0x7f0402b3 } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable MogoImageView { 0x7f0402a1, 0x7f0402a2, 0x7f0402a3, 0x7f0402a4, 0x7f0402a5, 0x7f0402a6, 0x7f0402a7, 0x7f0402a8, 0x7f0402a9, 0x7f0402aa, 0x7f0402ab, 0x7f0402ac, 0x7f0402ad } +int styleable MogoImageView_miv_blurRadius 0 +int styleable MogoImageView_miv_borderColor 1 +int styleable MogoImageView_miv_bottomLeftRadius 2 +int styleable MogoImageView_miv_bottomRightRadius 3 +int styleable MogoImageView_miv_failureHolder 4 +int styleable MogoImageView_miv_isBlur 5 +int styleable MogoImageView_miv_overlayImageId 6 +int styleable MogoImageView_miv_placeHolder 7 +int styleable MogoImageView_miv_radius 8 +int styleable MogoImageView_miv_shape 9 +int styleable MogoImageView_miv_shapeBorderWidth 10 +int styleable MogoImageView_miv_topLeftRadius 11 +int styleable MogoImageView_miv_topRightRadius 12 +int[] styleable Motion { 0x7f040038, 0x7f040039, 0x7f04003a, 0x7f04014d, 0x7f0402ca, 0x7f0402cc, 0x7f0402f6, 0x7f04031a, 0x7f04031b, 0x7f04031c, 0x7f040424 } +int styleable Motion_animateCircleAngleTo 0 +int styleable Motion_animateRelativeTo 1 +int styleable Motion_animate_relativeTo 2 +int styleable Motion_drawPath 3 +int styleable Motion_motionPathRotate 4 +int styleable Motion_motionStagger 5 +int styleable Motion_pathMotionArc 6 +int styleable Motion_quantizeMotionInterpolator 7 +int styleable Motion_quantizeMotionPhase 8 +int styleable Motion_quantizeMotionSteps 9 +int styleable Motion_transitionEasing 10 +int[] styleable MotionEffect { 0x7f0402c0, 0x7f0402c1, 0x7f0402c2, 0x7f0402c3, 0x7f0402c4, 0x7f0402c5, 0x7f0402c6, 0x7f0402c7 } +int styleable MotionEffect_motionEffect_alpha 0 +int styleable MotionEffect_motionEffect_end 1 +int styleable MotionEffect_motionEffect_move 2 +int styleable MotionEffect_motionEffect_start 3 +int styleable MotionEffect_motionEffect_strict 4 +int styleable MotionEffect_motionEffect_translationX 5 +int styleable MotionEffect_motionEffect_translationY 6 +int styleable MotionEffect_motionEffect_viewTransition 7 +int[] styleable MotionHelper { 0x7f0402dd, 0x7f0402e0 } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLabel { 0x1010535, 0x10103ac, 0x10100af, 0x1010164, 0x101014f, 0x1010098, 0x1010095, 0x1010097, 0x1010096, 0x7f04006a, 0x7f04006b, 0x7f040346, 0x7f0403d6, 0x7f0403d7, 0x7f0403d8, 0x7f0403d9, 0x7f0403da, 0x7f0403e2, 0x7f0403e3, 0x7f0403e4, 0x7f0403e5, 0x7f0403e7, 0x7f0403e8, 0x7f0403e9, 0x7f0403ea } +int styleable MotionLabel_android_autoSizeTextType 0 +int styleable MotionLabel_android_fontFamily 1 +int styleable MotionLabel_android_gravity 2 +int styleable MotionLabel_android_shadowRadius 3 +int styleable MotionLabel_android_text 4 +int styleable MotionLabel_android_textColor 5 +int styleable MotionLabel_android_textSize 6 +int styleable MotionLabel_android_textStyle 7 +int styleable MotionLabel_android_typeface 8 +int styleable MotionLabel_borderRound 9 +int styleable MotionLabel_borderRoundPercent 10 +int styleable MotionLabel_scaleFromTextSize 11 +int styleable MotionLabel_textBackground 12 +int styleable MotionLabel_textBackgroundPanX 13 +int styleable MotionLabel_textBackgroundPanY 14 +int styleable MotionLabel_textBackgroundRotate 15 +int styleable MotionLabel_textBackgroundZoom 16 +int styleable MotionLabel_textOutlineColor 17 +int styleable MotionLabel_textOutlineThickness 18 +int styleable MotionLabel_textPanX 19 +int styleable MotionLabel_textPanY 20 +int styleable MotionLabel_textureBlurFactor 21 +int styleable MotionLabel_textureEffect 22 +int styleable MotionLabel_textureHeight 23 +int styleable MotionLabel_textureWidth 24 +int[] styleable MotionLayout { 0x7f04003d, 0x7f040121, 0x7f040209, 0x7f0402b4, 0x7f0402cb, 0x7f040365 } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x7f040131, 0x7f04020a } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f0403bc, 0x7f0403bd, 0x7f0403be } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable NavigationBarView { 0x7f040054, 0x7f04015e, 0x7f0401e8, 0x7f0401ed, 0x7f0401ee, 0x7f0401f1, 0x7f0401fd, 0x7f0401fe, 0x7f0401ff, 0x7f040206, 0x7f040299 } +int styleable NavigationBarView_backgroundTint 0 +int styleable NavigationBarView_elevation 1 +int styleable NavigationBarView_itemBackground 2 +int styleable NavigationBarView_itemIconSize 3 +int styleable NavigationBarView_itemIconTint 4 +int styleable NavigationBarView_itemRippleColor 5 +int styleable NavigationBarView_itemTextAppearanceActive 6 +int styleable NavigationBarView_itemTextAppearanceInactive 7 +int styleable NavigationBarView_itemTextColor 8 +int styleable NavigationBarView_labelVisibilityMode 9 +int styleable NavigationBarView_menu 10 +int[] styleable NavigationRailView { 0x7f0401ba, 0x7f04029a } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_menuGravity 1 +int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x101011f, 0x7f04015e, 0x7f0401ba, 0x7f0401e8, 0x7f0401ea, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f8, 0x7f0401fc, 0x7f0401ff, 0x7f040299, 0x7f040358, 0x7f04035b } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_maxWidth 2 +int styleable NavigationView_elevation 3 +int styleable NavigationView_headerLayout 4 +int styleable NavigationView_itemBackground 5 +int styleable NavigationView_itemHorizontalPadding 6 +int styleable NavigationView_itemIconPadding 7 +int styleable NavigationView_itemIconSize 8 +int styleable NavigationView_itemIconTint 9 +int styleable NavigationView_itemMaxLines 10 +int styleable NavigationView_itemShapeAppearance 11 +int styleable NavigationView_itemShapeAppearanceOverlay 12 +int styleable NavigationView_itemShapeFillColor 13 +int styleable NavigationView_itemShapeInsetBottom 14 +int styleable NavigationView_itemShapeInsetEnd 15 +int styleable NavigationView_itemShapeInsetStart 16 +int styleable NavigationView_itemShapeInsetTop 17 +int styleable NavigationView_itemTextAppearance 18 +int styleable NavigationView_itemTextColor 19 +int styleable NavigationView_menu 20 +int styleable NavigationView_shapeAppearance 21 +int styleable NavigationView_shapeAppearanceOverlay 22 +int[] styleable OnClick { 0x7f0400cb, 0x7f0403bb } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f040042, 0x7f04014a, 0x7f04014b, 0x7f04014c, 0x7f04025c, 0x7f04028e, 0x7f040296, 0x7f0402d0, 0x7f0402d8, 0x7f0402e2, 0x7f040333, 0x7f040378, 0x7f040379, 0x7f04037a, 0x7f04037b, 0x7f04037c, 0x7f040415, 0x7f040416, 0x7f040417 } +int styleable OnSwipe_autoCompleteMode 0 +int styleable OnSwipe_dragDirection 1 +int styleable OnSwipe_dragScale 2 +int styleable OnSwipe_dragThreshold 3 +int styleable OnSwipe_limitBoundsTo 4 +int styleable OnSwipe_maxAcceleration 5 +int styleable OnSwipe_maxVelocity 6 +int styleable OnSwipe_moveWhenScrollAtTop 7 +int styleable OnSwipe_nestedScrollFlags 8 +int styleable OnSwipe_onTouchUp 9 +int styleable OnSwipe_rotationCenterId 10 +int styleable OnSwipe_springBoundary 11 +int styleable OnSwipe_springDamping 12 +int styleable OnSwipe_springMass 13 +int styleable OnSwipe_springStiffness 14 +int styleable OnSwipe_springStopThreshold 15 +int styleable OnSwipe_touchAnchorId 16 +int styleable OnSwipe_touchAnchorSide 17 +int styleable OnSwipe_touchRegionId 18 +int[] styleable PlaybackControlView { 0x7f04010d, 0x7f04018e, 0x7f040331, 0x7f040369 } +int styleable PlaybackControlView_controller_layout_id 0 +int styleable PlaybackControlView_fastforward_increment 1 +int styleable PlaybackControlView_rewind_increment 2 +int styleable PlaybackControlView_show_timeout 3 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f0402e3 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f040385 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x101031f, 0x10100dc, 0x7f040234, 0x7f0402cb, 0x7f04043d } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x7f040289 } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f04029e, 0x7f040435 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x7f0402e6, 0x7f0402ec } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x7f040189, 0x7f04018a, 0x7f04018b, 0x7f04018c, 0x7f04018d, 0x7f04020b, 0x7f040330, 0x7f040373, 0x7f04037e } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable RoundLayout { 0x7f04033a } +int styleable RoundLayout_roundLayoutRadius 0 +int[] styleable Scale { 0x7f04013b } +int styleable Scale_disappearedScale 0 +int[] styleable ScrimInsetsFrameLayout { 0x7f0401e5 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f040065 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f0400d0, 0x7f0400f4, 0x7f040132, 0x7f0401b7, 0x7f0401d5, 0x7f040208, 0x7f04031d, 0x7f04031e, 0x7f04034f, 0x7f040350, 0x7f040391, 0x7f04039a, 0x7f04043e } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable ShapeAppearance { 0x7f04010f, 0x7f040110, 0x7f040111, 0x7f040112, 0x7f040113, 0x7f040115, 0x7f040116, 0x7f040117, 0x7f040118, 0x7f040119 } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x7f040103, 0x7f040104, 0x7f040105, 0x7f040106, 0x7f040107, 0x7f040108, 0x7f040109, 0x7f040358, 0x7f04035b, 0x7f04038e, 0x7f04038f } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable SimpleDraweeView { 0x7f040029, 0x7f04002a, 0x7f04002b, 0x7f04004c, 0x7f040186, 0x7f040187, 0x7f040188, 0x7f0402e5, 0x7f0402fe, 0x7f0402ff, 0x7f040313, 0x7f040315, 0x7f040316, 0x7f040317, 0x7f04032e, 0x7f04032f, 0x7f040335, 0x7f040336, 0x7f040337, 0x7f040338, 0x7f040339, 0x7f04033c, 0x7f04033d, 0x7f04033e, 0x7f04033f, 0x7f040340, 0x7f040341, 0x7f040342, 0x7f040343, 0x7f040344, 0x7f040437 } +int styleable SimpleDraweeView_actualImageResource 0 +int styleable SimpleDraweeView_actualImageScaleType 1 +int styleable SimpleDraweeView_actualImageUri 2 +int styleable SimpleDraweeView_backgroundImage 3 +int styleable SimpleDraweeView_fadeDuration 4 +int styleable SimpleDraweeView_failureImage 5 +int styleable SimpleDraweeView_failureImageScaleType 6 +int styleable SimpleDraweeView_overlayImage 7 +int styleable SimpleDraweeView_placeholderImage 8 +int styleable SimpleDraweeView_placeholderImageScaleType 9 +int styleable SimpleDraweeView_pressedStateOverlayImage 10 +int styleable SimpleDraweeView_progressBarAutoRotateInterval 11 +int styleable SimpleDraweeView_progressBarImage 12 +int styleable SimpleDraweeView_progressBarImageScaleType 13 +int styleable SimpleDraweeView_retryImage 14 +int styleable SimpleDraweeView_retryImageScaleType 15 +int styleable SimpleDraweeView_roundAsCircle 16 +int styleable SimpleDraweeView_roundBottomEnd 17 +int styleable SimpleDraweeView_roundBottomLeft 18 +int styleable SimpleDraweeView_roundBottomRight 19 +int styleable SimpleDraweeView_roundBottomStart 20 +int styleable SimpleDraweeView_roundTopEnd 21 +int styleable SimpleDraweeView_roundTopLeft 22 +int styleable SimpleDraweeView_roundTopRight 23 +int styleable SimpleDraweeView_roundTopStart 24 +int styleable SimpleDraweeView_roundWithOverlayColor 25 +int styleable SimpleDraweeView_roundedCornerRadius 26 +int styleable SimpleDraweeView_roundingBorderColor 27 +int styleable SimpleDraweeView_roundingBorderPadding 28 +int styleable SimpleDraweeView_roundingBorderWidth 29 +int styleable SimpleDraweeView_viewAspectRatio 30 +int[] styleable SimpleExoPlayerView { 0x7f04010d, 0x7f040134, 0x7f04018e, 0x7f0401c4, 0x7f040309, 0x7f04032d, 0x7f040331, 0x7f040369, 0x7f04039b, 0x7f040433, 0x7f040434 } +int styleable SimpleExoPlayerView_controller_layout_id 0 +int styleable SimpleExoPlayerView_default_artwork 1 +int styleable SimpleExoPlayerView_fastforward_increment 2 +int styleable SimpleExoPlayerView_hide_on_touch 3 +int styleable SimpleExoPlayerView_player_layout_id 4 +int styleable SimpleExoPlayerView_resize_mode 5 +int styleable SimpleExoPlayerView_rewind_increment 6 +int styleable SimpleExoPlayerView_show_timeout 7 +int styleable SimpleExoPlayerView_surface_type 8 +int styleable SimpleExoPlayerView_use_artwork 9 +int styleable SimpleExoPlayerView_use_controller 10 +int[] styleable Slider { 0x101000e, 0x1010146, 0x1010024, 0x10102de, 0x10102df, 0x7f0401b8, 0x7f0401b9, 0x7f040204, 0x7f040205, 0x7f0403ee, 0x7f0403ef, 0x7f0403f0, 0x7f0403f1, 0x7f0403f2, 0x7f0403f6, 0x7f0403f7, 0x7f0403f8, 0x7f0403fc, 0x7f04041a, 0x7f04041b, 0x7f04041c, 0x7f04041e } +int styleable Slider_android_enabled 0 +int styleable Slider_android_stepSize 1 +int styleable Slider_android_value 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_thumbColor 9 +int styleable Slider_thumbElevation 10 +int styleable Slider_thumbRadius 11 +int styleable Slider_thumbStrokeColor 12 +int styleable Slider_thumbStrokeWidth 13 +int styleable Slider_tickColor 14 +int styleable Slider_tickColorActive 15 +int styleable Slider_tickColorInactive 16 +int styleable Slider_tickVisible 17 +int styleable Slider_trackColor 18 +int styleable Slider_trackColorActive 19 +int styleable Slider_trackColorInactive 20 +int styleable Slider_trackHeight 21 +int[] styleable Snackbar { 0x7f040370, 0x7f040371, 0x7f040372 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable SnackbarLayout { 0x7f040026, 0x101011f, 0x7f04003b, 0x7f040051, 0x7f040054, 0x7f040055, 0x7f04015e, 0x7f04028f } +int styleable SnackbarLayout_actionTextColorAlpha 0 +int styleable SnackbarLayout_android_maxWidth 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f04030d } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable State { 0x10100d0, 0x7f0400fa } +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable StateSet { 0x7f040133 } +int styleable StateSet_defaultState 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f040367, 0x7f040377, 0x7f04039c, 0x7f04039d, 0x7f04039f, 0x7f0403f3, 0x7f0403f4, 0x7f0403f5, 0x7f040419, 0x7f040420, 0x7f040421 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable SwitchMaterial { 0x7f040432 } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x1010002, 0x10100f2, 0x101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f0403a0, 0x7f0403a1, 0x7f0403a2, 0x7f0403a3, 0x7f0403a4, 0x7f0403a5, 0x7f0403a6, 0x7f0403a7, 0x7f0403a8, 0x7f0403a9, 0x7f0403aa, 0x7f0403ab, 0x7f0403ac, 0x7f0403ad, 0x7f0403ae, 0x7f0403af, 0x7f0403b0, 0x7f0403b1, 0x7f0403b2, 0x7f0403b3, 0x7f0403b4, 0x7f0403b5, 0x7f0403b6, 0x7f0403b8, 0x7f0403b9, 0x7f0403ba } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextColor 22 +int styleable TabLayout_tabTextAppearance 23 +int styleable TabLayout_tabTextColor 24 +int styleable TabLayout_tabUnboundedRipple 25 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x7f0401a7, 0x7f0401b0, 0x7f0403bf, 0x7f0403e1 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextEffects { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x101014f, 0x1010095, 0x1010097, 0x1010096, 0x7f04006a, 0x7f04006b, 0x7f0403de, 0x7f0403e2, 0x7f0403e3 } +int styleable TextEffects_android_fontFamily 0 +int styleable TextEffects_android_shadowColor 1 +int styleable TextEffects_android_shadowDx 2 +int styleable TextEffects_android_shadowDy 3 +int styleable TextEffects_android_shadowRadius 4 +int styleable TextEffects_android_text 5 +int styleable TextEffects_android_textSize 6 +int styleable TextEffects_android_textStyle 7 +int styleable TextEffects_android_typeface 8 +int styleable TextEffects_borderRound 9 +int styleable TextEffects_borderRoundPercent 10 +int styleable TextEffects_textFillColor 11 +int styleable TextEffects_textOutlineColor 12 +int styleable TextEffects_textOutlineThickness 13 +int[] styleable TextInputEditText { 0x7f0403df } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x101000e, 0x1010150, 0x101011f, 0x101013f, 0x101009a, 0x7f040072, 0x7f040073, 0x7f040074, 0x7f040075, 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b, 0x7f04007c, 0x7f04011a, 0x7f04011b, 0x7f04011c, 0x7f04011d, 0x7f04011e, 0x7f04011f, 0x7f040162, 0x7f040163, 0x7f040164, 0x7f040165, 0x7f040166, 0x7f040167, 0x7f04016b, 0x7f04016c, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f040170, 0x7f040171, 0x7f040174, 0x7f0401bc, 0x7f0401bd, 0x7f0401be, 0x7f0401bf, 0x7f0401c5, 0x7f0401c6, 0x7f0401c7, 0x7f0401c8, 0x7f0402f1, 0x7f0402f2, 0x7f0402f3, 0x7f0402f4, 0x7f0402f5, 0x7f040300, 0x7f040301, 0x7f040302, 0x7f04030f, 0x7f040310, 0x7f040311, 0x7f040358, 0x7f04035b, 0x7f040380, 0x7f040381, 0x7f040382, 0x7f040383, 0x7f040384, 0x7f040397, 0x7f040398, 0x7f040399 } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_maxWidth 2 +int styleable TextInputLayout_android_minWidth 3 +int styleable TextInputLayout_android_textColorHint 4 +int styleable TextInputLayout_boxBackgroundColor 5 +int styleable TextInputLayout_boxBackgroundMode 6 +int styleable TextInputLayout_boxCollapsedPaddingTop 7 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 8 +int styleable TextInputLayout_boxCornerRadiusBottomStart 9 +int styleable TextInputLayout_boxCornerRadiusTopEnd 10 +int styleable TextInputLayout_boxCornerRadiusTopStart 11 +int styleable TextInputLayout_boxStrokeColor 12 +int styleable TextInputLayout_boxStrokeErrorColor 13 +int styleable TextInputLayout_boxStrokeWidth 14 +int styleable TextInputLayout_boxStrokeWidthFocused 15 +int styleable TextInputLayout_counterEnabled 16 +int styleable TextInputLayout_counterMaxLength 17 +int styleable TextInputLayout_counterOverflowTextAppearance 18 +int styleable TextInputLayout_counterOverflowTextColor 19 +int styleable TextInputLayout_counterTextAppearance 20 +int styleable TextInputLayout_counterTextColor 21 +int styleable TextInputLayout_endIconCheckable 22 +int styleable TextInputLayout_endIconContentDescription 23 +int styleable TextInputLayout_endIconDrawable 24 +int styleable TextInputLayout_endIconMode 25 +int styleable TextInputLayout_endIconTint 26 +int styleable TextInputLayout_endIconTintMode 27 +int styleable TextInputLayout_errorContentDescription 28 +int styleable TextInputLayout_errorEnabled 29 +int styleable TextInputLayout_errorIconDrawable 30 +int styleable TextInputLayout_errorIconTint 31 +int styleable TextInputLayout_errorIconTintMode 32 +int styleable TextInputLayout_errorTextAppearance 33 +int styleable TextInputLayout_errorTextColor 34 +int styleable TextInputLayout_expandedHintEnabled 35 +int styleable TextInputLayout_helperText 36 +int styleable TextInputLayout_helperTextEnabled 37 +int styleable TextInputLayout_helperTextTextAppearance 38 +int styleable TextInputLayout_helperTextTextColor 39 +int styleable TextInputLayout_hintAnimationEnabled 40 +int styleable TextInputLayout_hintEnabled 41 +int styleable TextInputLayout_hintTextAppearance 42 +int styleable TextInputLayout_hintTextColor 43 +int styleable TextInputLayout_passwordToggleContentDescription 44 +int styleable TextInputLayout_passwordToggleDrawable 45 +int styleable TextInputLayout_passwordToggleEnabled 46 +int styleable TextInputLayout_passwordToggleTint 47 +int styleable TextInputLayout_passwordToggleTintMode 48 +int styleable TextInputLayout_placeholderText 49 +int styleable TextInputLayout_placeholderTextAppearance 50 +int styleable TextInputLayout_placeholderTextColor 51 +int styleable TextInputLayout_prefixText 52 +int styleable TextInputLayout_prefixTextAppearance 53 +int styleable TextInputLayout_prefixTextColor 54 +int styleable TextInputLayout_shapeAppearance 55 +int styleable TextInputLayout_shapeAppearanceOverlay 56 +int styleable TextInputLayout_startIconCheckable 57 +int styleable TextInputLayout_startIconContentDescription 58 +int styleable TextInputLayout_startIconDrawable 59 +int styleable TextInputLayout_startIconTint 60 +int styleable TextInputLayout_startIconTintMode 61 +int styleable TextInputLayout_suffixText 62 +int styleable TextInputLayout_suffixTextAppearance 63 +int styleable TextInputLayout_suffixTextColor 64 +int[] styleable ThemeEnforcement { 0x1010034, 0x7f040168, 0x7f040169 } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040087, 0x7f0400d8, 0x7f0400d9, 0x7f0400fd, 0x7f0400fe, 0x7f0400ff, 0x7f040100, 0x7f040101, 0x7f040102, 0x7f04026f, 0x7f040270, 0x7f040290, 0x7f040299, 0x7f0402d2, 0x7f0402d3, 0x7f04030d, 0x7f040392, 0x7f040394, 0x7f040395, 0x7f0403ff, 0x7f040403, 0x7f040404, 0x7f040405, 0x7f040406, 0x7f040407, 0x7f040408, 0x7f040409, 0x7f04040a } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x10100f6, 0x1010140, 0x101013f, 0x10100d5, 0x101014f, 0x1010034, 0x7f040054 } +int styleable Tooltip_android_layout_margin 0 +int styleable Tooltip_android_minHeight 1 +int styleable Tooltip_android_minWidth 2 +int styleable Tooltip_android_padding 3 +int styleable Tooltip_android_text 4 +int styleable Tooltip_android_textAppearance 5 +int styleable Tooltip_backgroundTint 6 +int[] styleable Transform { 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x7f040422 } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int styleable Transform_transformPivotTarget 11 +int[] styleable Transition { 0x10100d0, 0x7f040049, 0x7f0400f6, 0x7f0400f7, 0x7f04015a, 0x7f04020a, 0x7f0402c8, 0x7f0402f6, 0x7f04037f, 0x7f040423, 0x7f040425 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x7f0400fa, 0x7f040329, 0x7f04032a, 0x7f04032b, 0x7f04032c } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x10100da, 0x1010000, 0x7f0402e8, 0x7f0402eb, 0x7f0403eb } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040054, 0x7f040055 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x10100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 +int[] styleable ViewTransition { 0x7f040002, 0x7f040003, 0x10100d0, 0x7f0400ca, 0x7f04015a, 0x7f0401d6, 0x7f0401d7, 0x7f0402c8, 0x7f0402cd, 0x7f0402e1, 0x7f0402f6, 0x7f040357, 0x7f040423, 0x7f040430, 0x7f040439 } +int styleable ViewTransition_SharedValue 0 +int styleable ViewTransition_SharedValueId 1 +int styleable ViewTransition_android_id 2 +int styleable ViewTransition_clearsTag 3 +int styleable ViewTransition_duration 4 +int styleable ViewTransition_ifTagNotSet 5 +int styleable ViewTransition_ifTagSet 6 +int styleable ViewTransition_motionInterpolator 7 +int styleable ViewTransition_motionTarget 8 +int styleable ViewTransition_onStateTransition 9 +int styleable ViewTransition_pathMotionArc 10 +int styleable ViewTransition_setsTag 11 +int styleable ViewTransition_transitionDisable 12 +int styleable ViewTransition_upDuration 13 +int styleable ViewTransition_viewTransitionMode 14 +int[] styleable download { 0x7f040144, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f040148, 0x7f040149 } +int styleable download_download_bg_line_color 0 +int styleable download_download_bg_line_width 1 +int styleable download_download_line_color 2 +int styleable download_download_line_width 3 +int styleable download_download_text_color 4 +int styleable download_download_text_size 5 +int[] styleable include { 0x7f0400f5 } +int styleable include_constraintSet 0 +int[] styleable play { 0x7f040304, 0x7f040305, 0x7f040306, 0x7f040307 } +int styleable play_play_bg_line_color 0 +int styleable play_play_bg_line_width 1 +int styleable play_play_line_color 2 +int styleable play_play_line_width 3 +int xml standalone_badge 0x7f180001 +int xml standalone_badge_gravity_bottom_end 0x7f180002 +int xml standalone_badge_gravity_bottom_start 0x7f180003 +int xml standalone_badge_gravity_top_start 0x7f180004 +int xml standalone_badge_offset 0x7f180005 +int xml util_code_provider_paths 0x7f180006 diff --git a/core/function-impl/mogo-core-function-devatools/build/outputs/logs/manifest-merger-debug-report.txt b/core/function-impl/mogo-core-function-devatools/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000..e84c3106aa --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,61 @@ +-- Merging decision tree log --- +manifest +ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:2:1-11:12 +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:2:1-11:12 +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:2:1-11:12 +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:2:1-11:12 +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:2:1-11:12 +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:2:1-11:12 +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:2:1-11:12 + package + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:3:5-52 + INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + android:versionName + INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:2:1-11:12 + INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + android:versionCode + INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:2:1-11:12 + INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + xmlns:android + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:2:11-69 +uses-permission#android.permission.ACCESS_FINE_LOCATION +ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:5:5-79 + android:name + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:5:22-76 +uses-permission#android.permission.ACCESS_NETWORK_STATE +ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:6:5-79 + android:name + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:6:22-76 +uses-permission#android.permission.ACCESS_WIFI_STATE +ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:7:5-76 + android:name + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:7:22-73 +uses-permission#android.permission.BLUETOOTH +ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:8:5-68 + android:name + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:8:22-65 +uses-permission#android.permission.BLUETOOTH_ADMIN +ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:9:5-74 + android:name + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:9:22-71 +uses-permission#android.permission.CHANGE_WIFI_STATE +ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:10:5-76 + android:name + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml:10:22-73 +uses-sdk +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml +INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + android:targetSdkVersion + INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + ADDED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml + INJECTED from /Users/emarrow/Documents/androidProject/MoGoEagleEye/core/function-impl/mogo-core-function-devatools/src/main/AndroidManifest.xml diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin new file mode 100644 index 0000000000..217fe6e449 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/apt-cache.bin b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/apt-cache.bin new file mode 100644 index 0000000000..5af0517713 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/apt-cache.bin differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/classpath-entries.bin b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/classpath-entries.bin new file mode 100644 index 0000000000..3d38c795d1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/classpath-entries.bin differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/classpath-structure.bin b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/classpath-structure.bin new file mode 100644 index 0000000000..507055d899 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/classpath-structure.bin differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/java-cache.bin b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/java-cache.bin new file mode 100644 index 0000000000..b7a0061a98 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incApCache/debug/java-cache.bin differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-core-function-devatools_debug.kotlin_module b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-core-function-devatools_debug.kotlin_module new file mode 100644 index 0000000000..61df8934c8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-core-function-devatools_debug.kotlin_module differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider$Companion.class new file mode 100644 index 0000000000..da0eb6655d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.class new file mode 100644 index 0000000000..d1a908cfd3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.class new file mode 100644 index 0000000000..5a6d4046c0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.class new file mode 100644 index 0000000000..e7c19a504e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$ClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$ClickListener.class new file mode 100644 index 0000000000..88a01fedd4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$ClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$Companion.class new file mode 100644 index 0000000000..887559cef4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow.class new file mode 100644 index 0000000000..a1f249905d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$ClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$ClickListener.class new file mode 100644 index 0000000000..c27e8fe9c1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$ClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$Companion.class new file mode 100644 index 0000000000..82c6c5bc18 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView.class new file mode 100644 index 0000000000..a5438a87a5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.class new file mode 100644 index 0000000000..7dd92e0844 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.class new file mode 100644 index 0000000000..de5b55f1f1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$ClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$ClickListener.class new file mode 100644 index 0000000000..f65a7e1e8c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$ClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$Companion.class new file mode 100644 index 0000000000..84b1b45100 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.class new file mode 100644 index 0000000000..c0433d3d80 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$ClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$ClickListener.class new file mode 100644 index 0000000000..17dd5c7c56 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$ClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$Companion.class new file mode 100644 index 0000000000..999cdf7828 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow.class new file mode 100644 index 0000000000..d948b9a9c2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseClickListener.class new file mode 100644 index 0000000000..7a1124b3dd Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseListHolder.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseListHolder.class new file mode 100644 index 0000000000..a70546d2d2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseListHolder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter.class new file mode 100644 index 0000000000..1517609b0f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$ClickTemplateListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$ClickTemplateListener.class new file mode 100644 index 0000000000..d3bba1ec25 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$ClickTemplateListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$RecordTemplateHolder.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$RecordTemplateHolder.class new file mode 100644 index 0000000000..a7c4717ac5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$RecordTemplateHolder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.class new file mode 100644 index 0000000000..ef3fb6eb63 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicClickListener.class new file mode 100644 index 0000000000..c2185b8612 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicListHolder.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicListHolder.class new file mode 100644 index 0000000000..74d0c9838f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicListHolder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.class new file mode 100644 index 0000000000..d31b11fbe3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.class new file mode 100644 index 0000000000..918349a90f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.class new file mode 100644 index 0000000000..e5742554a5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.class new file mode 100644 index 0000000000..02c36d0910 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.class new file mode 100644 index 0000000000..dfd7247685 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.class new file mode 100644 index 0000000000..4f9679470b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.class new file mode 100644 index 0000000000..03082827c1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.class new file mode 100644 index 0000000000..6321731273 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.class new file mode 100644 index 0000000000..3082da227b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.class new file mode 100644 index 0000000000..4921e3914f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason.class new file mode 100644 index 0000000000..6d53a64d40 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.class new file mode 100644 index 0000000000..35aad354c1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.class new file mode 100644 index 0000000000..371579452c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.class new file mode 100644 index 0000000000..498c48b2c8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager$Companion.class new file mode 100644 index 0000000000..7e32bf2a4b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.class new file mode 100644 index 0000000000..798b050876 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$Companion.class new file mode 100644 index 0000000000..71c2352346 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.class new file mode 100644 index 0000000000..785244acf1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager$EnvConfig.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager$EnvConfig.class new file mode 100644 index 0000000000..b8c619e3ba Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager$EnvConfig.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.class new file mode 100644 index 0000000000..a4c5ae06f7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.class new file mode 100644 index 0000000000..243cfbb030 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$Companion.class new file mode 100644 index 0000000000..ef580e4463 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.class new file mode 100644 index 0000000000..3176481fcb Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst$Companion.class new file mode 100644 index 0000000000..fcdc0a8d7f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.class new file mode 100644 index 0000000000..7ed08ca536 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.class new file mode 100644 index 0000000000..91baa9df2c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.class new file mode 100644 index 0000000000..4f046caf6e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.class new file mode 100644 index 0000000000..e693ca4505 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst$Companion.class new file mode 100644 index 0000000000..072fde01da Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.class new file mode 100644 index 0000000000..3f43a5a745 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.class new file mode 100644 index 0000000000..dc470fd56e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$Companion.class new file mode 100644 index 0000000000..e56b0259ac Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.class new file mode 100644 index 0000000000..46c7cbe38d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$Companion.class new file mode 100644 index 0000000000..c6b0682809 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$CpuRunnable.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$CpuRunnable.class new file mode 100644 index 0000000000..6ebd4d454e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$CpuRunnable.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.class new file mode 100644 index 0000000000..6ad14fdc77 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$Companion.class new file mode 100644 index 0000000000..5d5f2b20bf Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$MemoryRunnable.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$MemoryRunnable.class new file mode 100644 index 0000000000..841b54ced6 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$MemoryRunnable.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.class new file mode 100644 index 0000000000..ee17da2b25 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager$Companion.class new file mode 100644 index 0000000000..516be8daf1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.class new file mode 100644 index 0000000000..efd62ce553 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.class new file mode 100644 index 0000000000..78fca8ef90 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.class new file mode 100644 index 0000000000..2e614f2ee7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.class new file mode 100644 index 0000000000..a755609458 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb$Companion.class new file mode 100644 index 0000000000..86609f3884 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.class new file mode 100644 index 0000000000..0cf73d70fc Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.class new file mode 100644 index 0000000000..6717a37160 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.class new file mode 100644 index 0000000000..60ebc953d6 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.class new file mode 100644 index 0000000000..9beb57f329 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager$Companion.class new file mode 100644 index 0000000000..e4b4a2b056 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.class new file mode 100644 index 0000000000..6a70a58853 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$Companion.class new file mode 100644 index 0000000000..f6e7f0c66c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.class new file mode 100644 index 0000000000..e602a7ffc9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$IStatusListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$IStatusListener.class new file mode 100644 index 0000000000..2b251541be Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$IStatusListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.class new file mode 100644 index 0000000000..6f531ad036 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.class new file mode 100644 index 0000000000..532dba2bb6 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.class new file mode 100644 index 0000000000..0568a4ec28 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.class new file mode 100644 index 0000000000..7b9d567f13 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.class new file mode 100644 index 0000000000..20260ce00d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.class new file mode 100644 index 0000000000..6960e1422a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.class new file mode 100644 index 0000000000..c899801cb9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing.class new file mode 100644 index 0000000000..357bdda305 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.class new file mode 100644 index 0000000000..1dfff40c53 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.class new file mode 100644 index 0000000000..4e9a0c994f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$Companion.class new file mode 100644 index 0000000000..59096a9b0e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.class new file mode 100644 index 0000000000..a40280c1d0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$CheckLocationReceiver.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$CheckLocationReceiver.class new file mode 100644 index 0000000000..c068337cd2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$CheckLocationReceiver.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$Companion.class new file mode 100644 index 0000000000..f73e332c89 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.class new file mode 100644 index 0000000000..b611f42fde Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl$Companion.class new file mode 100644 index 0000000000..63fc5bf280 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.class new file mode 100644 index 0000000000..f6e5add81c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$Companion.class new file mode 100644 index 0000000000..f477eaadbf Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.class new file mode 100644 index 0000000000..b9b35a1e09 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl$Companion.class new file mode 100644 index 0000000000..e924991481 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.class new file mode 100644 index 0000000000..a87c00f75d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel$Companion.class new file mode 100644 index 0000000000..70bda63c06 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.class new file mode 100644 index 0000000000..31e8dcc359 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView$Companion.class new file mode 100644 index 0000000000..13cfcb77ba Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.class new file mode 100644 index 0000000000..ed25d01859 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$Companion.class new file mode 100644 index 0000000000..c953c73d4f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder.class new file mode 100644 index 0000000000..81e789674d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.class new file mode 100644 index 0000000000..17d60b099e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.class new file mode 100644 index 0000000000..ef884e3fae Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.class new file mode 100644 index 0000000000..5233207f6b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager$Companion.class new file mode 100644 index 0000000000..d68a7eb7ad Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.class new file mode 100644 index 0000000000..e057d03569 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.class new file mode 100644 index 0000000000..660348d6a1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.class new file mode 100644 index 0000000000..87dc245477 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager$Companion.class new file mode 100644 index 0000000000..7b22bf400c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.class new file mode 100644 index 0000000000..830dffa2b1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.class new file mode 100644 index 0000000000..9fe27d5529 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$Companion.class new file mode 100644 index 0000000000..8a3a2f5231 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.class new file mode 100644 index 0000000000..bae64942fe Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.class new file mode 100644 index 0000000000..986c554d3f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst$Companion.class new file mode 100644 index 0000000000..a210fc93b2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.class new file mode 100644 index 0000000000..a21242161f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$Companion.class new file mode 100644 index 0000000000..177a9b19fd Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.class new file mode 100644 index 0000000000..9ae27a1a61 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/incrementalData/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.java new file mode 100644 index 0000000000..c165dcaba4 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.java @@ -0,0 +1,167 @@ +package com.zhjt.mogo_core_function_devatools; + +import java.lang.System; + +@com.alibaba.android.arouter.facade.annotation.Route(path = "/deva/tools") +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000|\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0005\n\u0002\u0010%\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\b\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\r\n\u0002\u0018\u0002\n\u0002\b\r\n\u0002\u0010 \n\u0002\b\u0003\b\u0007\u0018\u0000 G2\u00020\u0001:\u0001GB\u0005\u00a2\u0006\u0002\u0010\u0002J\u0018\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\bH\u0016J\u0018\u0010\n\u001a\u00020\u00062\u0006\u0010\u000b\u001a\u00020\b2\u0006\u0010\f\u001a\u00020\bH\u0016J\u0014\u0010\r\u001a\u000e\u0012\u0004\u0012\u00020\b\u0012\u0004\u0012\u00020\u000f0\u000eH\u0016J\u0014\u0010\u0010\u001a\u000e\u0012\u0004\u0012\u00020\b\u0012\u0004\u0012\u00020\u00110\u000eH\u0016J$\u0010\u0012\u001a\u001e\u0012\u0004\u0012\u00020\u0014\u0012\u0004\u0012\u00020\u00150\u0013j\u000e\u0012\u0004\u0012\u00020\u0014\u0012\u0004\u0012\u00020\u0015`\u0016H\u0016J\b\u0010\u0017\u001a\u00020\u0018H\u0016J\b\u0010\u0019\u001a\u00020\u0006H\u0016J\u0010\u0010\u001a\u001a\u00020\u00062\u0006\u0010\u001b\u001a\u00020\u0004H\u0016J\u0010\u0010\u001c\u001a\u00020\u00062\u0006\u0010\u001d\u001a\u00020\u001eH\u0016J\u0010\u0010\u001f\u001a\u00020\u00062\u0006\u0010\u001d\u001a\u00020\u001eH\u0016J\b\u0010 \u001a\u00020\u0006H\u0016J\u001c\u0010!\u001a\u00020\u00062\u0012\u0010\"\u001a\u000e\u0012\u0004\u0012\u00020$\u0012\u0004\u0012\u00020\u00060#H\u0016J \u0010%\u001a\u00020\u00062\u0006\u0010&\u001a\u00020\'2\u0006\u0010(\u001a\u00020)2\u0006\u0010*\u001a\u00020\u0018H\u0016J\b\u0010+\u001a\u00020\u0006H\u0016J\u0018\u0010,\u001a\u00020\u00062\u0006\u0010-\u001a\u00020\b2\u0006\u0010.\u001a\u00020\bH\u0016J,\u0010/\u001a\u00020\u00062\"\u00100\u001a\u001e\u0012\u0004\u0012\u00020\u0014\u0012\u0004\u0012\u00020\u00150\u0013j\u000e\u0012\u0004\u0012\u00020\u0014\u0012\u0004\u0012\u00020\u0015`\u0016H\u0016J\u0010\u00101\u001a\u00020\u00062\u0006\u00102\u001a\u00020\u0018H\u0016J\u0010\u00103\u001a\u00020\u00062\u0006\u00104\u001a\u00020\u0004H\u0016J\u0018\u00105\u001a\u00020\u00062\u0006\u00104\u001a\u00020\u00042\u0006\u00106\u001a\u000207H\u0016J\b\u00108\u001a\u00020\u0006H\u0016J\u001a\u00108\u001a\u00020\u00062\u0006\u00109\u001a\u00020\u00142\b\u0010:\u001a\u0004\u0018\u00010\bH\u0016J\b\u0010;\u001a\u00020\u0006H\u0016J\u0012\u0010<\u001a\u00020\u00062\b\u0010:\u001a\u0004\u0018\u00010\bH\u0016J\b\u0010=\u001a\u00020\u0006H\u0016J\b\u0010>\u001a\u00020\u0006H\u0016J\u001c\u0010?\u001a\u00020\u00062\u0012\u0010@\u001a\u000e\u0012\u0004\u0012\u00020\b\u0012\u0004\u0012\u00020\u000f0\u000eH\u0016J\u001c\u0010A\u001a\u00020\u00062\u0012\u0010B\u001a\u000e\u0012\u0004\u0012\u00020\b\u0012\u0004\u0012\u00020\u00110\u000eH\u0016J&\u0010C\u001a\u00020\u00062\f\u0010D\u001a\b\u0012\u0004\u0012\u00020\b0E2\u0006\u0010-\u001a\u00020\b2\u0006\u0010F\u001a\u00020\bH\u0016R\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006H"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/DevaToolsProvider;", "Lcom/mogo/eagle/core/function/api/devatools/IDevaToolsProvider;", "()V", "mContext", "Landroid/content/Context;", "downLoadPackage", "", "downloadKey", "", "downloadUrl", "getBindingCarInfo", "macAddress", "widevineIDWithMd5", "getModuleTAG", "", "Lcom/mogo/eagle/core/data/deva/scene/SceneModule;", "getSceneLogTAG", "Lcom/mogo/eagle/core/data/deva/scene/SceneTAG;", "getTraceInfo", "Ljava/util/HashMap;", "", "Lcom/mogo/eagle/core/data/deva/chain/ChainLogParam;", "Lkotlin/collections/HashMap;", "getTraceLogStatus", "", "hideStatusBar", "init", "context", "initAiCollect", "view", "Landroid/view/View;", "initBadCase", "initBiz", "modifyCarInfo", "callBack", "Lkotlin/Function1;", "Lcom/mogo/eagle/core/data/bindingcar/ModifyBindingcarInfo;", "onReceiveBadCaseRecord", "msgBoxBean", "Lcom/mogo/eagle/core/data/msgbox/MsgBoxBean;", "activity", "Landroid/app/Activity;", "countdown", "queryAppUpgrade", "queryContainers", "padSn", "dockerVersion", "refreshTraceInfo", "map", "setTraceLogEnable", "enable", "showFeedbackWindow", "ctx", "showStatusBar", "container", "Landroid/view/ViewGroup;", "startLogCatch", "duration", "logPrefixName", "startMonitor", "stopLogCatch", "stopMonitor", "syncConfig", "updateModuleTAG", "moduleTag", "updateSceneTAG", "sceneTag", "upgradeConfirm", "images", "", "releaseId", "Companion", "mogo-core-function-devatools_debug"}) +public final class DevaToolsProvider implements com.mogo.eagle.core.function.api.devatools.IDevaToolsProvider { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.DevaToolsProvider.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "DevaToolsProvider"; + private android.content.Context mContext; + + public DevaToolsProvider() { + super(); + } + + @java.lang.Override() + public void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void initBiz() { + } + + @java.lang.Override() + public void startLogCatch() { + } + + @java.lang.Override() + public void startLogCatch(int duration, @org.jetbrains.annotations.Nullable() + java.lang.String logPrefixName) { + } + + @java.lang.Override() + public void stopLogCatch(@org.jetbrains.annotations.Nullable() + java.lang.String logPrefixName) { + } + + @java.lang.Override() + public boolean getTraceLogStatus() { + return false; + } + + @java.lang.Override() + public void setTraceLogEnable(boolean enable) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.util.HashMap getTraceInfo() { + return null; + } + + @java.lang.Override() + public void refreshTraceInfo(@org.jetbrains.annotations.NotNull() + java.util.HashMap map) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.util.Map getModuleTAG() { + return null; + } + + @java.lang.Override() + public void updateModuleTAG(@org.jetbrains.annotations.NotNull() + java.util.Map moduleTag) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.util.Map getSceneLogTAG() { + return null; + } + + @java.lang.Override() + public void updateSceneTAG(@org.jetbrains.annotations.NotNull() + java.util.Map sceneTag) { + } + + @java.lang.Override() + public void initBadCase(@org.jetbrains.annotations.NotNull() + android.view.View view) { + } + + @java.lang.Override() + public void initAiCollect(@org.jetbrains.annotations.NotNull() + android.view.View view) { + } + + @java.lang.Override() + public void onReceiveBadCaseRecord(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.msgbox.MsgBoxBean msgBoxBean, @org.jetbrains.annotations.NotNull() + android.app.Activity activity, boolean countdown) { + } + + @java.lang.Override() + public void showFeedbackWindow(@org.jetbrains.annotations.NotNull() + android.content.Context ctx) { + } + + @java.lang.Override() + public void downLoadPackage(@org.jetbrains.annotations.NotNull() + java.lang.String downloadKey, @org.jetbrains.annotations.NotNull() + java.lang.String downloadUrl) { + } + + @java.lang.Override() + public void showStatusBar(@org.jetbrains.annotations.NotNull() + android.content.Context ctx, @org.jetbrains.annotations.NotNull() + android.view.ViewGroup container) { + } + + @java.lang.Override() + public void hideStatusBar() { + } + + @java.lang.Override() + public void startMonitor() { + } + + @java.lang.Override() + public void stopMonitor() { + } + + @java.lang.Override() + public void syncConfig() { + } + + @java.lang.Override() + public void modifyCarInfo(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 callBack) { + } + + @java.lang.Override() + public void getBindingCarInfo(@org.jetbrains.annotations.NotNull() + java.lang.String macAddress, @org.jetbrains.annotations.NotNull() + java.lang.String widevineIDWithMd5) { + } + + @java.lang.Override() + public void upgradeConfirm(@org.jetbrains.annotations.NotNull() + java.util.List images, @org.jetbrains.annotations.NotNull() + java.lang.String padSn, @org.jetbrains.annotations.NotNull() + java.lang.String releaseId) { + } + + @java.lang.Override() + public void queryContainers(@org.jetbrains.annotations.NotNull() + java.lang.String padSn, @org.jetbrains.annotations.NotNull() + java.lang.String dockerVersion) { + } + + @java.lang.Override() + public void queryAppUpgrade() { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/DevaToolsProvider$Companion;", "", "()V", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kapt_metadata new file mode 100644 index 0000000000..db41fd3143 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.java new file mode 100644 index 0000000000..97f1d53b10 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.java @@ -0,0 +1,80 @@ +package com.zhjt.mogo_core_function_devatools.badcase; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000x\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u00c0\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u000e\u0010 \u001a\u00020\u00112\u0006\u0010!\u001a\u00020\u001fJ\u000e\u0010\"\u001a\u00020\u00112\u0006\u0010!\u001a\u00020\u001fJ\u001e\u0010#\u001a\u00020\u00112\u0006\u0010$\u001a\u00020%2\u0006\u0010&\u001a\u00020\'2\u0006\u0010(\u001a\u00020)J\u0018\u0010*\u001a\u00020\u00112\u0006\u0010+\u001a\u00020,2\u0006\u0010-\u001a\u00020.H\u0016J\u000e\u0010/\u001a\u00020\u00112\u0006\u00100\u001a\u000201R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0086T\u00a2\u0006\u0002\n\u0000R\"\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\t0\b8BX\u0082\u000e\u00a2\u0006\u000e\n\u0000\u0012\u0004\b\n\u0010\u0002\u001a\u0004\b\u000b\u0010\fR\u0010\u0010\r\u001a\u0004\u0018\u00010\u000eX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u000f\u001a\n\u0012\u0004\u0012\u00020\u0011\u0018\u00010\u0010X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0012\u001a\u00020\u00138BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0016\u0010\u0017\u001a\u0004\b\u0014\u0010\u0015R\u0010\u0010\u0018\u001a\u0004\u0018\u00010\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0018\u0010\u0019\u001a\u0004\u0018\u00010\u001a8BX\u0082\u000e\u00a2\u0006\b\n\u0000\u001a\u0004\b\u001b\u0010\u001cR\u0016\u0010\u001d\u001a\n\u0012\u0004\u0012\u00020\u001f\u0018\u00010\u001eX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u00062"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/BadCaseManager;", "Landroidx/lifecycle/LifecycleEventObserver;", "()V", "CASE_EXPIRE_DURATION", "", "TAG", "", "channel", "Lkotlinx/coroutines/channels/Channel;", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;", "getChannel$annotations", "getChannel", "()Lkotlinx/coroutines/channels/Channel;", "dismissJob", "Lkotlinx/coroutines/Job;", "hideFloat", "Lkotlin/Function0;", "", "presenter", "Lcom/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter;", "getPresenter", "()Lcom/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter;", "presenter$delegate", "Lkotlin/Lazy;", "record", "scope", "Landroidx/lifecycle/LifecycleCoroutineScope;", "getScope", "()Landroidx/lifecycle/LifecycleCoroutineScope;", "viewHolder", "Ljava/lang/ref/WeakReference;", "Landroid/view/View;", "initAiCollect", "view", "initBadCase", "onReceiveBadCaseRecord", "msgBoxBean", "Lcom/mogo/eagle/core/data/msgbox/MsgBoxBean;", "activity", "Landroid/app/Activity;", "countdown", "", "onStateChanged", "source", "Landroidx/lifecycle/LifecycleOwner;", "event", "Landroidx/lifecycle/Lifecycle$Event;", "showBadCaseConfigWindow", "context", "Landroid/content/Context;", "mogo-core-function-devatools_debug"}) +public final class BadCaseManager implements androidx.lifecycle.LifecycleEventObserver { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.badcase.BadCaseManager INSTANCE = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "BadCase"; + + /** + * 超过此时间,case入口自动消失 + */ + private static final long CASE_EXPIRE_DURATION = 0L; + private static kotlin.jvm.functions.Function0 hideFloat; + @kotlin.jvm.Volatile() + private static volatile com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord record; + @kotlin.jvm.Volatile() + private static volatile java.lang.ref.WeakReference viewHolder; + @kotlin.jvm.Volatile() + private static volatile kotlinx.coroutines.Job dismissJob; + private static kotlinx.coroutines.channels.Channel channel; + private static final kotlin.Lazy presenter$delegate = null; + @kotlin.jvm.Volatile() + private static volatile androidx.lifecycle.LifecycleCoroutineScope scope; + + private BadCaseManager() { + super(); + } + + @kotlin.OptIn(markerClass = {kotlinx.coroutines.ExperimentalCoroutinesApi.class}) + @java.lang.Deprecated() + private static void getChannel$annotations() { + } + + private final kotlinx.coroutines.channels.Channel getChannel() { + return null; + } + + private final com.zhjt.mogo_core_function_devatools.badcase.biz.BadCasePresenter getPresenter() { + return null; + } + + private final androidx.lifecycle.LifecycleCoroutineScope getScope() { + return null; + } + + /** + * 展示BadCase配置页面 + */ + public final void showBadCaseConfigWindow(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + /** + * 主动采集BadCase + */ + public final void initBadCase(@org.jetbrains.annotations.NotNull() + android.view.View view) { + } + + /** + * AI数据采集 + */ + public final void initAiCollect(@org.jetbrains.annotations.NotNull() + android.view.View view) { + } + + public final void onReceiveBadCaseRecord(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.msgbox.MsgBoxBean msgBoxBean, @org.jetbrains.annotations.NotNull() + android.app.Activity activity, boolean countdown) { + } + + @java.lang.Override() + public void onStateChanged(@org.jetbrains.annotations.NotNull() + androidx.lifecycle.LifecycleOwner source, @org.jetbrains.annotations.NotNull() + androidx.lifecycle.Lifecycle.Event event) { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.kapt_metadata new file mode 100644 index 0000000000..a7721f6676 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.java new file mode 100644 index 0000000000..b18bdc9d61 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.java @@ -0,0 +1,13 @@ +package com.zhjt.mogo_core_function_devatools.badcase; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 2, d1 = {"\u0000\f\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u001a\f\u0010\u0000\u001a\u00020\u0001*\u00020\u0002H\u0000\u00a8\u0006\u0003"}, d2 = {"toRecord", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;", "Lrecord_cache/RecordPanelOuterClass$RecordPanel;", "mogo-core-function-devatools_debug"}) +public final class BadCaseManagerKt { + + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord toRecord(@org.jetbrains.annotations.NotNull() + record_cache.RecordPanelOuterClass.RecordPanel $this$toRecord) { + return null; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.kapt_metadata new file mode 100644 index 0000000000..278862cfc5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow.java new file mode 100644 index 0000000000..511bf0142a --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow.java @@ -0,0 +1,107 @@ +package com.zhjt.mogo_core_function_devatools.badcase.biz; + +import java.lang.System; + +/** + * @author XuXinChao + * @description AI数据采集弹窗 + * @since: 2022/7/12 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0088\u0001\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u0006\n\u0002\b\u0004\n\u0002\u0010\u0007\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\t\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\r\u0018\u0000 K2\u00020\u00012\u00020\u00022\u00020\u0003:\u0002JKB\r\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u0006\u00102\u001a\u000203J\b\u00104\u001a\u000203H\u0003J\u0010\u00105\u001a\u0002032\u0006\u00106\u001a\u000207H\u0016J\u0012\u00108\u001a\u0002032\b\u00109\u001a\u0004\u0018\u00010:H\u0016J\u001c\u0010;\u001a\u00020<2\b\u0010=\u001a\u0004\u0018\u00010\u00142\b\u0010>\u001a\u0004\u0018\u00010?H\u0016J\u000e\u0010@\u001a\u0002032\u0006\u0010\u0007\u001a\u00020\bJ@\u0010A\u001a\u0002032\u0006\u0010B\u001a\u00020<2\u0006\u0010C\u001a\u00020<2\u0006\u0010D\u001a\u00020<2\u0006\u0010E\u001a\u00020<2\u0006\u0010F\u001a\u00020<2\u0006\u0010G\u001a\u00020<2\u0006\u0010H\u001a\u00020 recordTypesList; + private com.zhjt.mogo_core_function_devatools.badcase.biz.CaseTopicListDialog caseTopicListDialog; + private java.util.HashMap _$_findViewCache; + + @kotlin.jvm.JvmOverloads() + public BadCaseConfigView(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + super(null); + } + + @kotlin.jvm.JvmOverloads() + public BadCaseConfigView(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.Nullable() + android.util.AttributeSet attrs) { + super(null); + } + + @kotlin.jvm.JvmOverloads() + public BadCaseConfigView(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.Nullable() + android.util.AttributeSet attrs, int defStyleAttr) { + super(null); + } + + private final void initView() { + } + + public final void setClickListener(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.biz.BadCaseConfigView.ClickListener clickListener) { + } + + private final void showCaseTopicListDialog(com.mogo.eagle.core.data.badcase.RecordTypeEntity recordTypeEntity) { + } + + @java.lang.Override() + public void onAutopilotRecordConfig(@org.jetbrains.annotations.NotNull() + mogo.telematics.pad.MessagePad.RecordDataConfig config) { + } + + @java.lang.Override() + protected void onAttachedToWindow() { + } + + @java.lang.Override() + protected void onDetachedFromWindow() { + } + + public void onAutopilotRecordResult(@org.jetbrains.annotations.NotNull() + record_cache.RecordPanelOuterClass.RecordPanel recordPanel) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\bf\u0018\u00002\u00020\u0001J\b\u0010\u0002\u001a\u00020\u0003H&\u00a8\u0006\u0004"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$ClickListener;", "", "onClose", "", "mogo-core-function-devatools_debug"}) + public static abstract interface ClickListener { + + public abstract void onClose(); + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$Companion;", "", "()V", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView.kapt_metadata new file mode 100644 index 0000000000..9eaac8c544 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.java new file mode 100644 index 0000000000..671bfcaa12 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.java @@ -0,0 +1,75 @@ +package com.zhjt.mogo_core_function_devatools.badcase.biz; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000X\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\t\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010 \n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010$\n\u0002\u0010\u000e\n\u0002\b\u0002\b\u0000\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0019\u0010\t\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\fH\u0096@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\rJ\u0011\u0010\u000e\u001a\u00020\u000fH\u0096@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0010J\u0011\u0010\u0011\u001a\u00020\u0012H\u0096@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0010J\u0017\u0010\u0013\u001a\b\u0012\u0004\u0012\u00020\f0\u0014H\u0096@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0010J\u0019\u0010\u0015\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\fH\u0096@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\rJ\u001f\u0010\u0016\u001a\b\u0012\u0004\u0012\u00020\u00170\u00142\u0006\u0010\u0018\u001a\u00020\u0019H\u0096@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u001aJ\u0019\u0010\u001b\u001a\u00020\n2\u0006\u0010\u001c\u001a\u00020\u000fH\u0096@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u001dJ\'\u0010\u001e\u001a\u0004\u0018\u00010\u001f2\u0012\u0010 \u001a\u000e\u0012\u0004\u0012\u00020\"\u0012\u0004\u0012\u00020\"0!H\u0096@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010#R\u001b\u0010\u0003\u001a\u00020\u00048BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006$"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter;", "Lcom/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter;", "()V", "repository", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/Repository;", "getRepository", "()Lcom/zhjt/mogo_core_function_devatools/badcase/repository/Repository;", "repository$delegate", "Lkotlin/Lazy;", "deleteRecord", "", "record", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;", "(Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getLastModified", "", "(Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getTaskId", "", "getUnConsumedRecords", "", "insertRecord", "loadBadCases", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason;", "isDriven", "", "(ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;", "updateLastModified", "timestamp", "(JLkotlin/coroutines/Continuation;)Ljava/lang/Object;", "upload", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult;", "map", "", "", "(Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-core-function-devatools_debug"}) +public final class BadCasePresenter implements com.zhjt.mogo_core_function_devatools.badcase.biz.IBadCasePresenter { + private final kotlin.Lazy repository$delegate = null; + + public BadCasePresenter() { + super(); + } + + private final com.zhjt.mogo_core_function_devatools.badcase.repository.Repository getRepository() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.Object loadBadCases(boolean isDriven, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.Object insertRecord(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord record, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.Object getUnConsumedRecords(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.Object deleteRecord(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord record, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.Object upload(@org.jetbrains.annotations.NotNull() + java.util.Map map, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.Object updateLastModified(long timestamp, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.Object getLastModified(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.Object getTaskId(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.kapt_metadata new file mode 100644 index 0000000000..7a50331451 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.java new file mode 100644 index 0000000000..6e8178436a --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.java @@ -0,0 +1,42 @@ +package com.zhjt.mogo_core_function_devatools.badcase.biz; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000N\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\t\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010 \n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010$\n\u0002\u0010\u000e\n\u0002\b\u0002\b`\u0018\u00002\u00020\u0001J\u0019\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H\u00a6@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0006J\u0011\u0010\u0007\u001a\u00020\bH\u00a6@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\tJ\u0011\u0010\n\u001a\u00020\u000bH\u00a6@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\tJ\u0017\u0010\f\u001a\b\u0012\u0004\u0012\u00020\u00050\rH\u00a6@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\tJ\u0019\u0010\u000e\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H\u00a6@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0006J\u001f\u0010\u000f\u001a\b\u0012\u0004\u0012\u00020\u00100\r2\u0006\u0010\u0011\u001a\u00020\u0012H\u00a6@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0013J\u0019\u0010\u0014\u001a\u00020\u00032\u0006\u0010\u0015\u001a\u00020\bH\u00a6@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0016J\'\u0010\u0017\u001a\u0004\u0018\u00010\u00182\u0012\u0010\u0019\u001a\u000e\u0012\u0004\u0012\u00020\u001b\u0012\u0004\u0012\u00020\u001b0\u001aH\u00a6@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u001c\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\u001d"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter;", "", "deleteRecord", "", "record", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;", "(Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getLastModified", "", "(Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getTaskId", "", "getUnConsumedRecords", "", "insertRecord", "loadBadCases", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason;", "isDriven", "", "(ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;", "updateLastModified", "timestamp", "(JLkotlin/coroutines/Continuation;)Ljava/lang/Object;", "upload", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult;", "map", "", "", "(Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-core-function-devatools_debug"}) +public abstract interface IBadCasePresenter { + + @org.jetbrains.annotations.Nullable() + public abstract java.lang.Object loadBadCases(boolean isDriven, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation); + + @org.jetbrains.annotations.Nullable() + public abstract java.lang.Object updateLastModified(long timestamp, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation); + + @org.jetbrains.annotations.Nullable() + public abstract java.lang.Object getLastModified(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation); + + @org.jetbrains.annotations.Nullable() + public abstract java.lang.Object upload(@org.jetbrains.annotations.NotNull() + java.util.Map map, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation); + + @org.jetbrains.annotations.Nullable() + public abstract java.lang.Object insertRecord(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord record, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation); + + @org.jetbrains.annotations.Nullable() + public abstract java.lang.Object getUnConsumedRecords(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation); + + @org.jetbrains.annotations.Nullable() + public abstract java.lang.Object deleteRecord(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord record, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation); + + @org.jetbrains.annotations.Nullable() + public abstract java.lang.Object getTaskId(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation); +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.kapt_metadata new file mode 100644 index 0000000000..69f4c459d9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.java new file mode 100644 index 0000000000..79a9076a65 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.java @@ -0,0 +1,140 @@ +package com.zhjt.mogo_core_function_devatools.badcase.biz; + +import java.lang.System; + +/** + * @author XuXinChao + * @description BadCase主动录包 + * @since: 2022/7/13 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u00a8\u0001\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u0006\n\u0002\b\u0004\n\u0002\u0010\u0007\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\b\n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0002\b\u0006\u0018\u0000 Y2\u00020\u00012\u00020\u00022\u00020\u0003:\u0002XYB\r\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u0006\u0010@\u001a\u00020AJ\b\u0010B\u001a\u00020AH\u0003J\u0010\u0010C\u001a\u00020A2\u0006\u0010D\u001a\u00020EH\u0016J\u0012\u0010F\u001a\u00020A2\b\u0010G\u001a\u0004\u0018\u00010HH\u0016J\u001c\u0010I\u001a\u00020\n2\b\u0010J\u001a\u0004\u0018\u00010\u001c2\b\u0010K\u001a\u0004\u0018\u00010LH\u0016J\u0010\u0010M\u001a\u00020A2\u0006\u0010N\u001a\u00020\bH\u0002J\u0010\u0010O\u001a\u00020A2\u0006\u0010P\u001a\u00020\nH\u0002J\u000e\u0010Q\u001a\u00020A2\u0006\u0010\u000b\u001a\u00020\fJ\u0010\u0010R\u001a\u00020A2\b\u0010S\u001a\u0004\u0018\u00010TJ\u0012\u0010U\u001a\u00020A2\b\u0010V\u001a\u0004\u0018\u00010\bH\u0002J\b\u0010W\u001a\u00020AH\u0002R\u0010\u0010\u0007\u001a\u0004\u0018\u00010\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\nX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u000b\u001a\u0004\u0018\u00010\fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001c\u0010\r\u001a\u0004\u0018\u00010\u000eX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000f\u0010\u0010\"\u0004\b\u0011\u0010\u0012R\u0012\u0010\u0013\u001a\u0004\u0018\u00010\u0014X\u0082\u000e\u00a2\u0006\u0004\n\u0002\u0010\u0015R\u0012\u0010\u0016\u001a\u0004\u0018\u00010\u0014X\u0082\u000e\u00a2\u0006\u0004\n\u0002\u0010\u0015R\u000e\u0010\u0017\u001a\u00020\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0018\u001a\u00020\u0019X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u001a\u001a\u00020\u0019X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u001b\u001a\u00020\u001cX\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u001d\u001a\u00020\u0019X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u001e\u001a\u00020\u0019X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u001f\u001a\u00020\u0019X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010 \u001a\u00020\u0019X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010!\u001a\u0004\u0018\u00010\"X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010#\u001a\u0004\u0018\u00010$X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001b\u0010%\u001a\u00020&8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b)\u0010*\u001a\u0004\b\'\u0010(R\u000e\u0010+\u001a\u00020,X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010-\u001a\u00020,X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010.\u001a\u00020,X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010/\u001a\u00020,X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u00100\u001a\u00020,X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u00101\u001a\u00020,X\u0082.\u00a2\u0006\u0002\n\u0000R\u0010\u00102\u001a\u0004\u0018\u00010\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u00103\u001a\u0004\u0018\u00010\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u00104\u001a\u000205X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u00106\u001a\u000205X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u00107\u001a\u000205X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u00108\u001a\u000205X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u00109\u001a\u000205X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010:\u001a\u000205X\u0082.\u00a2\u0006\u0002\n\u0000R\u0012\u0010;\u001a\u00060\u001a\u00020?X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006Z"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow;", "Landroid/view/View$OnTouchListener;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoAutopilotRecordListener;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoChassisLocationWGS84Listener;", "activity", "Landroid/app/Activity;", "(Landroid/app/Activity;)V", "audioFileName", "", "audioStatus", "", "clickListener", "Lcom/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$ClickListener;", "countDownTimer", "Landroid/os/CountDownTimer;", "getCountDownTimer", "()Landroid/os/CountDownTimer;", "setCountDownTimer", "(Landroid/os/CountDownTimer;)V", "latitude", "", "Ljava/lang/Double;", "longitude", "mActivity", "mDownInScreenX", "", "mDownInScreenY", "mFloatLayout", "Landroid/view/View;", "mInScreenX", "mInScreenY", "mInViewX", "mInViewY", "mWindowManager", "Landroid/view/WindowManager;", "mWindowParams", "Landroid/view/WindowManager$LayoutParams;", "presenter", "Lcom/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter;", "getPresenter", "()Lcom/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter;", "presenter$delegate", "Lkotlin/Lazy;", "rbFive", "Landroid/widget/CheckBox;", "rbFour", "rbOne", "rbSix", "rbThree", "rbTwo", "recordFileName", "recordKey", "tvAudioCountDown", "Landroid/widget/TextView;", "tvInitiativeCancel", "tvInitiativeIdentity", "tvInitiativeNum", "tvInitiativeReport", "tvInitiativeTime", "uploadReason", "Ljava/lang/StringBuilder;", "Lkotlin/text/StringBuilder;", "viewAudioButton", "Landroid/widget/ImageView;", "hideFloatWindow", "", "initFloatWindow", "onAutopilotRecordResult", "recordPanel", "Lrecord_cache/RecordPanelOuterClass$RecordPanel;", "onChassisLocationWGS84", "gnssInfo", "Lmogo/telematics/pad/MessagePad$GnssInfo;", "onTouch", "v", "motionEvent", "Landroid/view/MotionEvent;", "removeUploadListener", "filePath", "setAudio", "status", "setClickListener", "showFloatWindow", "recordCaseEntity", "Lcom/mogo/eagle/core/data/badcase/RecordCaseEntity;", "upload", "downloadUrl", "uploadAudio", "ClickListener", "Companion", "mogo-core-function-devatools_debug"}) +public final class InitiativeBadCaseWindow implements android.view.View.OnTouchListener, com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotRecordListener, com.mogo.eagle.core.function.api.autopilot.IMoGoChassisLocationWGS84Listener { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.badcase.biz.InitiativeBadCaseWindow.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "InitiativeBadCaseWindow"; + private android.app.Activity mActivity; + private android.view.WindowManager.LayoutParams mWindowParams; + private android.view.WindowManager mWindowManager; + private android.view.View mFloatLayout; + private android.widget.TextView tvInitiativeNum; + private android.widget.TextView tvInitiativeTime; + private android.widget.TextView tvInitiativeIdentity; + private android.widget.CheckBox rbOne; + private android.widget.CheckBox rbTwo; + private android.widget.CheckBox rbThree; + private android.widget.CheckBox rbFour; + private android.widget.CheckBox rbFive; + private android.widget.CheckBox rbSix; + private android.widget.ImageView viewAudioButton; + private android.widget.TextView tvAudioCountDown; + private android.widget.TextView tvInitiativeReport; + private android.widget.TextView tvInitiativeCancel; + private boolean audioStatus = false; + private java.lang.String audioFileName; + private java.lang.StringBuilder uploadReason; + @kotlin.jvm.Volatile() + private volatile java.lang.String recordKey; + @kotlin.jvm.Volatile() + private volatile java.lang.String recordFileName; + private java.lang.Double longitude; + private java.lang.Double latitude; + private float mInViewX = 0.0F; + private float mInViewY = 0.0F; + private float mDownInScreenX = 0.0F; + private float mDownInScreenY = 0.0F; + private float mInScreenX = 0.0F; + private float mInScreenY = 0.0F; + private com.zhjt.mogo_core_function_devatools.badcase.biz.InitiativeBadCaseWindow.ClickListener clickListener; + private final kotlin.Lazy presenter$delegate = null; + @org.jetbrains.annotations.Nullable() + private android.os.CountDownTimer countDownTimer; + + public InitiativeBadCaseWindow(@org.jetbrains.annotations.NotNull() + android.app.Activity activity) { + super(); + } + + private final com.zhjt.mogo_core_function_devatools.badcase.biz.BadCasePresenter getPresenter() { + return null; + } + + @android.annotation.SuppressLint(value = {"SetTextI18n"}) + private final void initFloatWindow() { + } + + @org.jetbrains.annotations.Nullable() + public final android.os.CountDownTimer getCountDownTimer() { + return null; + } + + public final void setCountDownTimer(@org.jetbrains.annotations.Nullable() + android.os.CountDownTimer p0) { + } + + private final void setAudio(boolean status) { + } + + private final void uploadAudio() { + } + + /** + * 将语音文件上传Cos监听移除 + * @param filePath 文件路径 + */ + private final void removeUploadListener(java.lang.String filePath) { + } + + /** + * 将记录上传到服务器 + * @param downloadUrl 语音文件下载地址 + */ + private final void upload(java.lang.String downloadUrl) { + } + + @java.lang.Override() + public boolean onTouch(@org.jetbrains.annotations.Nullable() + android.view.View v, @org.jetbrains.annotations.Nullable() + android.view.MotionEvent motionEvent) { + return false; + } + + public final void showFloatWindow(@org.jetbrains.annotations.Nullable() + com.mogo.eagle.core.data.badcase.RecordCaseEntity recordCaseEntity) { + } + + public final void hideFloatWindow() { + } + + @java.lang.Override() + public void onAutopilotRecordResult(@org.jetbrains.annotations.NotNull() + record_cache.RecordPanelOuterClass.RecordPanel recordPanel) { + } + + public final void setClickListener(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.biz.InitiativeBadCaseWindow.ClickListener clickListener) { + } + + @java.lang.Override() + public void onChassisLocationWGS84(@org.jetbrains.annotations.Nullable() + mogo.telematics.pad.MessagePad.GnssInfo gnssInfo) { + } + + public void onAutopilotRecordConfig(@org.jetbrains.annotations.NotNull() + mogo.telematics.pad.MessagePad.RecordDataConfig config) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\bf\u0018\u00002\u00020\u0001J\b\u0010\u0002\u001a\u00020\u0003H&\u00a8\u0006\u0004"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$ClickListener;", "", "closeWindow", "", "mogo-core-function-devatools_debug"}) + public static abstract interface ClickListener { + + public abstract void closeWindow(); + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$Companion;", "", "()V", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.kapt_metadata new file mode 100644 index 0000000000..063796d509 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow.java new file mode 100644 index 0000000000..c0f8539ee1 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow.java @@ -0,0 +1,133 @@ +package com.zhjt.mogo_core_function_devatools.badcase.biz; + +import java.lang.System; + +/** + * @author XuXinChao + * @description BadCase被动录包 + * @since: 2022/7/17 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u009a\u0001\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0006\n\u0002\b\u0004\n\u0002\u0010\u0007\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u000e\u0018\u0000 U2\u00020\u00012\u00020\u00022\u00020\u0003:\u0002TUB\r\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u0006\u0010;\u001a\u00020\u001a\u00020<2\b\u0010?\u001a\u0004\u0018\u00010@H\u0016J\u001a\u0010A\u001a\u00020<2\b\u0010B\u001a\u0004\u0018\u00010C2\u0006\u0010D\u001a\u00020\nH\u0016J\u001c\u0010E\u001a\u00020\n2\b\u0010F\u001a\u0004\u0018\u00010 2\b\u0010G\u001a\u0004\u0018\u00010HH\u0016J\u0010\u0010I\u001a\u00020<2\u0006\u0010J\u001a\u00020\bH\u0002J\u0010\u0010K\u001a\u00020<2\u0006\u0010L\u001a\u00020\nH\u0002J\u000e\u0010M\u001a\u00020<2\u0006\u0010\r\u001a\u00020\u000eJ\u000e\u0010N\u001a\u00020<2\u0006\u0010O\u001a\u00020\fJ\u0006\u0010P\u001a\u00020 { + private java.util.List data; + private com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.CaseListAdapter.CaseClickListener caseClickListener; + + public CaseListAdapter() { + super(); + } + + public final void setData(@org.jetbrains.annotations.Nullable() + java.util.List data) { + } + + public final void setListener(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.CaseListAdapter.CaseClickListener listener) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.CaseListAdapter.CaseListHolder onCreateViewHolder(@org.jetbrains.annotations.NotNull() + android.view.ViewGroup parent, int viewType) { + return null; + } + + @java.lang.Override() + public void onBindViewHolder(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.CaseListAdapter.CaseListHolder holder, int position) { + } + + @java.lang.Override() + public int getItemCount() { + return 0; + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004R\u001a\u0010\u0005\u001a\u00020\u0006X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0007\u0010\b\"\u0004\b\t\u0010\n\u00a8\u0006\u000b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseListHolder;", "Landroidx/recyclerview/widget/RecyclerView$ViewHolder;", "itemView", "Landroid/view/View;", "(Landroid/view/View;)V", "caseName", "Landroid/widget/TextView;", "getCaseName", "()Landroid/widget/TextView;", "setCaseName", "(Landroid/widget/TextView;)V", "mogo-core-function-devatools_debug"}) + public static final class CaseListHolder extends androidx.recyclerview.widget.RecyclerView.ViewHolder { + @org.jetbrains.annotations.NotNull() + private android.widget.TextView caseName; + + public CaseListHolder(@org.jetbrains.annotations.NotNull() + android.view.View itemView) { + super(null); + } + + @org.jetbrains.annotations.NotNull() + public final android.widget.TextView getCaseName() { + return null; + } + + public final void setCaseName(@org.jetbrains.annotations.NotNull() + android.widget.TextView p0) { + } + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\bf\u0018\u00002\u00020\u0001J\u0010\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H&\u00a8\u0006\u0006"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseClickListener;", "", "onClick", "", "recordCaseEntity", "Lcom/mogo/eagle/core/data/badcase/RecordCaseEntity;", "mogo-core-function-devatools_debug"}) + public static abstract interface CaseClickListener { + + public abstract void onClick(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.badcase.RecordCaseEntity recordCaseEntity); + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter.kapt_metadata new file mode 100644 index 0000000000..618b76f53b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.java new file mode 100644 index 0000000000..6624c946bb --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.java @@ -0,0 +1,70 @@ +package com.zhjt.mogo_core_function_devatools.badcase.biz.adapter; + +import java.lang.System; + +/** + * @author XuXinChao + * @description 录制模板清单列表适配器 + * @since: 2022/10/19 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00006\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0007\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001:\u0002\u0016\u0017B\u0005\u00a2\u0006\u0002\u0010\u0003J\b\u0010\t\u001a\u00020\nH\u0016J\u0018\u0010\u000b\u001a\u00020\f2\u0006\u0010\r\u001a\u00020\u00022\u0006\u0010\u000e\u001a\u00020\nH\u0016J\u0018\u0010\u000f\u001a\u00020\u00022\u0006\u0010\u0010\u001a\u00020\u00112\u0006\u0010\u0012\u001a\u00020\nH\u0016J\u0016\u0010\u0013\u001a\u00020\f2\u000e\u0010\u0006\u001a\n\u0012\u0004\u0012\u00020\b\u0018\u00010\u0007J\u000e\u0010\u0014\u001a\u00020\f2\u0006\u0010\u0015\u001a\u00020\u0005R\u0010\u0010\u0004\u001a\u0004\u0018\u00010\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u0006\u001a\n\u0012\u0004\u0012\u00020\b\u0018\u00010\u0007X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0018"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter;", "Landroidx/recyclerview/widget/RecyclerView$Adapter;", "Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$RecordTemplateHolder;", "()V", "clickTemplateListener", "Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$ClickTemplateListener;", "data", "", "Lcom/mogo/eagle/core/data/badcase/RecordTypeEntity;", "getItemCount", "", "onBindViewHolder", "", "holder", "position", "onCreateViewHolder", "parent", "Landroid/view/ViewGroup;", "viewType", "setData", "setListener", "listener", "ClickTemplateListener", "RecordTemplateHolder", "mogo-core-function-devatools_debug"}) +public final class RecordTemplateAdapter extends androidx.recyclerview.widget.RecyclerView.Adapter { + private java.util.List data; + private com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.RecordTemplateAdapter.ClickTemplateListener clickTemplateListener; + + public RecordTemplateAdapter() { + super(); + } + + public final void setData(@org.jetbrains.annotations.Nullable() + java.util.List data) { + } + + public final void setListener(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.RecordTemplateAdapter.ClickTemplateListener listener) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.RecordTemplateAdapter.RecordTemplateHolder onCreateViewHolder(@org.jetbrains.annotations.NotNull() + android.view.ViewGroup parent, int viewType) { + return null; + } + + @java.lang.Override() + public void onBindViewHolder(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.RecordTemplateAdapter.RecordTemplateHolder holder, int position) { + } + + @java.lang.Override() + public int getItemCount() { + return 0; + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004R\u001a\u0010\u0005\u001a\u00020\u0006X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0007\u0010\b\"\u0004\b\t\u0010\n\u00a8\u0006\u000b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$RecordTemplateHolder;", "Landroidx/recyclerview/widget/RecyclerView$ViewHolder;", "itemView", "Landroid/view/View;", "(Landroid/view/View;)V", "caseName", "Landroid/widget/TextView;", "getCaseName", "()Landroid/widget/TextView;", "setCaseName", "(Landroid/widget/TextView;)V", "mogo-core-function-devatools_debug"}) + public static final class RecordTemplateHolder extends androidx.recyclerview.widget.RecyclerView.ViewHolder { + @org.jetbrains.annotations.NotNull() + private android.widget.TextView caseName; + + public RecordTemplateHolder(@org.jetbrains.annotations.NotNull() + android.view.View itemView) { + super(null); + } + + @org.jetbrains.annotations.NotNull() + public final android.widget.TextView getCaseName() { + return null; + } + + public final void setCaseName(@org.jetbrains.annotations.NotNull() + android.widget.TextView p0) { + } + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\bf\u0018\u00002\u00020\u0001J\u0010\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H&\u00a8\u0006\u0006"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$ClickTemplateListener;", "", "onClick", "", "recordTypeEntity", "Lcom/mogo/eagle/core/data/badcase/RecordTypeEntity;", "mogo-core-function-devatools_debug"}) + public static abstract interface ClickTemplateListener { + + public abstract void onClick(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.badcase.RecordTypeEntity recordTypeEntity); + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.kapt_metadata new file mode 100644 index 0000000000..141d9d3276 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.java new file mode 100644 index 0000000000..e93406501c --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.java @@ -0,0 +1,73 @@ +package com.zhjt.mogo_core_function_devatools.badcase.biz.adapter; + +import java.lang.System; + +/** + * @author XuXinChao + * @description Topic列表适配器 + * @since: 2022/10/19 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00006\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010!\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\b\n\u0002\u0018\u0002\n\u0002\b\u0007\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001:\u0002\u001a\u001bB\u0005\u00a2\u0006\u0002\u0010\u0003J\b\u0010\t\u001a\u00020\nH\u0016J \u0010\u000b\u001a\u00020\f2\u0006\u0010\r\u001a\u00020\u00062\u0006\u0010\u000e\u001a\u00020\n2\u0006\u0010\u000f\u001a\u00020\nH\u0002J\u0018\u0010\u0010\u001a\u00020\f2\u0006\u0010\u0011\u001a\u00020\u00022\u0006\u0010\u0012\u001a\u00020\nH\u0016J\u0018\u0010\u0013\u001a\u00020\u00022\u0006\u0010\u0014\u001a\u00020\u00152\u0006\u0010\u0016\u001a\u00020\nH\u0016J\u0016\u0010\u0017\u001a\u00020\f2\u000e\u0010\u0004\u001a\n\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0005J\u000e\u0010\u0018\u001a\u00020\f2\u0006\u0010\u0019\u001a\u00020\bR\u0016\u0010\u0004\u001a\n\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0007\u001a\u0004\u0018\u00010\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001c"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter;", "Landroidx/recyclerview/widget/RecyclerView$Adapter;", "Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicListHolder;", "()V", "data", "", "Lcom/mogo/eagle/core/data/badcase/TopicEntity;", "topicClickListener", "Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicClickListener;", "getItemCount", "", "moveItem", "", "topicEntity", "removePos", "insertedPos", "onBindViewHolder", "holder", "position", "onCreateViewHolder", "parent", "Landroid/view/ViewGroup;", "viewType", "setData", "setListener", "listener", "TopicClickListener", "TopicListHolder", "mogo-core-function-devatools_debug"}) +public final class TopicListAdapter extends androidx.recyclerview.widget.RecyclerView.Adapter { + private java.util.List data; + private com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.TopicListAdapter.TopicClickListener topicClickListener; + + public TopicListAdapter() { + super(); + } + + public final void setData(@org.jetbrains.annotations.Nullable() + java.util.List data) { + } + + public final void setListener(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.TopicListAdapter.TopicClickListener listener) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.TopicListAdapter.TopicListHolder onCreateViewHolder(@org.jetbrains.annotations.NotNull() + android.view.ViewGroup parent, int viewType) { + return null; + } + + @java.lang.Override() + public void onBindViewHolder(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.biz.adapter.TopicListAdapter.TopicListHolder holder, int position) { + } + + private final void moveItem(com.mogo.eagle.core.data.badcase.TopicEntity topicEntity, int removePos, int insertedPos) { + } + + @java.lang.Override() + public int getItemCount() { + return 0; + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004R\u001a\u0010\u0005\u001a\u00020\u0006X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0007\u0010\b\"\u0004\b\t\u0010\n\u00a8\u0006\u000b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicListHolder;", "Landroidx/recyclerview/widget/RecyclerView$ViewHolder;", "itemView", "Landroid/view/View;", "(Landroid/view/View;)V", "topic_check_box", "Landroid/widget/CheckBox;", "getTopic_check_box", "()Landroid/widget/CheckBox;", "setTopic_check_box", "(Landroid/widget/CheckBox;)V", "mogo-core-function-devatools_debug"}) + public static final class TopicListHolder extends androidx.recyclerview.widget.RecyclerView.ViewHolder { + @org.jetbrains.annotations.NotNull() + private android.widget.CheckBox topic_check_box; + + public TopicListHolder(@org.jetbrains.annotations.NotNull() + android.view.View itemView) { + super(null); + } + + @org.jetbrains.annotations.NotNull() + public final android.widget.CheckBox getTopic_check_box() { + return null; + } + + public final void setTopic_check_box(@org.jetbrains.annotations.NotNull() + android.widget.CheckBox p0) { + } + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u000b\n\u0000\bf\u0018\u00002\u00020\u0001J\u0018\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u00052\u0006\u0010\u0006\u001a\u00020\u0007H&\u00a8\u0006\b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicClickListener;", "", "onClick", "", "topicName", "", "clicked", "", "mogo-core-function-devatools_debug"}) + public static abstract interface TopicClickListener { + + public abstract void onClick(@org.jetbrains.annotations.NotNull() + java.lang.String topicName, boolean clicked); + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.kapt_metadata new file mode 100644 index 0000000000..4286ee370b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.java new file mode 100644 index 0000000000..2101f551b2 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.java @@ -0,0 +1,40 @@ +package com.zhjt.mogo_core_function_devatools.badcase.consts; + +import java.lang.System; + +/** + * @author XuXinChao + * @description 录包配置参数 + * @since: 2022/7/11 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u000e\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010\t\n\u0002\b\u0004\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u0012\u0010\u0003\u001a\u00020\u00048\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\"\u0010\u0005\u001a\u0012\u0012\u0004\u0012\u00020\u00070\u0006j\b\u0012\u0004\u0012\u00020\u0007`\b8\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\u0014\u0010\t\u001a\u0004\u0018\u00010\u00078\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\u0012\u0010\n\u001a\u00020\u00078\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\u0012\u0010\u000b\u001a\u00020\u00048\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\"\u0010\f\u001a\u0012\u0012\u0004\u0012\u00020\r0\u0006j\b\u0012\u0004\u0012\u00020\r`\b8\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\u0012\u0010\u000e\u001a\u00020\u00048\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\u0012\u0010\u000f\u001a\u00020\u00048\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\u0012\u0010\u0010\u001a\u00020\u00048\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0011"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig;", "", "()V", "backDuration", "", "customTopicList", "Ljava/util/ArrayList;", "", "Lkotlin/collections/ArrayList;", "dockerVersion", "identity", "previousDuration", "recordKeyList", "", "totalDuration", "type", "windowNum", "mogo-core-function-devatools_debug"}) +public final class BadCaseConfig { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.badcase.consts.BadCaseConfig INSTANCE = null; + @org.jetbrains.annotations.NotNull() + @kotlin.jvm.JvmField() + public static java.lang.String identity = "\u5b89\u5168\u5458"; + @kotlin.jvm.JvmField() + public static int previousDuration = 12; + @kotlin.jvm.JvmField() + public static int backDuration = 8; + @kotlin.jvm.JvmField() + public static int totalDuration = 20; + @kotlin.jvm.JvmField() + public static int type = 1; + @kotlin.jvm.JvmField() + public static int windowNum = 1; + @org.jetbrains.annotations.Nullable() + @kotlin.jvm.JvmField() + public static java.lang.String dockerVersion; + @org.jetbrains.annotations.NotNull() + @kotlin.jvm.JvmField() + public static java.util.ArrayList recordKeyList; + @org.jetbrains.annotations.NotNull() + @kotlin.jvm.JvmField() + public static java.util.ArrayList customTopicList; + + private BadCaseConfig() { + super(); + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.kapt_metadata new file mode 100644 index 0000000000..9b9c709469 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.java new file mode 100644 index 0000000000..ad52e97f47 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.java @@ -0,0 +1,20 @@ +package com.zhjt.mogo_core_function_devatools.badcase.consts; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0003\b\u00c0\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0006\u001a\u00020\u0004R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0007"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost;", "", "()V", "HOST_DEV", "", "HOST_RELEASE", "getHost", "mogo-core-function-devatools_debug"}) +public final class BadCaseHost { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.badcase.consts.BadCaseHost INSTANCE = null; + private static final java.lang.String HOST_DEV = "http://dzt-test.zhidaozhixing.com/"; + private static final java.lang.String HOST_RELEASE = "http://dzt.zhidaozhixing.com/"; + + private BadCaseHost() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getHost() { + return null; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.kapt_metadata new file mode 100644 index 0000000000..f38c281d94 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.java new file mode 100644 index 0000000000..decb6938b1 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.java @@ -0,0 +1,81 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010 \n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0010\b\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010$\n\u0002\u0010\u000e\n\u0002\b\u0005\b\u0000\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0019\u0010\u0013\u001a\u00020\u00142\u0006\u0010\u0015\u001a\u00020\u0016H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0017J\u0019\u0010\u0018\u001a\n\u0012\u0004\u0012\u00020\u0016\u0018\u00010\u0019H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u001aJ\u0016\u0010\u001b\u001a\b\u0012\u0004\u0012\u00020\u001c0\u00192\u0006\u0010\u001d\u001a\u00020\u001eH\u0002J\u0011\u0010\u001f\u001a\u00020 H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u001aJ\u0011\u0010!\u001a\u00020\"H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u001aJ\u0019\u0010#\u001a\u00020\u00142\u0006\u0010\u0015\u001a\u00020\u0016H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0017J\u001f\u0010$\u001a\b\u0012\u0004\u0012\u00020\u001c0\u00192\u0006\u0010\u001d\u001a\u00020\u001eH\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010%J\'\u0010&\u001a\u0004\u0018\u00010\'2\u0012\u0010(\u001a\u000e\u0012\u0004\u0012\u00020*\u0012\u0004\u0012\u00020*0)H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010+J\u0019\u0010,\u001a\u00020\u00142\u0006\u0010-\u001a\u00020 H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010.R\u001b\u0010\u0003\u001a\u00020\u00048BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006R\u001b\u0010\t\u001a\u00020\n8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\r\u0010\b\u001a\u0004\b\u000b\u0010\fR\u001b\u0010\u000e\u001a\u00020\u000f8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0012\u0010\b\u001a\u0004\b\u0010\u0010\u0011\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006/"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/Repository;", "", "()V", "db", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel;", "getDb", "()Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel;", "db$delegate", "Lkotlin/Lazy;", "net", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel;", "getNet", "()Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel;", "net$delegate", "store", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore;", "getStore", "()Lcom/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore;", "store$delegate", "deleteRecord", "", "record", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;", "(Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getAllUnConsumedRecord", "", "(Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getBuildIn", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason;", "isDriven", "", "getLastModified", "", "getTaskId", "", "insert", "loadBadCases", "(ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;", "upload", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult;", "map", "", "", "(Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "uploadLastModified", "timestamp", "(JLkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-core-function-devatools_debug"}) +public final class Repository { + private final kotlin.Lazy net$delegate = null; + private final kotlin.Lazy db$delegate = null; + private final kotlin.Lazy store$delegate = null; + + public Repository() { + super(); + } + + private final com.zhjt.mogo_core_function_devatools.badcase.repository.net.BadCaseNetModel getNet() { + return null; + } + + private final com.zhjt.mogo_core_function_devatools.badcase.repository.db.BadCaseDbModel getDb() { + return null; + } + + private final com.zhjt.mogo_core_function_devatools.badcase.repository.store.BadCaseStore getStore() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object loadBadCases(boolean isDriven, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object uploadLastModified(long timestamp, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object getLastModified(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + private final java.util.List getBuildIn(boolean isDriven) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object upload(@org.jetbrains.annotations.NotNull() + java.util.Map map, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object insert(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord record, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object deleteRecord(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord record, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object getAllUnConsumedRecord(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object getTaskId(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.kapt_metadata new file mode 100644 index 0000000000..e5117b3b6c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.java new file mode 100644 index 0000000000..a6551a6212 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.java @@ -0,0 +1,15 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.db; + +import java.lang.System; + +@androidx.room.Database(entities = {com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord.class}, version = 1, exportSchema = false) +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b!\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H&\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb;", "Landroidx/room/RoomDatabase;", "()V", "dao", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao;", "mogo-core-function-devatools_debug"}) +public abstract class BadCaseDb extends androidx.room.RoomDatabase { + + public BadCaseDb() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public abstract com.zhjt.mogo_core_function_devatools.badcase.repository.db.dao.IBadCaseRecordDao dao(); +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.kapt_metadata new file mode 100644 index 0000000000..7433430194 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.java new file mode 100644 index 0000000000..bca49625a4 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.java @@ -0,0 +1,16 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.db; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0000\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0003\u001a\u00020\u0004\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel;", "", "()V", "dao", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao;", "mogo-core-function-devatools_debug"}) +public final class BadCaseDbModel { + + public BadCaseDbModel() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.badcase.repository.db.dao.IBadCaseRecordDao dao() { + return null; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.kapt_metadata new file mode 100644 index 0000000000..c3b0bc6754 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.java new file mode 100644 index 0000000000..2edda19505 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.java @@ -0,0 +1,27 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.db.dao; + +import java.lang.System; + +@androidx.room.Dao() +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010 \n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\ba\u0018\u00002\u00020\u0001J\u0019\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0006J\u0019\u0010\u0007\u001a\n\u0012\u0004\u0012\u00020\u0005\u0018\u00010\bH\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\tJ\u0019\u0010\n\u001a\u00020\u000b2\u0006\u0010\u0004\u001a\u00020\u0005H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0006\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\f"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao;", "", "deleteRecord", "", "record", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;", "(Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getAllUnConsumedRecords", "", "(Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "insertRecord", "", "mogo-core-function-devatools_debug"}) +public abstract interface IBadCaseRecordDao { + + @org.jetbrains.annotations.Nullable() + @androidx.room.Insert(onConflict = androidx.room.OnConflictStrategy.REPLACE) + @androidx.room.Transaction() + public abstract java.lang.Object insertRecord(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord record, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation); + + @org.jetbrains.annotations.Nullable() + @androidx.room.Delete() + @androidx.room.Transaction() + public abstract java.lang.Object deleteRecord(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity.AutoPilotRecord record, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation); + + @org.jetbrains.annotations.Nullable() + @androidx.room.Query(value = "SELECT * FROM record ORDER BY timestamp ASC") + public abstract java.lang.Object getAllUnConsumedRecords(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation); +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.kapt_metadata new file mode 100644 index 0000000000..bb376da3f3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.java new file mode 100644 index 0000000000..163d81e2f4 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.java @@ -0,0 +1,178 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.db.entity; + +import java.lang.System; + +@androidx.room.Entity(tableName = "record") +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00004\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0005\n\u0002\u0010\t\n\u0002\b\u0005\n\u0002\u0010\u0006\n\u0002\b\u0005\n\u0002\u0010\u000e\n\u0002\b\u0005\n\u0002\u0010\b\n\u0002\b\u001c\b\u0001\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0006\u00106\u001a\u00020\nJ\b\u00107\u001a\u00020\u0016H\u0016R\u001a\u0010\u0003\u001a\u00020\u0004X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\bR\u001e\u0010\t\u001a\u00020\n8\u0006@\u0006X\u0087\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000b\u0010\f\"\u0004\b\r\u0010\u000eR\u001a\u0010\u000f\u001a\u00020\u0010X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0011\u0010\u0012\"\u0004\b\u0013\u0010\u0014R \u0010\u0015\u001a\u0004\u0018\u00010\u00168\u0006@\u0006X\u0087\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0017\u0010\u0018\"\u0004\b\u0019\u0010\u001aR\u001a\u0010\u001b\u001a\u00020\u001cX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001d\u0010\u001e\"\u0004\b\u001f\u0010 R\u001c\u0010!\u001a\u0004\u0018\u00010\u0016X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\"\u0010\u0018\"\u0004\b#\u0010\u001aR\u001c\u0010$\u001a\u0004\u0018\u00010\u0016X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b%\u0010\u0018\"\u0004\b&\u0010\u001aR\u001a\u0010\'\u001a\u00020\u001cX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b(\u0010\u001e\"\u0004\b)\u0010 R\u001e\u0010*\u001a\u00020\u00168\u0006@\u0006X\u0087\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b+\u0010\u0018\"\u0004\b,\u0010\u001aR\u001e\u0010-\u001a\u0004\u0018\u00010\nX\u0086\u000e\u00a2\u0006\u0010\n\u0002\u00102\u001a\u0004\b.\u0010/\"\u0004\b0\u00101R\u001a\u00103\u001a\u00020\u001cX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b4\u0010\u001e\"\u0004\b5\u0010 \u00a8\u00068"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord;", "", "()V", "consumed", "", "getConsumed", "()Z", "setConsumed", "(Z)V", "diskFree", "", "getDiskFree", "()J", "setDiskFree", "(J)V", "duration", "", "getDuration", "()D", "setDuration", "(D)V", "fileName", "", "getFileName", "()Ljava/lang/String;", "setFileName", "(Ljava/lang/String;)V", "id", "", "getId", "()I", "setId", "(I)V", "key", "getKey", "setKey", "note", "getNote", "setNote", "stat", "getStat", "setStat", "timestamp", "getTimestamp", "setTimestamp", "total", "getTotal", "()Ljava/lang/Long;", "setTotal", "(Ljava/lang/Long;)V", "Ljava/lang/Long;", "type", "getType", "setType", "toLongTime", "toString", "mogo-core-function-devatools_debug"}) +public final class AutoPilotRecord { + + /** + * 磁盘可用空间(M) + */ + @androidx.room.ColumnInfo(name = "disk_free") + private long diskFree = 0L; + + /** + * 采集时长 + */ + private double duration = 0.0; + + /** + * 保存的文件名 + */ + @org.jetbrains.annotations.Nullable() + @androidx.room.ColumnInfo(name = "file_name") + private java.lang.String fileName = ""; + + /** + * 其他信息,包含错误信息等 + */ + @org.jetbrains.annotations.Nullable() + private java.lang.String note = ""; + + /** + * 域控制器定义的bag key + */ + @org.jetbrains.annotations.Nullable() + private java.lang.String key = ""; + + /** + * 采集状态: + * 100 - 采集成功,自动结束 + * 101 - 采集成功,收到结束指令 + * 200 - 采集失败 + * 201 - 采集中 + * 300 - 开始采集 + */ + private int stat = 0; + + /** + * 任务类型:1-badcase采集任务,2-地图数据采集任务 + */ + private int type = 0; + + /** + * 任务ID + */ + private int id = 0; + + /** + * 时间戳,格式:YYYY-MM-DD-hh-mm-ss + */ + @org.jetbrains.annotations.NotNull() + @androidx.room.PrimaryKey() + private java.lang.String timestamp; + + /** + * 此次采集数据总大小(M) + */ + @org.jetbrains.annotations.Nullable() + private java.lang.Long total = 0L; + + /** + * 记录此条数据是否已消费 + */ + @kotlin.jvm.Volatile() + private volatile boolean consumed = false; + + public AutoPilotRecord() { + super(); + } + + public final long getDiskFree() { + return 0L; + } + + public final void setDiskFree(long p0) { + } + + public final double getDuration() { + return 0.0; + } + + public final void setDuration(double p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getFileName() { + return null; + } + + public final void setFileName(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getNote() { + return null; + } + + public final void setNote(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getKey() { + return null; + } + + public final void setKey(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + public final int getStat() { + return 0; + } + + public final void setStat(int p0) { + } + + public final int getType() { + return 0; + } + + public final void setType(int p0) { + } + + public final int getId() { + return 0; + } + + public final void setId(int p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getTimestamp() { + return null; + } + + public final void setTimestamp(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Long getTotal() { + return null; + } + + public final void setTotal(@org.jetbrains.annotations.Nullable() + java.lang.Long p0) { + } + + public final boolean getConsumed() { + return false; + } + + public final void setConsumed(boolean p0) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + public final long toLongTime() { + return 0L; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.kapt_metadata new file mode 100644 index 0000000000..ee31e982c1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.java new file mode 100644 index 0000000000..52bb8f1364 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.java @@ -0,0 +1,26 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.net; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00008\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010!\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010$\n\u0002\b\u0002\b\u0000\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J1\u0010\u0003\u001a\u00020\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u00062\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\t0\b2\u0006\u0010\n\u001a\u00020\u000bH\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\fJ\'\u0010\r\u001a\u0004\u0018\u00010\u000e2\u0012\u0010\u000f\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u00060\u0010H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0011\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\u0012"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel;", "", "()V", "get", "", "channel", "", "result", "", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason;", "pageNo", "", "(Ljava/lang/String;Ljava/util/List;ILkotlin/coroutines/Continuation;)Ljava/lang/Object;", "upload", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult;", "map", "", "(Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-core-function-devatools_debug"}) +public final class BadCaseNetModel { + + public BadCaseNetModel() { + super(); + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object get(@org.jetbrains.annotations.Nullable() + java.lang.String channel, @org.jetbrains.annotations.NotNull() + java.util.List result, int pageNo, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object upload(@org.jetbrains.annotations.NotNull() + java.util.Map map, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.kapt_metadata new file mode 100644 index 0000000000..6858e3da2f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.java new file mode 100644 index 0000000000..1e938ada66 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.java @@ -0,0 +1,23 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.net.api; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010$\n\u0002\b\u0002\b`\u0018\u00002\u00020\u0001J+\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u00032\b\b\u0001\u0010\u0005\u001a\u00020\u00062\b\b\u0001\u0010\u0007\u001a\u00020\bH\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\tJ-\u0010\n\u001a\b\u0012\u0004\u0012\u00020\u000b0\u00032\u0014\b\u0001\u0010\f\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u00060\rH\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u000e\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\u000f"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi;", "", "get", "Lretrofit2/Response;", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse;", "channel", "", "pageNo", "", "(Ljava/lang/String;ILkotlin/coroutines/Continuation;)Ljava/lang/Object;", "post", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult;", "map", "", "(Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-core-function-devatools_debug"}) +public abstract interface BadCaseApi { + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-vehicle-management-service/tool/badcase/add/v2") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object post(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map map, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.GET(value = "/yycp-vehicle-management-service/tool/badcase/reasons") + public abstract java.lang.Object get(@org.jetbrains.annotations.NotNull() + @retrofit2.http.Query(value = "channel", encoded = true) + java.lang.String channel, @retrofit2.http.Query(value = "pageNo") + int pageNo, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation); +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.kapt_metadata new file mode 100644 index 0000000000..3d87bca3e4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.java new file mode 100644 index 0000000000..192e997060 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.java @@ -0,0 +1,122 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.net.api.entity; + +import java.lang.System; + +@androidx.annotation.Keep() +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0005\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u000e\n\u0002\b\t\b\u0001\u0018\u00002\u00020\u0001:\u0001\u0019B\u0005\u00a2\u0006\u0002\u0010\u0002R\u001a\u0010\u0003\u001a\u00020\u0004X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\bR\"\u0010\t\u001a\n\u0012\u0004\u0012\u00020\u000b\u0018\u00010\nX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\f\u0010\r\"\u0004\b\u000e\u0010\u000fR\u001c\u0010\u0010\u001a\u0004\u0018\u00010\u0011X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0012\u0010\u0013\"\u0004\b\u0014\u0010\u0015R\u001a\u0010\u0016\u001a\u00020\u0004X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0017\u0010\u0006\"\u0004\b\u0018\u0010\b\u00a8\u0006\u001a"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse;", "", "()V", "code", "", "getCode", "()I", "setCode", "(I)V", "data", "", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason;", "getData", "()Ljava/util/List;", "setData", "(Ljava/util/List;)V", "msg", "", "getMsg", "()Ljava/lang/String;", "setMsg", "(Ljava/lang/String;)V", "total", "getTotal", "setTotal", "Reason", "mogo-core-function-devatools_debug"}) +public final class BadCaseResponse { + private int code = -1; + @org.jetbrains.annotations.Nullable() + private java.util.List data; + @org.jetbrains.annotations.Nullable() + private java.lang.String msg; + private int total = -1; + + public BadCaseResponse() { + super(); + } + + public final int getCode() { + return 0; + } + + public final void setCode(int p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.util.List getData() { + return null; + } + + public final void setData(@org.jetbrains.annotations.Nullable() + java.util.List p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getMsg() { + return null; + } + + public final void setMsg(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + public final int getTotal() { + return 0; + } + + public final void setTotal(int p0) { + } + + @androidx.annotation.Keep() + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\b\n\u0002\u0010\u000b\n\u0002\b\u000b\b\u0007\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0017\u001a\u00020\u0004H\u0016R\u001c\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\bR\u001c\u0010\t\u001a\u0004\u0018\u00010\u0004X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\n\u0010\u0006\"\u0004\b\u000b\u0010\bR\u001e\u0010\f\u001a\u00020\r8\u0006@\u0006X\u0087\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\f\u0010\u000e\"\u0004\b\u000f\u0010\u0010R\u001c\u0010\u0011\u001a\u0004\u0018\u00010\u0004X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0012\u0010\u0006\"\u0004\b\u0013\u0010\bR\u001c\u0010\u0014\u001a\u0004\u0018\u00010\u0004X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0015\u0010\u0006\"\u0004\b\u0016\u0010\b\u00a8\u0006\u0018"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason;", "", "()V", "channel", "", "getChannel", "()Ljava/lang/String;", "setChannel", "(Ljava/lang/String;)V", "id", "getId", "setId", "isChecked", "", "()Z", "setChecked", "(Z)V", "reason", "getReason", "setReason", "sort", "getSort", "setSort", "toString", "mogo-core-function-devatools_debug"}) + public static final class Reason { + @org.jetbrains.annotations.Nullable() + private java.lang.String id; + @org.jetbrains.annotations.Nullable() + private java.lang.String reason; + @org.jetbrains.annotations.Nullable() + private java.lang.String channel; + @org.jetbrains.annotations.Nullable() + private java.lang.String sort; + + /** + * 业务字段,不参与序列化和反序列化 + */ + @com.google.gson.annotations.Expose(deserialize = false, serialize = false) + private boolean isChecked = false; + + public Reason() { + super(); + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getId() { + return null; + } + + public final void setId(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getReason() { + return null; + } + + public final void setReason(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getChannel() { + return null; + } + + public final void setChannel(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getSort() { + return null; + } + + public final void setSort(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + public final boolean isChecked() { + return false; + } + + public final void setChecked(boolean p0) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.kapt_metadata new file mode 100644 index 0000000000..405ad6bd9d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.java new file mode 100644 index 0000000000..053f7f7055 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.java @@ -0,0 +1,56 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.net.api.entity; + +import java.lang.System; + +@androidx.annotation.Keep() +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0005\n\u0002\u0010\u0011\n\u0002\u0010\u000e\n\u0002\b\u000b\n\u0002\u0010\u000b\n\u0002\b\u0006\b\u0001\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u001c\u001a\u00020\u000bH\u0016R\u001a\u0010\u0003\u001a\u00020\u0004X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\bR$\u0010\t\u001a\n\u0012\u0004\u0012\u00020\u000b\u0018\u00010\nX\u0086\u000e\u00a2\u0006\u0010\n\u0002\u0010\u0010\u001a\u0004\b\f\u0010\r\"\u0004\b\u000e\u0010\u000fR\u001c\u0010\u0011\u001a\u0004\u0018\u00010\u000bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0012\u0010\u0013\"\u0004\b\u0014\u0010\u0015R\u001a\u0010\u0016\u001a\u00020\u0017X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0018\u0010\u0019\"\u0004\b\u001a\u0010\u001b\u00a8\u0006\u001d"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult;", "", "()V", "code", "", "getCode", "()I", "setCode", "(I)V", "data", "", "", "getData", "()[Ljava/lang/String;", "setData", "([Ljava/lang/String;)V", "[Ljava/lang/String;", "msg", "getMsg", "()Ljava/lang/String;", "setMsg", "(Ljava/lang/String;)V", "success", "", "getSuccess", "()Z", "setSuccess", "(Z)V", "toString", "mogo-core-function-devatools_debug"}) +public final class UploadResult { + private int code = -1; + @org.jetbrains.annotations.Nullable() + private java.lang.String msg; + @org.jetbrains.annotations.Nullable() + private java.lang.String[] data; + private boolean success = false; + + public UploadResult() { + super(); + } + + public final int getCode() { + return 0; + } + + public final void setCode(int p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getMsg() { + return null; + } + + public final void setMsg(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String[] getData() { + return null; + } + + public final void setData(@org.jetbrains.annotations.Nullable() + java.lang.String[] p0) { + } + + public final boolean getSuccess() { + return false; + } + + public final void setSuccess(boolean p0) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.kapt_metadata new file mode 100644 index 0000000000..f2df2d025e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.java new file mode 100644 index 0000000000..e598479633 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.java @@ -0,0 +1,51 @@ +package com.zhjt.mogo_core_function_devatools.badcase.repository.store; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000>\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\t\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\b\b\u00c0\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0011\u0010\f\u001a\u00020\rH\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u000eJ\u0011\u0010\u000f\u001a\u00020\u0010H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u000eJ\u001f\u0010\u0011\u001a\b\u0012\u0004\u0012\u00020\u00130\u00122\u0006\u0010\u0014\u001a\u00020\u0015H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0016J\u0019\u0010\u0017\u001a\u00020\u00052\u0006\u0010\u0018\u001a\u00020\rH\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0019J\'\u0010\u001a\u001a\u00020\u00052\f\u0010\u001b\u001a\b\u0012\u0004\u0012\u00020\u00130\u00122\u0006\u0010\u0014\u001a\u00020\u0015H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u001cR\u0014\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082\u0004\u00a2\u0006\u0002\n\u0000R!\u0010\u0006\u001a\b\u0012\u0004\u0012\u00020\u00050\u00078BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\n\u0010\u000b\u001a\u0004\b\b\u0010\t\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\u001d"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore;", "", "()V", "serializer", "Landroidx/datastore/core/Serializer;", "Lcom/zhjt/mogo_core_function_devatools/badcase/generated/BadCauses;", "store", "Landroidx/datastore/core/DataStore;", "getStore", "()Landroidx/datastore/core/DataStore;", "store$delegate", "Lkotlin/Lazy;", "getLastModified", "", "(Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getTaskIdAndIncrement", "", "records", "", "Lcom/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason;", "isDriven", "", "(ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;", "updateLastModified", "timestamp", "(JLkotlin/coroutines/Continuation;)Ljava/lang/Object;", "updateRecords", "reasons", "(Ljava/util/List;ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-core-function-devatools_debug"}) +public final class BadCaseStore { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.badcase.repository.store.BadCaseStore INSTANCE = null; + private static final androidx.datastore.core.Serializer serializer = null; + private static final kotlin.Lazy store$delegate = null; + + private BadCaseStore() { + super(); + } + + private final androidx.datastore.core.DataStore getStore() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object updateRecords(@org.jetbrains.annotations.NotNull() + java.util.List reasons, boolean isDriven, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object updateLastModified(long timestamp, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object getLastModified(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @kotlin.OptIn(markerClass = {kotlinx.coroutines.FlowPreview.class}) + public final java.lang.Object records(boolean isDriven, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object getTaskIdAndIncrement(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation) { + return null; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.kapt_metadata new file mode 100644 index 0000000000..bb87a0815d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.java new file mode 100644 index 0000000000..870e0a53fb --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.java @@ -0,0 +1,100 @@ +package com.zhjt.mogo_core_function_devatools.binding; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000F\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0003\n\u0002\u0010\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\b\n\u0002\u0010 \n\u0002\b\u0003\u0018\u0000 $2\u00020\u0001:\u0001$B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0018\u0010\f\u001a\u00020\r2\u0006\u0010\u000e\u001a\u00020\u00042\u0006\u0010\u000f\u001a\u00020\u0004H\u0002J\u0016\u0010\u0010\u001a\u00020\r2\u0006\u0010\u000e\u001a\u00020\u00042\u0006\u0010\u000f\u001a\u00020\u0004J\u000e\u0010\u0011\u001a\u00020\r2\u0006\u0010\u0012\u001a\u00020\u0006J\u001a\u0010\u0013\u001a\u00020\r2\u0012\u0010\u0014\u001a\u000e\u0012\u0004\u0012\u00020\u0016\u0012\u0004\u0012\u00020\r0\u0015J\u0010\u0010\u0017\u001a\u00020\r2\u0006\u0010\u0018\u001a\u00020\u0019H\u0016J\u0006\u0010\u001a\u001a\u00020\rJ\u0018\u0010\u001b\u001a\u00020\r2\u0006\u0010\u000e\u001a\u00020\u00042\u0006\u0010\u000f\u001a\u00020\u0004H\u0002J\u0006\u0010\u001c\u001a\u00020\rJ\u0016\u0010\u001d\u001a\u00020\r2\u0006\u0010\u001e\u001a\u00020\u00042\u0006\u0010\u001f\u001a\u00020\u0004J$\u0010 \u001a\u00020\r2\f\u0010!\u001a\b\u0012\u0004\u0012\u00020\u00040\"2\u0006\u0010\u001e\u001a\u00020\u00042\u0006\u0010#\u001a\u00020\u0004R\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0007\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0014\u0010\b\u001a\u00020\t8BX\u0082\u0004\u00a2\u0006\u0006\u001a\u0004\b\n\u0010\u000b\u00a8\u0006%"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/binding/BindingCarManager;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoAutopilotCarConfigListener;", "()V", "mAddress", "", "mContext", "Landroid/content/Context;", "mWidevineIDWithMd5", "screenType", "", "getScreenType", "()I", "driverScreen", "", "macAddress", "widevineIDWithMd5", "getBindingCarInfo", "init", "context", "modifyCarInfo", "callBack", "Lkotlin/Function1;", "Lcom/mogo/eagle/core/data/bindingcar/ModifyBindingcarInfo;", "onAutopilotCarConfig", "carConfigResp", "Lmogo/telematics/pad/MessagePad$CarConfigResp;", "onDestroy", "passengerScreen", "queryAppUpgrade", "queryContainers", "padSn", "dockerVersion", "upgradeConfirm", "images", "", "releaseId", "Companion", "mogo-core-function-devatools_debug"}) +public final class BindingCarManager implements com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotCarConfigListener { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.binding.BindingCarManager.Companion Companion = null; + private static final java.lang.String TAG = "BindingCarManager"; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy bindingCarManager$delegate = null; + private android.content.Context mContext; + @kotlin.jvm.Volatile() + private volatile java.lang.String mAddress; + @kotlin.jvm.Volatile() + private volatile java.lang.String mWidevineIDWithMd5; + + public BindingCarManager() { + super(); + } + + public final void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + public final void onDestroy() { + } + + @java.lang.Override() + public void onAutopilotCarConfig(@org.jetbrains.annotations.NotNull() + mogo.telematics.pad.MessagePad.CarConfigResp carConfigResp) { + } + + /** + * 获取macaddress,每次连接请求一次 + * + * @param macAddress + */ + public final void getBindingCarInfo(@org.jetbrains.annotations.NotNull() + java.lang.String macAddress, @org.jetbrains.annotations.NotNull() + java.lang.String widevineIDWithMd5) { + } + + /** + * 确认升级工控机docker版本 + * + * @param images docker列表 + * @param padSn SN + * @param releaseId 任务ID + */ + public final void upgradeConfirm(@org.jetbrains.annotations.NotNull() + java.util.List images, @org.jetbrains.annotations.NotNull() + java.lang.String padSn, @org.jetbrains.annotations.NotNull() + java.lang.String releaseId) { + } + + /** + * 获取新工控机docker版本 + * + * @param padSn SN + * @param dockerVersion 当前工控机版本 + */ + public final void queryContainers(@org.jetbrains.annotations.NotNull() + java.lang.String padSn, @org.jetbrains.annotations.NotNull() + java.lang.String dockerVersion) { + } + + public final void modifyCarInfo(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 callBack) { + } + + private final void driverScreen(java.lang.String macAddress, java.lang.String widevineIDWithMd5) { + } + + private final void passengerScreen(java.lang.String macAddress, java.lang.String widevineIDWithMd5) { + } + + private final int getScreenType() { + return 0; + } + + /** + * 查询app是否需要升级 + */ + public final void queryAppUpgrade() { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0005\u001a\u00020\u00068FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\t\u0010\n\u001a\u0004\b\u0007\u0010\b\u00a8\u0006\u000b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/binding/BindingCarManager$Companion;", "", "()V", "TAG", "", "bindingCarManager", "Lcom/zhjt/mogo_core_function_devatools/binding/BindingCarManager;", "getBindingCarManager", "()Lcom/zhjt/mogo_core_function_devatools/binding/BindingCarManager;", "bindingCarManager$delegate", "Lkotlin/Lazy;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.binding.BindingCarManager getBindingCarManager() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.kapt_metadata new file mode 100644 index 0000000000..eceea5108d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.java new file mode 100644 index 0000000000..edafa39fdc --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.java @@ -0,0 +1,59 @@ +package com.zhjt.mogo_core_function_devatools.binding; + +import java.lang.System; + +/** + * @author lixiaopeng + * @description 绑定车机网络请求 + * @since: 3/25/22 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000:\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\u0018\u0000 \u00142\u00020\u0001:\u0001\u0014B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J,\u0010\u0005\u001a\u00020\u00062\b\u0010\u0007\u001a\u0004\u0018\u00010\b2\b\u0010\t\u001a\u0004\u0018\u00010\n2\b\u0010\u000b\u001a\u0004\u0018\u00010\n2\u0006\u0010\f\u001a\u00020\rJ6\u0010\u000e\u001a\u00020\u00062\b\u0010\t\u001a\u0004\u0018\u00010\n2\b\u0010\u000b\u001a\u0004\u0018\u00010\n2\u0012\u0010\u000f\u001a\u000e\u0012\u0004\u0012\u00020\u0011\u0012\u0004\u0012\u00020\u00060\u00102\u0006\u0010\f\u001a\u00020\rJ\u0012\u0010\u0012\u001a\u00020\u00062\b\u0010\u0013\u001a\u0004\u0018\u00010\nH\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0015"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager;", "", "()V", "mBindingCarApiService", "Lcom/zhjt/mogo_core_function_devatools/binding/BindingCarApiService;", "getBindingcarInfo", "", "context", "Landroid/content/Context;", "macAddress", "", "widevineIDWithMd5", "screenType", "", "modifyBindingcar", "callBack", "Lkotlin/Function1;", "Lcom/mogo/eagle/core/data/bindingcar/ModifyBindingcarInfo;", "updateCarVrIconRes", "brandId", "Companion", "mogo-core-function-devatools_debug"}) +public final class BindingCarNetWorkManager { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.binding.BindingCarNetWorkManager.Companion Companion = null; + private static final java.lang.String TAG = "BindingCarNetManager"; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy instance$delegate = null; + private final com.zhjt.mogo_core_function_devatools.binding.BindingCarApiService mBindingCarApiService = null; + + private BindingCarNetWorkManager() { + super(); + } + + /** + * 获取绑定的车辆信息 + * + * @param macAddress mac地址 + */ + public final void getBindingcarInfo(@org.jetbrains.annotations.Nullable() + android.content.Context context, @org.jetbrains.annotations.Nullable() + java.lang.String macAddress, @org.jetbrains.annotations.Nullable() + java.lang.String widevineIDWithMd5, int screenType) { + } + + /** + * 绑定和修改绑定车辆 + * mac: 48:b0:2d:3a:9c:19 + */ + public final void modifyBindingcar(@org.jetbrains.annotations.Nullable() + java.lang.String macAddress, @org.jetbrains.annotations.Nullable() + java.lang.String widevineIDWithMd5, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 callBack, int screenType) { + } + + private final void updateCarVrIconRes(java.lang.String brandId) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0005\u001a\u00020\u00068FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\t\u0010\n\u001a\u0004\b\u0007\u0010\b\u00a8\u0006\u000b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$Companion;", "", "()V", "TAG", "", "instance", "Lcom/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager;", "getInstance", "()Lcom/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager;", "instance$delegate", "Lkotlin/Lazy;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.binding.BindingCarNetWorkManager getInstance() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.kapt_metadata new file mode 100644 index 0000000000..92a7ad0fc4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.java new file mode 100644 index 0000000000..9a0a61c256 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.java @@ -0,0 +1,120 @@ +package com.zhjt.mogo_core_function_devatools.env; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00006\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0007\b\u00c6\u0002\u0018\u00002\u00020\u0001:\u0001\u0016B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0016\u0010\u0006\u001a\u00020\u00072\u0006\u0010\b\u001a\u00020\t2\u0006\u0010\n\u001a\u00020\u000bJ\u0006\u0010\f\u001a\u00020\tJ\u0016\u0010\r\u001a\u0010\u0012\u0004\u0012\u00020\t\u0012\u0004\u0012\u00020\u000b\u0018\u00010\u000eH\u0002J\b\u0010\u000f\u001a\u0004\u0018\u00010\u0010J\u0006\u0010\u0011\u001a\u00020\tJ\u0006\u0010\u0012\u001a\u00020\u0007J\b\u0010\u0013\u001a\u00020\u0007H\u0002J\u0012\u0010\u0014\u001a\u00020\u00072\b\u0010\b\u001a\u0004\u0018\u00010\tH\u0002J\u0010\u0010\u0015\u001a\u00020\u00072\u0006\u0010\n\u001a\u00020\u000bH\u0002R\u0016\u0010\u0003\u001a\n \u0005*\u0004\u0018\u00010\u00040\u0004X\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0017"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/env/EnvChangeManager;", "", "()V", "sp", "Landroid/content/SharedPreferences;", "kotlin.jvm.PlatformType", "changeTo", "", "cityCode", "", "netMode", "", "getCityName", "getConfig", "Lkotlin/Pair;", "getEnvConfig", "Lcom/zhjt/mogo_core_function_devatools/env/EnvChangeManager$EnvConfig;", "getNetMode", "reset", "restartApp", "updateCityCode", "updateNetMode", "EnvConfig", "mogo-core-function-devatools_debug"}) +public final class EnvChangeManager { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.env.EnvChangeManager INSTANCE = null; + private static final android.content.SharedPreferences sp = null; + + private EnvChangeManager() { + super(); + } + + private final void updateCityCode(java.lang.String cityCode) { + } + + private final void updateNetMode(int netMode) { + } + + private final kotlin.Pair getConfig() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCityName() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getNetMode() { + return null; + } + + public final void changeTo(@org.jetbrains.annotations.NotNull() + java.lang.String cityCode, int netMode) { + } + + public final void reset() { + } + + private final void restartApp() { + } + + @org.jetbrains.annotations.Nullable() + public final com.zhjt.mogo_core_function_devatools.env.EnvChangeManager.EnvConfig getEnvConfig() { + return null; + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0006\n\u0002\b\u000f\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001B%\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0007\u0012\u0006\u0010\b\u001a\u00020\u0007\u00a2\u0006\u0002\u0010\tJ\t\u0010\u0011\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0012\u001a\u00020\u0005H\u00c6\u0003J\t\u0010\u0013\u001a\u00020\u0007H\u00c6\u0003J\t\u0010\u0014\u001a\u00020\u0007H\u00c6\u0003J1\u0010\u0015\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u00072\b\b\u0002\u0010\b\u001a\u00020\u0007H\u00c6\u0001J\u0013\u0010\u0016\u001a\u00020\u00172\b\u0010\u0018\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u0019\u001a\u00020\u0005H\u00d6\u0001J\t\u0010\u001a\u001a\u00020\u0003H\u00d6\u0001R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000bR\u0011\u0010\u0006\u001a\u00020\u0007\u00a2\u0006\b\n\u0000\u001a\u0004\b\f\u0010\rR\u0011\u0010\b\u001a\u00020\u0007\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\rR\u0011\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\u0010\u00a8\u0006\u001b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/env/EnvChangeManager$EnvConfig;", "", "cityCode", "", "netMode", "", "lat", "", "lon", "(Ljava/lang/String;IDD)V", "getCityCode", "()Ljava/lang/String;", "getLat", "()D", "getLon", "getNetMode", "()I", "component1", "component2", "component3", "component4", "copy", "equals", "", "other", "hashCode", "toString", "mogo-core-function-devatools_debug"}) + public static final class EnvConfig { + @org.jetbrains.annotations.NotNull() + private final java.lang.String cityCode = null; + private final int netMode = 0; + private final double lat = 0.0; + private final double lon = 0.0; + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.env.EnvChangeManager.EnvConfig copy(@org.jetbrains.annotations.NotNull() + java.lang.String cityCode, int netMode, double lat, double lon) { + return null; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object other) { + return false; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + public EnvConfig(@org.jetbrains.annotations.NotNull() + java.lang.String cityCode, int netMode, double lat, double lon) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCityCode() { + return null; + } + + public final int component2() { + return 0; + } + + public final int getNetMode() { + return 0; + } + + public final double component3() { + return 0.0; + } + + public final double getLat() { + return 0.0; + } + + public final double component4() { + return 0.0; + } + + public final double getLon() { + return 0.0; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.kapt_metadata new file mode 100644 index 0000000000..9143b1800b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.java new file mode 100644 index 0000000000..a3650fa9bd --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.java @@ -0,0 +1,55 @@ +package com.zhjt.mogo_core_function_devatools.ext; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 2, d1 = {"\u0000\\\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010\r\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0018\u0002\n\u0000\u001a\u0010\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0003H\u0002\u001a\u0010\u0010\u0004\u001a\u00020\u00052\u0006\u0010\u0002\u001a\u00020\u0003H\u0002\u001a\u001e\u0010\u0006\u001a\u00020\u00052\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\u00012\u0006\u0010\n\u001a\u00020\u0001\u001a\u008d\u0001\u0010\u000b\u001a\b\u0012\u0004\u0012\u00020\r0\f*\u00020\u000e2\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\u000f\u001a\u00020\u00012\u0006\u0010\u0010\u001a\u00020\u00012\b\b\u0002\u0010\u0011\u001a\u00020\u00122\b\b\u0002\u0010\u0013\u001a\u00020\u00012\b\b\u0002\u0010\u0014\u001a\u00020\u00012\b\b\u0002\u0010\u0015\u001a\u00020\u00012%\b\u0002\u0010\u0016\u001a\u001f\u0012\u0013\u0012\u00110\b\u00a2\u0006\f\b\u0018\u0012\b\b\u0019\u0012\u0004\b\b(\u001a\u0012\u0004\u0012\u00020\r\u0018\u00010\u00172\b\b\u0002\u0010\u001b\u001a\u00020\u00052\b\b\u0002\u0010\u001c\u001a\u00020\u0005H\u0007\u001au\u0010\u001d\u001a\u0004\u0018\u00010\u001e*\u00020\u000e2\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\u000f\u001a\u00020\u00012\u0006\u0010\u0010\u001a\u00020\u00012\b\b\u0002\u0010\u0013\u001a\u00020\u00012\b\b\u0002\u0010\u0014\u001a\u00020\u00012\b\b\u0002\u0010\u0015\u001a\u00020\u00012%\b\u0002\u0010\u0016\u001a\u001f\u0012\u0013\u0012\u00110\b\u00a2\u0006\f\b\u0018\u0012\b\b\u0019\u0012\u0004\b\b(\u001a\u0012\u0004\u0012\u00020\r\u0018\u00010\u00172\b\b\u0002\u0010\u001c\u001a\u00020\u0005H\u0007\u001a5\u0010\u001f\u001a\b\u0012\u0004\u0012\u00020\r0\f*\u00020\u00032!\u0010 \u001a\u001d\u0012\u0013\u0012\u00110\u0001\u00a2\u0006\f\b\u0018\u0012\b\b\u0019\u0012\u0004\b\b(\u0010\u0012\u0004\u0012\u00020\r0\u0017H\u0000\u001a(\u0010!\u001a\u00020\r*\u00020\u000e2\u0006\u0010\"\u001a\u00020#2\b\b\u0002\u0010$\u001a\u00020%2\b\b\u0002\u0010&\u001a\u00020\'H\u0000\u00a8\u0006("}, d2 = {"getNavigationBarHeight", "", "activity", "Landroidx/fragment/app/FragmentActivity;", "haveNavigationBar", "", "isVisibleOnPoint", "content", "Landroid/view/View;", "x", "y", "enqueuePop", "Lkotlin/Function0;", "", "Landroid/content/Context;", "width", "height", "key", "", "startX", "startY", "gravity", "onOuterViewClicked", "Lkotlin/Function1;", "Lkotlin/ParameterName;", "name", "focus", "isOverride", "isFocusable", "normalPop", "Landroid/widget/PopupWindow;", "softKeyboardHeightChanged", "block", "toast", "text", "", "duration", "", "unit", "Ljava/util/concurrent/TimeUnit;", "mogo-core-function-devatools_debug"}) +public final class ExtentionsKt { + + /** + * 只供BaseCase使用的Toast样式 + */ + public static final void toast(@org.jetbrains.annotations.NotNull() + android.content.Context $this$toast, @org.jetbrains.annotations.NotNull() + java.lang.CharSequence text, long duration, @org.jetbrains.annotations.NotNull() + java.util.concurrent.TimeUnit unit) { + } + + @org.jetbrains.annotations.NotNull() + @android.annotation.SuppressLint(value = {"ClickableViewAccessibility"}) + public static final kotlin.jvm.functions.Function0 enqueuePop(@org.jetbrains.annotations.NotNull() + android.content.Context $this$enqueuePop, @org.jetbrains.annotations.NotNull() + android.view.View content, int width, int height, @org.jetbrains.annotations.NotNull() + java.lang.String key, int startX, int startY, int gravity, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onOuterViewClicked, boolean isOverride, boolean isFocusable) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @android.annotation.SuppressLint(value = {"ClickableViewAccessibility"}) + public static final android.widget.PopupWindow normalPop(@org.jetbrains.annotations.NotNull() + android.content.Context $this$normalPop, @org.jetbrains.annotations.NotNull() + android.view.View content, int width, int height, int startX, int startY, int gravity, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onOuterViewClicked, boolean isFocusable) { + return null; + } + + public static final boolean isVisibleOnPoint(@org.jetbrains.annotations.NotNull() + android.view.View content, int x, int y) { + return false; + } + + @org.jetbrains.annotations.NotNull() + public static final kotlin.jvm.functions.Function0 softKeyboardHeightChanged(@org.jetbrains.annotations.NotNull() + androidx.fragment.app.FragmentActivity $this$softKeyboardHeightChanged, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 block) { + return null; + } + + private static final boolean haveNavigationBar(androidx.fragment.app.FragmentActivity activity) { + return false; + } + + private static final int getNavigationBarHeight(androidx.fragment.app.FragmentActivity activity) { + return 0; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.kapt_metadata new file mode 100644 index 0000000000..72bfeeedbb Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.java new file mode 100644 index 0000000000..0066f96153 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.java @@ -0,0 +1,61 @@ +package com.zhjt.mogo_core_function_devatools.funcconfig; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00008\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0002\u0018\u0000 \u00172\b\u0012\u0004\u0012\u00020\u00020\u00012\u00020\u0003:\u0001\u0017B\u0005\u00a2\u0006\u0002\u0010\u0004J\u000e\u0010\t\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\bJ\u0010\u0010\f\u001a\u00020\n2\u0006\u0010\r\u001a\u00020\u0002H\u0002J\u0010\u0010\u000e\u001a\u00020\n2\u0006\u0010\u000f\u001a\u00020\u0010H\u0016J\u0006\u0010\u0011\u001a\u00020\nJ\u0012\u0010\u0012\u001a\u00020\n2\b\u0010\u0013\u001a\u0004\u0018\u00010\u0002H\u0016J\u0010\u0010\u0014\u001a\u00020\n2\u0006\u0010\r\u001a\u00020\u0002H\u0003J\u000e\u0010\u0015\u001a\b\u0012\u0004\u0012\u00020\u00020\u0016H\u0016R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0007\u001a\u0004\u0018\u00010\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0018"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter;", "Lcom/mogo/aicloud/services/socket/IMogoOnMessageListener;", "Lcom/zhjt/service_biz/FuncConfig;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoAutopilotCarConfigListener;", "()V", "funcConfigNetWorkModel", "Lcom/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel;", "mContext", "Landroid/content/Context;", "init", "", "context", "invokeUpdate", "funcConfig", "onAutopilotCarConfig", "carConfigResp", "Lmogo/telematics/pad/MessagePad$CarConfigResp;", "onDestroy", "onMsgReceived", "obj", "refreshConfig", "target", "Ljava/lang/Class;", "Companion", "mogo-core-function-devatools_debug"}) +public final class FuncConfigCenter implements com.mogo.aicloud.services.socket.IMogoOnMessageListener, com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotCarConfigListener { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.funcconfig.FuncConfigCenter.Companion Companion = null; + private static final java.lang.String TAG = "FuncConfigCenter"; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy bizConfigCenter$delegate = null; + private android.content.Context mContext; + private final com.zhjt.mogo_core_function_devatools.funcconfig.network.FuncConfigNetWorkModel funcConfigNetWorkModel = null; + + public FuncConfigCenter() { + super(); + } + + public final void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void onAutopilotCarConfig(@org.jetbrains.annotations.NotNull() + mogo.telematics.pad.MessagePad.CarConfigResp carConfigResp) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.Class target() { + return null; + } + + @java.lang.Override() + public void onMsgReceived(@org.jetbrains.annotations.Nullable() + com.zhjt.service_biz.FuncConfig obj) { + } + + @com.zhjt.service.chain.ChainLog(linkChainLog = 0, linkCode = 0, endpoint = 4, nodeAliasCode = "CHAIN_ALIAS_CODE_FUNC_CONFIG_CHANGED", paramIndexes = {0}, clientPkFileName = "sn") + private final void refreshConfig(com.zhjt.service_biz.FuncConfig funcConfig) { + } + + private final void invokeUpdate(com.zhjt.service_biz.FuncConfig funcConfig) { + } + + public final void onDestroy() { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0005\u001a\u00020\u00068FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\t\u0010\n\u001a\u0004\b\u0007\u0010\b\u00a8\u0006\u000b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$Companion;", "", "()V", "TAG", "", "bizConfigCenter", "Lcom/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter;", "getBizConfigCenter", "()Lcom/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter;", "bizConfigCenter$delegate", "Lkotlin/Lazy;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.funcconfig.FuncConfigCenter getBizConfigCenter() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.kapt_metadata new file mode 100644 index 0000000000..ceb3374461 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.java new file mode 100644 index 0000000000..c371a2aefe --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.java @@ -0,0 +1,31 @@ +package com.zhjt.mogo_core_function_devatools.funcconfig; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst;", "", "()V", "Companion", "mogo-core-function-devatools_debug"}) +public final class FuncConfigConst { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.funcconfig.FuncConfigConst.Companion Companion = null; + public static final int FUNC_CONFIG_TYPE = 500001; + + public FuncConfigConst() { + super(); + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0005\u001a\u00020\u0006J\b\u0010\u0007\u001a\u00020\u0004H\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst$Companion;", "", "()V", "FUNC_CONFIG_TYPE", "", "defaultFuncConfig", "Lcom/zhjt/service_biz/FuncConfig;", "getEnv", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.service_biz.FuncConfig defaultFuncConfig() { + return null; + } + + private final int getEnv() { + return 0; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.kapt_metadata new file mode 100644 index 0000000000..8f24068db3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.java new file mode 100644 index 0000000000..ea63718812 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.java @@ -0,0 +1,17 @@ +package com.zhjt.mogo_core_function_devatools.funcconfig; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u0002\n\u0000\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0005\u001a\u00020\u0006R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0007"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl;", "", "()V", "TAG", "", "init", "", "mogo-core-function-devatools_debug"}) +public final class FuncConfigImpl { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.funcconfig.FuncConfigImpl INSTANCE = null; + private static final java.lang.String TAG = "FuncConfigImpl"; + + private FuncConfigImpl() { + super(); + } + + public final void init() { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.kapt_metadata new file mode 100644 index 0000000000..5e5de99eb3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.java new file mode 100644 index 0000000000..e7e20cdc44 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.java @@ -0,0 +1,15 @@ +package com.zhjt.mogo_core_function_devatools.funcconfig.network; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010%\n\u0002\u0010\u000e\n\u0002\b\u0002\bf\u0018\u00002\u00020\u0001J-\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u00032\u0014\b\u0001\u0010\u0005\u001a\u000e\u0012\u0004\u0012\u00020\u0007\u0012\u0004\u0012\u00020\u00010\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\b\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\t"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService;", "", "funcConfig", "Lcom/mogo/eagle/core/data/BaseResponse;", "Lcom/zhjt/service_biz/FuncConfig;", "map", "", "", "(Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-core-function-devatools_debug"}) +public abstract interface FuncConfigApiService { + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "eagleEye-mis/config/abilityInfo") + @retrofit2.http.Headers(value = {"Content-Type:application/json;charset=UTF-8"}) + public abstract java.lang.Object funcConfig(@org.jetbrains.annotations.NotNull() + @retrofit2.http.Body() + java.util.Map map, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation); +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.kapt_metadata new file mode 100644 index 0000000000..9dea657ffc Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.java new file mode 100644 index 0000000000..7ab7149d6a --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.java @@ -0,0 +1,24 @@ +package com.zhjt.mogo_core_function_devatools.funcconfig.network; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u000e\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0006\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0012\u0010\u000b\u001a\u00020\f2\b\b\u0002\u0010\r\u001a\u00020\u0005H\u0002J>\u0010\u000e\u001a\u00020\u00062\u0006\u0010\u000f\u001a\u00020\u00052\u0016\b\u0002\u0010\u0010\u001a\u0010\u0012\u0004\u0012\u00020\n\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u00042\u0016\b\u0002\u0010\u0011\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0004R\u001c\u0010\u0003\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001c\u0010\t\u001a\u0010\u0012\u0004\u0012\u00020\n\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0012"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel;", "", "()V", "error", "Lkotlin/Function1;", "", "", "retryTime", "", "success", "Lcom/zhjt/service_biz/FuncConfig;", "getNetWorkApi", "Lcom/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService;", "baseUrl", "requestFuncConfig", "mac", "onSuccess", "onError", "mogo-core-function-devatools_debug"}) +public final class FuncConfigNetWorkModel { + private int retryTime = 0; + private kotlin.jvm.functions.Function1 success; + private kotlin.jvm.functions.Function1 error; + + public FuncConfigNetWorkModel() { + super(); + } + + private final com.zhjt.mogo_core_function_devatools.funcconfig.network.FuncConfigApiService getNetWorkApi(java.lang.String baseUrl) { + return null; + } + + public final void requestFuncConfig(@org.jetbrains.annotations.NotNull() + java.lang.String mac, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onError) { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.kapt_metadata new file mode 100644 index 0000000000..8d5c03e6b8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.java new file mode 100644 index 0000000000..fadba3a4fb --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.java @@ -0,0 +1,52 @@ +package com.zhjt.mogo_core_function_devatools.logcatch; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst;", "", "()V", "Companion", "mogo-core-function-devatools_debug"}) +public final class MogoLogCatchConst { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion Companion = null; + public static final int LOG_PUSH_TYPE = 500000; + + /** + * 开始抓日志 + */ + public static final int START_CATCH_LOG = 1; + + /** + * 结束抓日志 + */ + public static final int STOP_CATCH_LOG = 2; + + /** + * 本应用设置,打开日志 + */ + public static final int LOCAL_CONFIG_OPEN_LOG = 3; + + /** + * 本应用设置,关闭日志 + */ + public static final int LOCAL_CONFIG_CLOSE_LOG = 4; + + /** + * 上传本地缓存链路日志 + */ + public static final int CACHE_TRACE_UPLOAD = 5; + + /** + * 下发map缓存日志开关开启 + */ + public static final int CACHE_MAP_UPLOAD = 6; + + public MogoLogCatchConst() { + super(); + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0007\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst$Companion;", "", "()V", "CACHE_MAP_UPLOAD", "", "CACHE_TRACE_UPLOAD", "LOCAL_CONFIG_CLOSE_LOG", "LOCAL_CONFIG_OPEN_LOG", "LOG_PUSH_TYPE", "START_CATCH_LOG", "STOP_CATCH_LOG", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.kapt_metadata new file mode 100644 index 0000000000..a09521ce38 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.java new file mode 100644 index 0000000000..ff14be1f89 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.java @@ -0,0 +1,91 @@ +package com.zhjt.mogo_core_function_devatools.logcatch; + +import java.lang.System; + +@android.annotation.SuppressLint(value = {"StaticFieldLeak"}) +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000b\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010!\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0011\n\u0002\u0018\u0002\n\u0002\b\u0003\b\u00c7\u0002\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u00012\u00020\u00032\u00020\u00042\u00020\u0005B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0006J\b\u0010\u0017\u001a\u00020\u0018H\u0002J\u0010\u0010\u0019\u001a\u00020\u00162\u0006\u0010\u001a\u001a\u00020\u001bH\u0016J\u000e\u0010\u001c\u001a\u00020\u00182\u0006\u0010\u001d\u001a\u00020\u0013J\u0010\u0010\u001e\u001a\u00020\u00182\u0006\u0010\u001d\u001a\u00020\u0013H\u0002J\u0012\u0010\u001f\u001a\u00020\u00182\b\u0010 \u001a\u0004\u0018\u00010\u000bH\u0016J\u0006\u0010!\u001a\u00020\u0018J\u0010\u0010\"\u001a\u00020\u00182\u0006\u0010#\u001a\u00020\bH\u0016J\u0012\u0010$\u001a\u00020\u00182\b\u0010%\u001a\u0004\u0018\u00010\u0002H\u0016J\b\u0010&\u001a\u00020\u0018H\u0002J\u001c\u0010\'\u001a\u00020\u00182\u0006\u0010(\u001a\u00020\u00022\n\b\u0002\u0010)\u001a\u0004\u0018\u00010\u000bH\u0002J\u001e\u0010\'\u001a\u00020\u00182\b\b\u0002\u0010*\u001a\u00020\b2\n\b\u0002\u0010)\u001a\u0004\u0018\u00010\u000bH\u0007J\u001c\u0010+\u001a\u00020\u00182\u0006\u0010(\u001a\u00020\u00022\n\b\u0002\u0010)\u001a\u0004\u0018\u00010\u000bH\u0002J\u0012\u0010+\u001a\u00020\u00182\n\b\u0002\u0010)\u001a\u0004\u0018\u00010\u000bJ\u000e\u0010,\u001a\b\u0012\u0004\u0012\u00020\u00020-H\u0016J\u0010\u0010.\u001a\u00020\u00182\u0006\u0010/\u001a\u00020\u000bH\u0016R\u000e\u0010\u0007\u001a\u00020\bX\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\bX\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u000bX\u0082T\u00a2\u0006\u0002\n\u0000R\u0014\u0010\f\u001a\b\u0012\u0004\u0012\u00020\u000b0\rX\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000e\u001a\u00020\u000fX\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0010\u001a\u0004\u0018\u00010\u0011X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0012\u001a\u0004\u0018\u00010\u0013X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0014\u001a\u00020\u0002X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0015\u001a\u00020\u0016X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u00060"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager;", "Lcom/mogo/aicloud/services/socket/IMogoOnMessageListener;", "Lcom/zhidao/loglib/bean/RemoteLogPushContent;", "Landroid/os/Handler$Callback;", "Lcom/zhidao/loglib/core/ILogListener;", "Lcom/mogo/eagle/core/function/api/map/deva/IMoGoMapDevaProvider;", "()V", "MSG_TRY_CLOSE_LOG", "", "MSG_TRY_START_LOG", "TAG", "", "catchingList", "", "handler", "Landroid/os/Handler;", "logInfoManager", "Lcom/zhidao/loglib/core/LogInfoManager;", "mContext", "Landroid/content/Context;", "manualContent", "mapCacheUpload", "", "closeLoggerLevel", "", "handleMessage", "msg", "Landroid/os/Message;", "init", "context", "logCheck", "onClose", "pkgName", "onDestroy", "onError", "errorCount", "onMsgReceived", "obj", "openLoggerLevel", "startCatchLog", "content", "logPrefixName", "duration", "stopCatchLog", "target", "Ljava/lang/Class;", "uploadFile", "filePath", "mogo-core-function-devatools_debug"}) +public final class MogoLogCatchManager implements com.mogo.aicloud.services.socket.IMogoOnMessageListener, android.os.Handler.Callback, com.zhidao.loglib.core.ILogListener, com.mogo.eagle.core.function.api.map.deva.IMoGoMapDevaProvider { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchManager INSTANCE = null; + private static final java.lang.String TAG = "MogoLogCatchManager"; + private static final int MSG_TRY_CLOSE_LOG = 1001; + private static final int MSG_TRY_START_LOG = 1002; + private static android.content.Context mContext; + private static final android.os.Handler handler = null; + private static final com.zhidao.loglib.bean.RemoteLogPushContent manualContent = null; + private static final java.util.List catchingList = null; + private static com.zhidao.loglib.core.LogInfoManager logInfoManager; + private static boolean mapCacheUpload = false; + + private MogoLogCatchManager() { + super(); + } + + public final void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + private final void logCheck(android.content.Context context) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.Class target() { + return null; + } + + @java.lang.Override() + public void onMsgReceived(@org.jetbrains.annotations.Nullable() + com.zhidao.loglib.bean.RemoteLogPushContent obj) { + } + + @java.lang.Override() + public boolean handleMessage(@org.jetbrains.annotations.NotNull() + android.os.Message msg) { + return false; + } + + @com.zhjt.service_biz.BizConfig(biz = "FOUNDATION", dependentBizNode = "", bizNode = "BIZ_FULL_LOG") + public final void startCatchLog(int duration, @org.jetbrains.annotations.Nullable() + java.lang.String logPrefixName) { + } + + public final void stopCatchLog(@org.jetbrains.annotations.Nullable() + java.lang.String logPrefixName) { + } + + private final void startCatchLog(com.zhidao.loglib.bean.RemoteLogPushContent content, java.lang.String logPrefixName) { + } + + private final void stopCatchLog(com.zhidao.loglib.bean.RemoteLogPushContent content, java.lang.String logPrefixName) { + } + + /** + * 放开Logger的限制 + */ + private final void openLoggerLevel() { + } + + /** + * 根据状态收紧Logger的限制 + */ + private final void closeLoggerLevel() { + } + + @java.lang.Override() + public void onError(int errorCount) { + } + + @java.lang.Override() + public void onClose(@org.jetbrains.annotations.Nullable() + java.lang.String pkgName) { + } + + @java.lang.Override() + public void uploadFile(@org.jetbrains.annotations.NotNull() + java.lang.String filePath) { + } + + public final void onDestroy() { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kapt_metadata new file mode 100644 index 0000000000..e0f7a03008 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.java new file mode 100644 index 0000000000..c13725a2c5 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.java @@ -0,0 +1,53 @@ +package com.zhjt.mogo_core_function_devatools.mofang; + +import java.lang.System; + +/** + * 魔方连接状态和设备管理 + */ +@android.annotation.SuppressLint(value = {"StaticFieldLeak"}) +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00002\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0006\b\u0007\u0018\u0000 \u00132\u00020\u0001:\u0001\u0013B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u000e\u0010\r\u001a\u00020\u000e2\u0006\u0010\u000f\u001a\u00020\fJ\u0010\u0010\u0010\u001a\u00020\u000e2\u0006\u0010\u000f\u001a\u00020\fH\u0002J\u0010\u0010\u0011\u001a\u00020\u000e2\u0006\u0010\u0012\u001a\u00020\nH\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082D\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\nX\u0082.\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u000b\u001a\u0004\u0018\u00010\fX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0014"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/mofang/MoFangManager;", "", "()V", "TAG", "", "bluetoothMonitorReceiver", "Landroid/content/BroadcastReceiver;", "isMfConnect", "", "mBluetoothAdapter", "Landroid/bluetooth/BluetoothAdapter;", "mContext", "Landroid/content/Context;", "init", "", "context", "initBluetooth", "showBondedDevice", "bluetoothAdapter", "Companion", "mogo-core-function-devatools_debug"}) +public final class MoFangManager { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.mofang.MoFangManager.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy moFangManager$delegate = null; + private android.content.Context mContext; + private final java.lang.String TAG = "MoFangManager"; + private android.bluetooth.BluetoothAdapter mBluetoothAdapter; + private boolean isMfConnect = false; + private final android.content.BroadcastReceiver bluetoothMonitorReceiver = null; + + private MoFangManager() { + super(); + } + + public final void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + /** + * 初始化蓝牙广播 + */ + private final void initBluetooth(android.content.Context context) { + } + + /** + * 查找蓝牙连接过的蓝牙设备 + */ + private final void showBondedDevice(android.bluetooth.BluetoothAdapter bluetoothAdapter) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\t"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/mofang/MoFangManager$Companion;", "", "()V", "moFangManager", "Lcom/zhjt/mogo_core_function_devatools/mofang/MoFangManager;", "getMoFangManager", "()Lcom/zhjt/mogo_core_function_devatools/mofang/MoFangManager;", "moFangManager$delegate", "Lkotlin/Lazy;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.mofang.MoFangManager getMoFangManager() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.kapt_metadata new file mode 100644 index 0000000000..147bdaa40e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.java new file mode 100644 index 0000000000..9730d121ab --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.java @@ -0,0 +1,101 @@ +package com.zhjt.mogo_core_function_devatools.monitor; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000F\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010\u000b\n\u0002\b\u0004\n\u0002\u0010\b\n\u0002\b\u0004\n\u0002\u0010\u0006\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0005\u0018\u0000 %2\u00020\u0001:\u0002%&B\u000f\b\u0002\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\b\u0010\u001e\u001a\u00020\u001fH\u0002J\u0006\u0010 \u001a\u00020\u0015J\u0006\u0010!\u001a\u00020\"J\u0006\u0010#\u001a\u00020\"J\u0006\u0010$\u001a\u00020\"R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\u0004R!\u0010\b\u001a\b\u0012\u0004\u0012\u00020\n0\t8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\r\u0010\u000e\u001a\u0004\b\u000b\u0010\fR\u001b\u0010\u000f\u001a\u00020\u00108BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0013\u0010\u000e\u001a\u0004\b\u0011\u0010\u0012R\u001a\u0010\u0014\u001a\u00020\u0015X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0014\u0010\u0016\"\u0004\b\u0017\u0010\u0018R\u001b\u0010\u0019\u001a\u00020\u001a8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u001d\u0010\u000e\u001a\u0004\b\u001b\u0010\u001c\u00a8\u0006\'"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/CpuMonitor;", "", "context", "Landroid/content/Context;", "(Landroid/content/Context;)V", "getContext", "()Landroid/content/Context;", "setContext", "cpuInfoList", "Ljava/util/ArrayList;", "Lcom/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo;", "getCpuInfoList", "()Ljava/util/ArrayList;", "cpuInfoList$delegate", "Lkotlin/Lazy;", "dateFormat", "Ljava/text/SimpleDateFormat;", "getDateFormat", "()Ljava/text/SimpleDateFormat;", "dateFormat$delegate", "isRunning", "", "()Z", "setRunning", "(Z)V", "pid", "", "getPid", "()I", "pid$delegate", "getCpuValue", "", "isStarted", "saveCpuInfos", "", "startRun", "stop", "Companion", "CpuRunnable", "mogo-core-function-devatools_debug"}) +public final class CpuMonitor { + @org.jetbrains.annotations.NotNull() + private android.content.Context context; + private boolean isRunning = false; + private final kotlin.Lazy pid$delegate = null; + private final kotlin.Lazy cpuInfoList$delegate = null; + private final kotlin.Lazy dateFormat$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.monitor.CpuMonitor.Companion Companion = null; + private static final java.lang.String TAG = "CpuMonitor"; + public static final long INTERVAL_PERF = 1000L; + @kotlin.jvm.Volatile() + @android.annotation.SuppressLint(value = {"StaticFieldLeak"}) + private static volatile com.zhjt.mogo_core_function_devatools.monitor.CpuMonitor sInstance; + + private CpuMonitor(android.content.Context context) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final android.content.Context getContext() { + return null; + } + + public final void setContext(@org.jetbrains.annotations.NotNull() + android.content.Context p0) { + } + + public final boolean isRunning() { + return false; + } + + public final void setRunning(boolean p0) { + } + + private final int getPid() { + return 0; + } + + private final java.util.ArrayList getCpuInfoList() { + return null; + } + + private final java.text.SimpleDateFormat getDateFormat() { + return null; + } + + /** + * 请先运行Shizuku的服务 + */ + @kotlin.jvm.Synchronized() + public final synchronized void startRun() { + } + + @kotlin.jvm.Synchronized() + public final synchronized boolean isStarted() { + return false; + } + + @kotlin.jvm.Synchronized() + public final synchronized void stop() { + } + + public final void saveCpuInfos() { + } + + private final double getCpuValue() { + return 0.0; + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\b\u0086\u0004\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H\u0016\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$CpuRunnable;", "Ljava/lang/Runnable;", "(Lcom/zhjt/mogo_core_function_devatools/monitor/CpuMonitor;)V", "run", "", "mogo-core-function-devatools_debug"}) + public final class CpuRunnable implements java.lang.Runnable { + + public CpuRunnable() { + super(); + } + + @java.lang.Override() + public void run() { + } + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\t\u001a\u0004\u0018\u00010\b2\u0006\u0010\n\u001a\u00020\u000bR\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082T\u00a2\u0006\u0002\n\u0000R\u0014\u0010\u0007\u001a\u0004\u0018\u00010\b8\u0002@\u0002X\u0083\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\f"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$Companion;", "", "()V", "INTERVAL_PERF", "", "TAG", "", "sInstance", "Lcom/zhjt/mogo_core_function_devatools/monitor/CpuMonitor;", "getInstance", "context", "Landroid/content/Context;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.Nullable() + public final com.zhjt.mogo_core_function_devatools.monitor.CpuMonitor getInstance(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.kapt_metadata new file mode 100644 index 0000000000..4a6938d572 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.java new file mode 100644 index 0000000000..8ef70bda22 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.java @@ -0,0 +1,103 @@ +package com.zhjt.mogo_core_function_devatools.monitor; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000D\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010\u0013\n\u0000\n\u0002\u0010\u0006\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0005\u0018\u0000 \"2\u00020\u0001:\u0002\"#B\u000f\b\u0002\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\b\u0010\u0019\u001a\u00020\u001aH\u0002J\b\u0010\u001b\u001a\u00020\u001cH\u0002J\u0006\u0010\u001d\u001a\u00020\u000fJ\u0006\u0010\u001e\u001a\u00020\u001fJ\u0006\u0010 \u001a\u00020\u001fJ\u0006\u0010!\u001a\u00020\u001fR\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\u0004R\u001b\u0010\b\u001a\u00020\t8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\f\u0010\r\u001a\u0004\b\n\u0010\u000bR\u001a\u0010\u000e\u001a\u00020\u000fX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000e\u0010\u0010\"\u0004\b\u0011\u0010\u0012R!\u0010\u0013\u001a\b\u0012\u0004\u0012\u00020\u00150\u00148BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0018\u0010\r\u001a\u0004\b\u0016\u0010\u0017\u00a8\u0006$"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/MemMonitor;", "", "context", "Landroid/content/Context;", "(Landroid/content/Context;)V", "getContext", "()Landroid/content/Context;", "setContext", "dateFormat", "Ljava/text/SimpleDateFormat;", "getDateFormat", "()Ljava/text/SimpleDateFormat;", "dateFormat$delegate", "Lkotlin/Lazy;", "isRunning", "", "()Z", "setRunning", "(Z)V", "memInfoList", "Ljava/util/ArrayList;", "Lcom/zhjt/mogo_core_function_devatools/monitor/db/MemInfo;", "getMemInfoList", "()Ljava/util/ArrayList;", "memInfoList$delegate", "getMemoryArray", "", "getMemoryValue", "", "isStarted", "saveMemInfos", "", "startRun", "stop", "Companion", "MemoryRunnable", "mogo-core-function-devatools_debug"}) +public final class MemMonitor { + @org.jetbrains.annotations.NotNull() + private android.content.Context context; + private boolean isRunning = false; + private final kotlin.Lazy memInfoList$delegate = null; + private final kotlin.Lazy dateFormat$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.monitor.MemMonitor.Companion Companion = null; + private static final java.lang.String TAG = "MemMonitor"; + public static final long INTERVAL_PERF = 1000L; + @kotlin.jvm.Volatile() + @android.annotation.SuppressLint(value = {"StaticFieldLeak"}) + private static volatile com.zhjt.mogo_core_function_devatools.monitor.MemMonitor sInstance; + + private MemMonitor(android.content.Context context) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final android.content.Context getContext() { + return null; + } + + public final void setContext(@org.jetbrains.annotations.NotNull() + android.content.Context p0) { + } + + public final boolean isRunning() { + return false; + } + + public final void setRunning(boolean p0) { + } + + private final java.util.ArrayList getMemInfoList() { + return null; + } + + private final java.text.SimpleDateFormat getDateFormat() { + return null; + } + + @kotlin.jvm.Synchronized() + public final synchronized void startRun() { + } + + @kotlin.jvm.Synchronized() + public final synchronized boolean isStarted() { + return false; + } + + @kotlin.jvm.Synchronized() + public final synchronized void stop() { + } + + public final void saveMemInfos() { + } + + /** + * 单位MB + */ + private final double getMemoryValue() { + return 0.0; + } + + /** + * 单位MB + */ + private final double[] getMemoryArray() { + return null; + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\b\u0086\u0004\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H\u0016\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/MemMonitor$MemoryRunnable;", "Ljava/lang/Runnable;", "(Lcom/zhjt/mogo_core_function_devatools/monitor/MemMonitor;)V", "run", "", "mogo-core-function-devatools_debug"}) + public final class MemoryRunnable implements java.lang.Runnable { + + public MemoryRunnable() { + super(); + } + + @java.lang.Override() + public void run() { + } + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\t\u001a\u0004\u0018\u00010\b2\u0006\u0010\n\u001a\u00020\u000bR\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082T\u00a2\u0006\u0002\n\u0000R\u0014\u0010\u0007\u001a\u0004\u0018\u00010\b8\u0002@\u0002X\u0083\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\f"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/MemMonitor$Companion;", "", "()V", "INTERVAL_PERF", "", "TAG", "", "sInstance", "Lcom/zhjt/mogo_core_function_devatools/monitor/MemMonitor;", "getInstance", "context", "Landroid/content/Context;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.Nullable() + public final com.zhjt.mogo_core_function_devatools.monitor.MemMonitor getInstance(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.kapt_metadata new file mode 100644 index 0000000000..1fc1e92572 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.java new file mode 100644 index 0000000000..12cfb4ad51 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.java @@ -0,0 +1,52 @@ +package com.zhjt.mogo_core_function_devatools.monitor; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\u0018\u0000 \u000f2\u00020\u0001:\u0001\u000fB\u000f\b\u0002\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\u0006\u0010\f\u001a\u00020\rJ\u0006\u0010\u000e\u001a\u00020\rR\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\u0004R\u000e\u0010\b\u001a\u00020\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\n\u001a\u0004\u0018\u00010\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0010"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/MonitorManager;", "", "context", "Landroid/content/Context;", "(Landroid/content/Context;)V", "getContext", "()Landroid/content/Context;", "setContext", "isStarted", "", "timer", "Ljava/util/Timer;", "startMonitor", "", "stopMonitor", "Companion", "mogo-core-function-devatools_debug"}) +public final class MonitorManager { + @org.jetbrains.annotations.NotNull() + private android.content.Context context; + private java.util.Timer timer; + private boolean isStarted = false; + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.monitor.MonitorManager.Companion Companion = null; + @kotlin.jvm.Volatile() + @android.annotation.SuppressLint(value = {"StaticFieldLeak"}) + private static volatile com.zhjt.mogo_core_function_devatools.monitor.MonitorManager sInstance; + + private MonitorManager(android.content.Context context) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final android.content.Context getContext() { + return null; + } + + public final void setContext(@org.jetbrains.annotations.NotNull() + android.content.Context p0) { + } + + /** + * 主线程中执行 + */ + public final void startMonitor() { + } + + public final void stopMonitor() { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u00042\u0006\u0010\u0006\u001a\u00020\u0007R\u0014\u0010\u0003\u001a\u0004\u0018\u00010\u00048\u0002@\u0002X\u0083\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/MonitorManager$Companion;", "", "()V", "sInstance", "Lcom/zhjt/mogo_core_function_devatools/monitor/MonitorManager;", "getInstance", "context", "Landroid/content/Context;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.Nullable() + public final com.zhjt.mogo_core_function_devatools.monitor.MonitorManager getInstance(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.kapt_metadata new file mode 100644 index 0000000000..99e6468344 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.java new file mode 100644 index 0000000000..fc6617ceb3 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.java @@ -0,0 +1,70 @@ +package com.zhjt.mogo_core_function_devatools.monitor.db; + +import java.lang.System; + +@androidx.room.Entity(tableName = "t_cpu") +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u0006\n\u0002\b\f\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0087\b\u0018\u00002\u00020\u0001B!\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\b\u0010\u0004\u001a\u0004\u0018\u00010\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0007\u00a2\u0006\u0002\u0010\bJ\t\u0010\u000f\u001a\u00020\u0003H\u00c6\u0003J\u000b\u0010\u0010\u001a\u0004\u0018\u00010\u0005H\u00c6\u0003J\t\u0010\u0011\u001a\u00020\u0007H\u00c6\u0003J)\u0010\u0012\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\n\b\u0002\u0010\u0004\u001a\u0004\u0018\u00010\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u0007H\u00c6\u0001J\u0013\u0010\u0013\u001a\u00020\u00142\b\u0010\u0015\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u0016\u001a\u00020\u0017H\u00d6\u0001J\t\u0010\u0018\u001a\u00020\u0005H\u00d6\u0001R\u0016\u0010\u0006\u001a\u00020\u00078\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\t\u0010\nR\u0018\u0010\u0004\u001a\u0004\u0018\u00010\u00058\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\fR\u0016\u0010\u0002\u001a\u00020\u00038\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\r\u0010\u000e\u00a8\u0006\u0019"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo;", "", "uuid", "", "saveTime", "", "cpuPercent", "", "(JLjava/lang/String;D)V", "getCpuPercent", "()D", "getSaveTime", "()Ljava/lang/String;", "getUuid", "()J", "component1", "component2", "component3", "copy", "equals", "", "other", "hashCode", "", "toString", "mogo-core-function-devatools_debug"}) +public final class CpuInfo { + @androidx.room.ColumnInfo(name = "id") + @androidx.room.PrimaryKey(autoGenerate = true) + private final long uuid = 0L; + @org.jetbrains.annotations.Nullable() + @androidx.room.ColumnInfo(name = "save_time") + private final java.lang.String saveTime = null; + @androidx.room.ColumnInfo(name = "cpu_percent") + private final double cpuPercent = 0.0; + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.monitor.db.CpuInfo copy(long uuid, @org.jetbrains.annotations.Nullable() + java.lang.String saveTime, double cpuPercent) { + return null; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object other) { + return false; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + public CpuInfo(long uuid, @org.jetbrains.annotations.Nullable() + java.lang.String saveTime, double cpuPercent) { + super(); + } + + public final long component1() { + return 0L; + } + + public final long getUuid() { + return 0L; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getSaveTime() { + return null; + } + + public final double component3() { + return 0.0; + } + + public final double getCpuPercent() { + return 0.0; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.kapt_metadata new file mode 100644 index 0000000000..e338783cea Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.java new file mode 100644 index 0000000000..9a832ef673 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.java @@ -0,0 +1,100 @@ +package com.zhjt.mogo_core_function_devatools.monitor.db; + +import java.lang.System; + +@androidx.room.Entity(tableName = "t_memory") +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u0006\n\u0002\b\u0015\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0087\b\u0018\u00002\u00020\u0001B7\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0007\u0012\u0006\u0010\b\u001a\u00020\u0007\u0012\u0006\u0010\t\u001a\u00020\u0007\u0012\u0006\u0010\n\u001a\u00020\u0007\u00a2\u0006\u0002\u0010\u000bJ\t\u0010\u0015\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0016\u001a\u00020\u0005H\u00c6\u0003J\t\u0010\u0017\u001a\u00020\u0007H\u00c6\u0003J\t\u0010\u0018\u001a\u00020\u0007H\u00c6\u0003J\t\u0010\u0019\u001a\u00020\u0007H\u00c6\u0003J\t\u0010\u001a\u001a\u00020\u0007H\u00c6\u0003JE\u0010\u001b\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u00072\b\b\u0002\u0010\b\u001a\u00020\u00072\b\b\u0002\u0010\t\u001a\u00020\u00072\b\b\u0002\u0010\n\u001a\u00020\u0007H\u00c6\u0001J\u0013\u0010\u001c\u001a\u00020\u001d2\b\u0010\u001e\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u001f\u001a\u00020 H\u00d6\u0001J\t\u0010!\u001a\u00020\u0005H\u00d6\u0001R\u0016\u0010\b\u001a\u00020\u00078\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\f\u0010\rR\u0016\u0010\t\u001a\u00020\u00078\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\rR\u0016\u0010\n\u001a\u00020\u00078\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\rR\u0016\u0010\u0004\u001a\u00020\u00058\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0010\u0010\u0011R\u0016\u0010\u0006\u001a\u00020\u00078\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0012\u0010\rR\u0016\u0010\u0002\u001a\u00020\u00038\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0013\u0010\u0014\u00a8\u0006\""}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/db/MemInfo;", "", "uuid", "", "saveTime", "", "totalPss", "", "dalvikPss", "nativePss", "otherPss", "(JLjava/lang/String;DDDD)V", "getDalvikPss", "()D", "getNativePss", "getOtherPss", "getSaveTime", "()Ljava/lang/String;", "getTotalPss", "getUuid", "()J", "component1", "component2", "component3", "component4", "component5", "component6", "copy", "equals", "", "other", "hashCode", "", "toString", "mogo-core-function-devatools_debug"}) +public final class MemInfo { + @androidx.room.ColumnInfo(name = "id") + @androidx.room.PrimaryKey(autoGenerate = true) + private final long uuid = 0L; + @org.jetbrains.annotations.NotNull() + @androidx.room.ColumnInfo(name = "save_time") + private final java.lang.String saveTime = null; + @androidx.room.ColumnInfo(name = "total_pss") + private final double totalPss = 0.0; + @androidx.room.ColumnInfo(name = "dalvik_pss") + private final double dalvikPss = 0.0; + @androidx.room.ColumnInfo(name = "native_pss") + private final double nativePss = 0.0; + @androidx.room.ColumnInfo(name = "other_pss") + private final double otherPss = 0.0; + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.monitor.db.MemInfo copy(long uuid, @org.jetbrains.annotations.NotNull() + java.lang.String saveTime, double totalPss, double dalvikPss, double nativePss, double otherPss) { + return null; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object other) { + return false; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + public MemInfo(long uuid, @org.jetbrains.annotations.NotNull() + java.lang.String saveTime, double totalPss, double dalvikPss, double nativePss, double otherPss) { + super(); + } + + public final long component1() { + return 0L; + } + + public final long getUuid() { + return 0L; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSaveTime() { + return null; + } + + public final double component3() { + return 0.0; + } + + public final double getTotalPss() { + return 0.0; + } + + public final double component4() { + return 0.0; + } + + public final double getDalvikPss() { + return 0.0; + } + + public final double component5() { + return 0.0; + } + + public final double getNativePss() { + return 0.0; + } + + public final double component6() { + return 0.0; + } + + public final double getOtherPss() { + return 0.0; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.kapt_metadata new file mode 100644 index 0000000000..b4735b393e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.java new file mode 100644 index 0000000000..99769c05f4 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.java @@ -0,0 +1,32 @@ +package com.zhjt.mogo_core_function_devatools.monitor.db; + +import java.lang.System; + +@androidx.room.Dao() +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u0011\n\u0002\b\b\bg\u0018\u00002\u00020\u0001J\u0016\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u00032\u0006\u0010\u0005\u001a\u00020\u0006H\'J\u0016\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\b0\u00032\u0006\u0010\u0005\u001a\u00020\u0006H\'J!\u0010\t\u001a\u00020\n2\u0012\u0010\u000b\u001a\n\u0012\u0006\b\u0001\u0012\u00020\u00040\f\"\u00020\u0004H\'\u00a2\u0006\u0002\u0010\rJ!\u0010\u000e\u001a\u00020\n2\u0012\u0010\u000f\u001a\n\u0012\u0006\b\u0001\u0012\u00020\b0\f\"\u00020\bH\'\u00a2\u0006\u0002\u0010\u0010J\u0010\u0010\u0011\u001a\u00020\n2\u0006\u0010\u0012\u001a\u00020\u0004H\'J\u0010\u0010\u0013\u001a\u00020\n2\u0006\u0010\u0012\u001a\u00020\bH\'\u00a8\u0006\u0014"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao;", "", "getAllCPUById", "", "Lcom/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo;", "id", "", "getAllMemById", "Lcom/zhjt/mogo_core_function_devatools/monitor/db/MemInfo;", "saveAllCpuInfos", "", "cpuInfo", "", "([Lcom/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo;)V", "saveAllMemInfos", "memInfo", "([Lcom/zhjt/mogo_core_function_devatools/monitor/db/MemInfo;)V", "saveCpu", "info", "saveMemory", "mogo-core-function-devatools_debug"}) +public abstract interface MonitorDao { + + @androidx.room.Insert(onConflict = androidx.room.OnConflictStrategy.REPLACE) + public abstract void saveCpu(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.monitor.db.CpuInfo info); + + @androidx.room.Insert(onConflict = androidx.room.OnConflictStrategy.REPLACE) + public abstract void saveAllCpuInfos(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.monitor.db.CpuInfo... cpuInfo); + + @androidx.room.Insert(onConflict = androidx.room.OnConflictStrategy.REPLACE) + public abstract void saveMemory(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.monitor.db.MemInfo info); + + @androidx.room.Insert(onConflict = androidx.room.OnConflictStrategy.REPLACE) + public abstract void saveAllMemInfos(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.monitor.db.MemInfo... memInfo); + + @org.jetbrains.annotations.NotNull() + @androidx.room.Query(value = "SELECT * FROM t_cpu WHERE id =:id") + public abstract java.util.List getAllCPUById(long id); + + @org.jetbrains.annotations.NotNull() + @androidx.room.Query(value = "SELECT * FROM t_memory WHERE id =:id") + public abstract java.util.List getAllMemById(long id); +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.kapt_metadata new file mode 100644 index 0000000000..30019bd62f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.java new file mode 100644 index 0000000000..363b59cfb6 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.java @@ -0,0 +1,42 @@ +package com.zhjt.mogo_core_function_devatools.monitor.db; + +import java.lang.System; + +@androidx.room.Database(entities = {com.zhjt.mogo_core_function_devatools.monitor.db.CpuInfo.class, com.zhjt.mogo_core_function_devatools.monitor.db.MemInfo.class}, version = 1, exportSchema = false) +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\b\'\u0018\u0000 \u00052\u00020\u0001:\u0001\u0005B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H&\u00a8\u0006\u0006"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb;", "Landroidx/room/RoomDatabase;", "()V", "monitorDao", "Lcom/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao;", "Companion", "mogo-core-function-devatools_debug"}) +public abstract class MonitorDb extends androidx.room.RoomDatabase { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.monitor.db.MonitorDb.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INTERNAL_DB_NAME = "mogo_monitor.db"; + private static com.zhjt.mogo_core_function_devatools.monitor.db.MonitorDb db; + + public MonitorDb() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public abstract com.zhjt.mogo_core_function_devatools.monitor.db.MonitorDao monitorDao(); + + @org.jetbrains.annotations.NotNull() + @kotlin.jvm.JvmStatic() + public static final com.zhjt.mogo_core_function_devatools.monitor.db.MonitorDb getDb(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0007\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tH\u0007R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\n"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb$Companion;", "", "()V", "INTERNAL_DB_NAME", "", "db", "Lcom/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb;", "getDb", "context", "Landroid/content/Context;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + @kotlin.jvm.JvmStatic() + public final com.zhjt.mogo_core_function_devatools.monitor.db.MonitorDb getDb(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.kapt_metadata new file mode 100644 index 0000000000..7244587088 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.java new file mode 100644 index 0000000000..ad182833f6 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.java @@ -0,0 +1,13 @@ +package com.zhjt.mogo_core_function_devatools.monitor.remote; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0003"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager;", "", "()V", "mogo-core-function-devatools_debug"}) +public final class UserServiceManager { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.monitor.remote.UserServiceManager INSTANCE = null; + + private UserServiceManager() { + super(); + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.kapt_metadata new file mode 100644 index 0000000000..ca922668f3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.java new file mode 100644 index 0000000000..ef060a3e13 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.java @@ -0,0 +1,31 @@ +package com.zhjt.mogo_core_function_devatools.monitor.utils; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u0006\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0004\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J \u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00042\u0006\u0010\u0006\u001a\u00020\u00042\u0006\u0010\u0007\u001a\u00020\bH\u0007J\u001a\u0010\t\u001a\u00020\u00042\u0006\u0010\n\u001a\u00020\u00042\b\b\u0002\u0010\u0007\u001a\u00020\bH\u0007J\u0016\u0010\u000b\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00042\u0006\u0010\u0006\u001a\u00020\u0004\u00a8\u0006\f"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils;", "", "()V", "div", "", "d1", "d2", "scale", "", "keepDecimal", "v", "mul", "mogo-core-function-devatools_debug"}) +public final class DoubleUtils { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.monitor.utils.DoubleUtils INSTANCE = null; + + private DoubleUtils() { + super(); + } + + public final double mul(double d1, double d2) { + return 0.0; + } + + @kotlin.jvm.JvmStatic() + public static final double div(double d1, double d2, int scale) { + return 0.0; + } + + /** + * 四舍五入 + * scale:保留多少个小数位 + */ + @kotlin.jvm.JvmStatic() + public static final double keepDecimal(double v, int scale) { + return 0.0; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.kapt_metadata new file mode 100644 index 0000000000..a23c5b9c92 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.java new file mode 100644 index 0000000000..ca40de1977 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.java @@ -0,0 +1,167 @@ +package com.zhjt.mogo_core_function_devatools.monitor.utils; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000h\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0006\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0006\u001a\u00020\u00072\b\u0010\b\u001a\u0004\u0018\u00010\tJ\u0010\u0010\n\u001a\u00020\u00072\b\u0010\u000b\u001a\u0004\u0018\u00010\fJ\u0010\u0010\r\u001a\u00020\u00072\b\u0010\u000e\u001a\u0004\u0018\u00010\u000fJ\u0012\u0010\u0010\u001a\u00020\u00072\b\u0010\u0011\u001a\u0004\u0018\u00010\u0012H\u0007J\u0012\u0010\u0013\u001a\u00020\u00072\b\u0010\u0014\u001a\u0004\u0018\u00010\u0015H\u0007J\u0010\u0010\u0016\u001a\u00020\u00072\b\u0010\u0017\u001a\u0004\u0018\u00010\u0018J\u0010\u0010\u0019\u001a\u00020\u00072\b\u0010\u001a\u001a\u0004\u0018\u00010\u001bJ\u0010\u0010\u001c\u001a\u00020\u00072\b\u0010\u001a\u001a\u0004\u0018\u00010\u001dJ\u0016\u0010\u001e\u001a\u00020\u00042\u0006\u0010\u001f\u001a\u00020\u00042\u0006\u0010 \u001a\u00020\u0004J\u0018\u0010!\u001a\u00020\u00072\b\u0010\u001a\u001a\u0004\u0018\u00010\"2\u0006\u0010#\u001a\u00020\"J\u001a\u0010$\u001a\u00020\u00072\b\u0010\u000b\u001a\u0004\u0018\u00010\f2\b\u0010\u001f\u001a\u0004\u0018\u00010\u0004J\u0010\u0010%\u001a\u00020\u00072\b\u0010&\u001a\u0004\u0018\u00010\u0004J\u000e\u0010\'\u001a\u00020\u00072\u0006\u0010(\u001a\u00020\"J\u0010\u0010)\u001a\u00020\u00072\b\u0010\u0017\u001a\u0004\u0018\u00010\u0018J\u000e\u0010*\u001a\u00020\u00042\u0006\u0010\u001f\u001a\u00020\u0004J\u0010\u0010+\u001a\u00020,2\b\u0010(\u001a\u0004\u0018\u00010\u0004J\u000e\u0010-\u001a\u00020,2\u0006\u0010\u0011\u001a\u00020\"J\u001a\u0010-\u001a\u00020,2\b\u0010.\u001a\u0004\u0018\u00010\"2\b\u0010/\u001a\u0004\u0018\u00010\u0004J\u000e\u00100\u001a\u00020,2\u0006\u0010\u001f\u001a\u00020\u0004J\u0010\u00101\u001a\u00020,2\b\u0010\u001f\u001a\u0004\u0018\u00010\u0004R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u00062"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil;", "", "()V", "TAG", "", "separator", "closeFileChannel", "", "chl", "Ljava/nio/channels/FileChannel;", "closeInputStream", "in", "Ljava/io/InputStream;", "closeOutputStream", "out", "Ljava/io/OutputStream;", "closeRandomAccessFile", "f", "Ljava/io/RandomAccessFile;", "closeReader", "br", "Ljava/io/Reader;", "closeWriter", "wr", "Ljava/io/Writer;", "colseLocalSocket", "s", "Landroid/net/LocalSocket;", "colseSocket", "Ljava/net/Socket;", "convertValidFilePath", "path", "defPosfix", "copyFile", "Ljava/io/File;", "t", "copyInputToFile", "delExistFile", "filePath", "deleteFile", "file", "flushWriter", "getPath", "isFileExists", "", "isFileValid", "parent", "name", "isPath", "isPathStringValid", "mogo-core-function-devatools_debug"}) +public final class FileUtil { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.monitor.utils.FileUtil INSTANCE = null; + private static final java.lang.String TAG = "FileUtil"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String separator = "/"; + + private FileUtil() { + super(); + } + + public final boolean isPathStringValid(@org.jetbrains.annotations.Nullable() + java.lang.String path) { + return false; + } + + public final boolean isPath(@org.jetbrains.annotations.NotNull() + java.lang.String path) { + return false; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getPath(@org.jetbrains.annotations.NotNull() + java.lang.String path) { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String convertValidFilePath(@org.jetbrains.annotations.NotNull() + java.lang.String path, @org.jetbrains.annotations.NotNull() + java.lang.String defPosfix) { + return null; + } + + public final boolean isFileExists(@org.jetbrains.annotations.Nullable() + java.lang.String file) { + return false; + } + + public final boolean isFileValid(@org.jetbrains.annotations.NotNull() + java.io.File f) { + return false; + } + + public final boolean isFileValid(@org.jetbrains.annotations.Nullable() + java.io.File parent, @org.jetbrains.annotations.Nullable() + java.lang.String name) { + return false; + } + + /** + * 删除存在的文件 + * + * @param filePath + */ + public final void delExistFile(@org.jetbrains.annotations.Nullable() + java.lang.String filePath) { + } + + /** + * 关闭bufferReader + * + * @param br + */ + @kotlin.jvm.JvmStatic() + public static final void closeReader(@org.jetbrains.annotations.Nullable() + java.io.Reader br) { + } + + /** + * 关闭Writer + * + * @param wr + */ + public final void closeWriter(@org.jetbrains.annotations.Nullable() + java.io.Writer wr) { + } + + /** + * flush Writer + * + * @param wr + */ + public final void flushWriter(@org.jetbrains.annotations.Nullable() + java.io.Writer wr) { + } + + /** + * 输入流的关闭 + * + * @param in + */ + public final void closeInputStream(@org.jetbrains.annotations.Nullable() + java.io.InputStream in) { + } + + /** + * 输出流的关闭 + * + * @param out + */ + public final void closeOutputStream(@org.jetbrains.annotations.Nullable() + java.io.OutputStream out) { + } + + /** + * 文件管道的关闭 + * + * @param chl + */ + public final void closeFileChannel(@org.jetbrains.annotations.Nullable() + java.nio.channels.FileChannel chl) { + } + + /** + * RandomAccessFile的关闭 + * + * @param f RandomAccessFile对象 + */ + @kotlin.jvm.JvmStatic() + public static final void closeRandomAccessFile(@org.jetbrains.annotations.Nullable() + java.io.RandomAccessFile f) { + } + + /** + * Socket的关闭 + * + * @param s Socket对象 + */ + public final void colseSocket(@org.jetbrains.annotations.Nullable() + java.net.Socket s) { + } + + /** + * LocalSocket的关闭 + * + * @param s Socket对象 + */ + public final void colseLocalSocket(@org.jetbrains.annotations.Nullable() + android.net.LocalSocket s) { + } + + public final void deleteFile(@org.jetbrains.annotations.NotNull() + java.io.File file) { + } + + /** + * 拷贝文件 + * + * @param s 源文件 + * @param t 目标文件 + */ + public final void copyFile(@org.jetbrains.annotations.Nullable() + java.io.File s, @org.jetbrains.annotations.NotNull() + java.io.File t) { + } + + public final void copyInputToFile(@org.jetbrains.annotations.Nullable() + java.io.InputStream in, @org.jetbrains.annotations.Nullable() + java.lang.String path) { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.kapt_metadata new file mode 100644 index 0000000000..eeee3c0b4e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.java new file mode 100644 index 0000000000..62e01a44fb --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.java @@ -0,0 +1,82 @@ +package com.zhjt.mogo_core_function_devatools.report; + +import java.lang.System; + +/** + * @author XuXinChao + * @description 工控机监控节点信息上报管理 + * @since: 2022/5/12 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\u0018\u0000 \r2\u00020\u0001:\u0001\rB\u0005\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0007\u001a\u00020\bJ\u0006\u0010\t\u001a\u00020\bJ\u0012\u0010\n\u001a\u00020\b2\b\u0010\u000b\u001a\u0004\u0018\u00010\fH\u0016R\u0014\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0014\u0010\u0006\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000e"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/report/IPCReportManager;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoAutopilotStatusListener;", "()V", "ipcErrorReportList", "Ljava/util/ArrayList;", "Lcom/mogo/eagle/core/data/report/ReportEntity;", "ipcWarningReportList", "destroy", "", "initServer", "onAutopilotGuardian", "guardianInfo", "Lmogo_msg/MogoReportMsg$MogoReportMessage;", "Companion", "mogo-core-function-devatools_debug"}) +public final class IPCReportManager implements com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener { + private java.util.ArrayList ipcErrorReportList; + private java.util.ArrayList ipcWarningReportList; + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.report.IPCReportManager.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "IPCReportManager"; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy iPCReportManager$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String RESULT_AUTOPILOT_INFERIOR = "RESULT_AUTOPILOT_INFERIOR"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String RESULT_SHOW_WARNING = "RESULT_SHOW_WARNING"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String RESULT_REMOTEPILOT_INFERIOR = "RESULT_REMOTEPILOT_INFERIOR"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String RESULT_AUTOPILOT_DISABLE = "RESULT_AUTOPILOT_DISABLE"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String RESULT_AUTOPILOT_SYSTEM_UNSTARTED = "RESULT_AUTOPILOT_SYSTEM_UNSTARTED"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String RESULT_REMOTEPILOT_DISABLE = "RESULT_REMOTEPILOT_DISABLE"; + + public IPCReportManager() { + super(); + } + + public final void initServer() { + } + + /** + * 工控机监控节点上报 + */ + @java.lang.Override() + public void onAutopilotGuardian(@org.jetbrains.annotations.Nullable() + mogo_msg.MogoReportMsg.MogoReportMessage guardianInfo) { + } + + public final void destroy() { + } + + public void onAutopilotArriveAtStation(@org.jetbrains.annotations.Nullable() + mogo.telematics.pad.MessagePad.ArrivalNotification arrivalNotification) { + } + + public void onAutopilotIpcConnectStatusChanged(int status, @org.jetbrains.annotations.Nullable() + java.lang.String reason) { + } + + public void onAutopilotSNRequest() { + } + + public void onAutopilotStatusRespByQuery(@org.jetbrains.annotations.NotNull() + system_master.SystemStatusInfo.StatusInfo status) { + } + + public void onAutopilotStatusResponse(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.autopilot.AutopilotStatusInfo autoPilotStatusInfo) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u000b\u001a\u00020\f8FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u000f\u0010\u0010\u001a\u0004\b\r\u0010\u000e\u00a8\u0006\u0011"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/report/IPCReportManager$Companion;", "", "()V", "RESULT_AUTOPILOT_DISABLE", "", "RESULT_AUTOPILOT_INFERIOR", "RESULT_AUTOPILOT_SYSTEM_UNSTARTED", "RESULT_REMOTEPILOT_DISABLE", "RESULT_REMOTEPILOT_INFERIOR", "RESULT_SHOW_WARNING", "TAG", "iPCReportManager", "Lcom/zhjt/mogo_core_function_devatools/report/IPCReportManager;", "getIPCReportManager", "()Lcom/zhjt/mogo_core_function_devatools/report/IPCReportManager;", "iPCReportManager$delegate", "Lkotlin/Lazy;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.report.IPCReportManager getIPCReportManager() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.kapt_metadata new file mode 100644 index 0000000000..8d5fc018a7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.java new file mode 100644 index 0000000000..a825187092 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.java @@ -0,0 +1,68 @@ +package com.zhjt.mogo_core_function_devatools.scene; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000<\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010%\n\u0002\u0010\u000e\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0007\u0018\u0000 \u00172\u00020\u0001:\u0001\u0017B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0012\u0010\u0007\u001a\u000e\u0012\u0004\u0012\u00020\t\u0012\u0004\u0012\u00020\n0\bJ\u0012\u0010\u000b\u001a\u000e\u0012\u0004\u0012\u00020\t\u0012\u0004\u0012\u00020\f0\bJ\u0018\u0010\r\u001a\u00020\u000e2\u0006\u0010\u000f\u001a\u00020\t2\u0006\u0010\u0010\u001a\u00020\u0011H\u0002J\u001a\u0010\u0012\u001a\u00020\u000e2\u0012\u0010\u0013\u001a\u000e\u0012\u0004\u0012\u00020\t\u0012\u0004\u0012\u00020\n0\bJ\b\u0010\u0014\u001a\u00020\u000eH\u0002J\u001a\u0010\u0015\u001a\u00020\u000e2\u0012\u0010\u0016\u001a\u000e\u0012\u0004\u0012\u00020\t\u0012\u0004\u0012\u00020\f0\bR\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0018"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/scene/SceneManager;", "", "()V", "sceneLogTAG", "Lcom/mogo/eagle/core/data/deva/scene/SceneLogTAG;", "sceneModuleTAG", "Lcom/mogo/eagle/core/data/deva/scene/SceneModuleTAG;", "getModuleLogTAG", "", "", "Lcom/mogo/eagle/core/data/deva/scene/SceneModule;", "getSceneLogTAG", "Lcom/mogo/eagle/core/data/deva/scene/SceneTAG;", "realUpdateSceneTAG", "", "name", "logger", "", "updateModuleTAG", "moduleTag", "updateSceneModuleTAG", "updateSceneTAG", "sceneTag", "Companion", "mogo-core-function-devatools_debug"}) +public final class SceneManager { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.scene.SceneManager.Companion Companion = null; + private static final java.lang.String ADAS = "ADAS"; + private static final java.lang.String CALLCHAT = "CALLCHAT"; + private static final java.lang.String DEVA = "DEVA"; + private static final java.lang.String HMI = "HMI"; + private static final java.lang.String OBU = "OBU"; + private static final java.lang.String V2X = "V2X"; + private static final java.lang.String MAP = "MAP"; + private static final java.lang.String ROUTE = "ROUTE"; + private static final java.lang.String NET = "NET"; + private static final java.lang.String BUS = "BUS"; + private static final java.lang.String TAXI = "TAXI"; + private static final java.lang.String SWEEPER = "SWEEPER"; + private static final java.lang.String TAXI_P = "TAXI_P"; + private static final java.lang.String OTHER = "OTHER"; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy sceneManager$delegate = null; + private com.mogo.eagle.core.data.deva.scene.SceneModuleTAG sceneModuleTAG; + private com.mogo.eagle.core.data.deva.scene.SceneLogTAG sceneLogTAG; + + public SceneManager() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.util.Map getModuleLogTAG() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.util.Map getSceneLogTAG() { + return null; + } + + public final void updateModuleTAG(@org.jetbrains.annotations.NotNull() + java.util.Map moduleTag) { + } + + public final void updateSceneTAG(@org.jetbrains.annotations.NotNull() + java.util.Map sceneTag) { + } + + private final void updateSceneModuleTAG() { + } + + private final void realUpdateSceneTAG(java.lang.String name, boolean logger) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u000e\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000b\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\f\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\r\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000e\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000f\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0010\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0011\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0012\u001a\u00020\u00138FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0016\u0010\u0017\u001a\u0004\b\u0014\u0010\u0015\u00a8\u0006\u0018"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/scene/SceneManager$Companion;", "", "()V", "ADAS", "", "BUS", "CALLCHAT", "DEVA", "HMI", "MAP", "NET", "OBU", "OTHER", "ROUTE", "SWEEPER", "TAXI", "TAXI_P", "V2X", "sceneManager", "Lcom/zhjt/mogo_core_function_devatools/scene/SceneManager;", "getSceneManager", "()Lcom/zhjt/mogo_core_function_devatools/scene/SceneManager;", "sceneManager$delegate", "Lkotlin/Lazy;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.scene.SceneManager getSceneManager() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.kapt_metadata new file mode 100644 index 0000000000..1023d6e897 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.java new file mode 100644 index 0000000000..6aa8e88953 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.java @@ -0,0 +1,59 @@ +package com.zhjt.mogo_core_function_devatools.status; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000X\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\b\b\u00c6\u0002\u0018\u00002\u00020\u0001:\u0001&B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u001b\u001a\u00020\u001cJ\u000e\u0010\u001d\u001a\u00020\u001c2\u0006\u0010\u001e\u001a\u00020\u001fJ\u0010\u0010 \u001a\u00020\u001c2\u0006\u0010\u001e\u001a\u00020\u001fH\u0002J\u0010\u0010!\u001a\u00020\u001c2\u0006\u0010\u001e\u001a\u00020\u001fH\u0002J\u000e\u0010\"\u001a\u00020\u001c2\u0006\u0010#\u001a\u00020\u0015J\u000e\u0010$\u001a\u00020\u001c2\u0006\u0010\u0005\u001a\u00020\u0007J\u000e\u0010%\u001a\u00020\u001c2\u0006\u0010#\u001a\u00020\u0015R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u0005\u001a\n\u0012\u0004\u0012\u00020\u0007\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R;\u0010\b\u001a\"\u0012\f\u0012\n\u0012\u0006\b\u0001\u0012\u00020\u000b0\n0\tj\u0010\u0012\f\u0012\n\u0012\u0006\b\u0001\u0012\u00020\u000b0\n`\f8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u000f\u0010\u0010\u001a\u0004\b\r\u0010\u000eR\u000e\u0010\u0011\u001a\u00020\u0012X\u0082\u000e\u00a2\u0006\u0002\n\u0000R!\u0010\u0013\u001a\b\u0012\u0004\u0012\u00020\u00150\u00148BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0018\u0010\u0010\u001a\u0004\b\u0016\u0010\u0017R\u000e\u0010\u0019\u001a\u00020\u001aX\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\'"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/StatusManager;", "", "()V", "TAG", "", "container", "Ljava/lang/ref/WeakReference;", "Landroid/view/ViewGroup;", "flows", "Ljava/util/ArrayList;", "Lcom/zhjt/mogo_core_function_devatools/status/flow/IFlow;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "Lkotlin/collections/ArrayList;", "getFlows", "()Ljava/util/ArrayList;", "flows$delegate", "Lkotlin/Lazy;", "hasInit", "", "listeners", "Ljava/util/concurrent/CopyOnWriteArrayList;", "Lcom/zhjt/mogo_core_function_devatools/status/StatusManager$IStatusListener;", "getListeners", "()Ljava/util/concurrent/CopyOnWriteArrayList;", "listeners$delegate", "model", "Lcom/zhjt/mogo_core_function_devatools/status/model/StatusModel;", "hide", "", "init", "ctx", "Landroid/content/Context;", "onCreate", "onDestroy", "registerListener", "listener", "show", "unRegisterListener", "IStatusListener", "mogo-core-function-devatools_debug"}) +public final class StatusManager { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.status.StatusManager INSTANCE = null; + private static final java.lang.String TAG = "StatusManager"; + private static com.zhjt.mogo_core_function_devatools.status.model.StatusModel model; + private static boolean hasInit = false; + private static final kotlin.Lazy listeners$delegate = null; + private static java.lang.ref.WeakReference container; + private static final kotlin.Lazy flows$delegate = null; + + private StatusManager() { + super(); + } + + private final java.util.concurrent.CopyOnWriteArrayList getListeners() { + return null; + } + + private final java.util.ArrayList> getFlows() { + return null; + } + + public final void init(@org.jetbrains.annotations.NotNull() + android.content.Context ctx) { + } + + private final void onCreate(android.content.Context ctx) { + } + + public final void registerListener(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.status.StatusManager.IStatusListener listener) { + } + + public final void unRegisterListener(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.status.StatusManager.IStatusListener listener) { + } + + public final void show(@org.jetbrains.annotations.NotNull() + android.view.ViewGroup container) { + } + + public final void hide() { + } + + private final void onDestroy(android.content.Context ctx) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0000\bf\u0018\u00002\u00020\u0001J\u001e\u0010\u0002\u001a\u00020\u00032\f\u0010\u0004\u001a\b\u0012\u0004\u0012\u00020\u00060\u00052\u0006\u0010\u0007\u001a\u00020\bH&\u00a8\u0006\t"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/StatusManager$IStatusListener;", "", "onStatusChanged", "", "data", "", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "hasException", "", "mogo-core-function-devatools_debug"}) + public static abstract interface IStatusListener { + + public abstract void onStatusChanged(@org.jetbrains.annotations.NotNull() + java.util.List data, boolean hasException); + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.kapt_metadata new file mode 100644 index 0000000000..e3f0f48674 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.java new file mode 100644 index 0000000000..359269341e --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.java @@ -0,0 +1,48 @@ +package com.zhjt.mogo_core_function_devatools.status.entity; + +import java.lang.System; + +/** + * Can总线 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0006\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\u0018\u00002\u00020\u0001B\u000f\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\u0013\u0010\b\u001a\u00020\u00032\b\u0010\t\u001a\u0004\u0018\u00010\nH\u0096\u0002J\b\u0010\u000b\u001a\u00020\fH\u0016J\b\u0010\r\u001a\u00020\u0003H\u0016J\b\u0010\u000e\u001a\u00020\u000fH\u0016R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\u0004\u00a8\u0006\u0010"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/entity/CanStatus;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "enabled", "", "(Z)V", "getEnabled", "()Z", "setEnabled", "equals", "other", "", "hashCode", "", "isException", "toString", "", "mogo-core-function-devatools_debug"}) +public final class CanStatus extends com.zhjt.mogo_core_function_devatools.status.entity.Status { + private boolean enabled; + + public CanStatus() { + super(); + } + + public CanStatus(boolean enabled) { + super(); + } + + public final boolean getEnabled() { + return false; + } + + public final void setEnabled(boolean p0) { + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object other) { + return false; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public boolean isException() { + return false; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.kapt_metadata new file mode 100644 index 0000000000..2019bfba9a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.java new file mode 100644 index 0000000000..939a904c5d --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.java @@ -0,0 +1,50 @@ +package com.zhjt.mogo_core_function_devatools.status.entity; + +import java.lang.System; + +/** + * android系统定位状态 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0006\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\u0018\u00002\u00020\u0001B\u0019\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\b\b\u0002\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0005J\u0013\u0010\b\u001a\u00020\u00032\b\u0010\t\u001a\u0004\u0018\u00010\nH\u0096\u0002J\b\u0010\u000b\u001a\u00020\fH\u0016J\b\u0010\r\u001a\u00020\u0003H\u0016J\b\u0010\u000e\u001a\u00020\u000fH\u0016R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007R\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0004\u0010\u0007\u00a8\u0006\u0010"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/entity/GpsStatus;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "enabled", "", "isGranted", "(ZZ)V", "getEnabled", "()Z", "equals", "other", "", "hashCode", "", "isException", "toString", "", "mogo-core-function-devatools_debug"}) +public final class GpsStatus extends com.zhjt.mogo_core_function_devatools.status.entity.Status { + private final boolean enabled = false; + private final boolean isGranted = false; + + public GpsStatus() { + super(); + } + + public GpsStatus(boolean enabled, boolean isGranted) { + super(); + } + + public final boolean getEnabled() { + return false; + } + + public final boolean isGranted() { + return false; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object other) { + return false; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public boolean isException() { + return false; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.kapt_metadata new file mode 100644 index 0000000000..1bb05805d1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.java new file mode 100644 index 0000000000..e05e013eac --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.java @@ -0,0 +1,45 @@ +package com.zhjt.mogo_core_function_devatools.status.entity; + +import java.lang.System; + +/** + * 工控机 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0005\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\u0018\u00002\u00020\u0001B\u000f\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\u0013\u0010\u0007\u001a\u00020\u00032\b\u0010\b\u001a\u0004\u0018\u00010\tH\u0096\u0002J\b\u0010\n\u001a\u00020\u000bH\u0016J\b\u0010\f\u001a\u00020\u0003H\u0016J\b\u0010\r\u001a\u00020\u000eH\u0016R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\u000f"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/entity/IpcStatus;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "enabled", "", "(Z)V", "getEnabled", "()Z", "equals", "other", "", "hashCode", "", "isException", "toString", "", "mogo-core-function-devatools_debug"}) +public final class IpcStatus extends com.zhjt.mogo_core_function_devatools.status.entity.Status { + private final boolean enabled = false; + + public IpcStatus() { + super(); + } + + public IpcStatus(boolean enabled) { + super(); + } + + public final boolean getEnabled() { + return false; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object other) { + return false; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public boolean isException() { + return false; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.kapt_metadata new file mode 100644 index 0000000000..5542c4b43d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.java new file mode 100644 index 0000000000..556a857d7a --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.java @@ -0,0 +1,56 @@ +package com.zhjt.mogo_core_function_devatools.status.entity; + +import java.lang.System; + +/** + * RTK/GNSS定位状态 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0002\b\n\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0002\b\u0004\u0018\u00002\u00020\u0001B\u0017\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u0013\u0010\u000f\u001a\u00020\u00102\b\u0010\u0011\u001a\u0004\u0018\u00010\u0012H\u0096\u0002J\b\u0010\u0013\u001a\u00020\u0005H\u0016J\b\u0010\u0014\u001a\u00020\u0010H\u0016J\b\u0010\u0015\u001a\u00020\u0003H\u0016R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0007\u0010\b\"\u0004\b\t\u0010\nR\u001a\u0010\u0004\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000b\u0010\f\"\u0004\b\r\u0010\u000e\u00a8\u0006\u0016"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/entity/RTKStatus;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "desc", "", "state", "", "(Ljava/lang/String;I)V", "getDesc", "()Ljava/lang/String;", "setDesc", "(Ljava/lang/String;)V", "getState", "()I", "setState", "(I)V", "equals", "", "other", "", "hashCode", "isException", "toString", "mogo-core-function-devatools_debug"}) +public final class RTKStatus extends com.zhjt.mogo_core_function_devatools.status.entity.Status { + @org.jetbrains.annotations.NotNull() + private java.lang.String desc; + private int state; + + public RTKStatus(@org.jetbrains.annotations.NotNull() + java.lang.String desc, int state) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getDesc() { + return null; + } + + public final void setDesc(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public final int getState() { + return 0; + } + + public final void setState(int p0) { + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object other) { + return false; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public boolean isException() { + return false; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.kapt_metadata new file mode 100644 index 0000000000..87097edb3d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.java new file mode 100644 index 0000000000..a1e2cc0510 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.java @@ -0,0 +1,20 @@ +package com.zhjt.mogo_core_function_devatools.status.entity; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\b6\u0018\u00002\u00020\u0001B\u0007\b\u0004\u00a2\u0006\u0002\u0010\u0002J\u0013\u0010\u0003\u001a\u00020\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u0001H\u00a6\u0002J\b\u0010\u0006\u001a\u00020\u0007H&J\b\u0010\b\u001a\u00020\u0004H&\u0082\u0001\u0005\t\n\u000b\f\r\u00a8\u0006\u000e"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "", "()V", "equals", "", "other", "hashCode", "", "isException", "Lcom/zhjt/mogo_core_function_devatools/status/entity/IpcStatus;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/GpsStatus;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/RTKStatus;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/CanStatus;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/TracingStatus;", "mogo-core-function-devatools_debug"}) +public abstract class Status { + + private Status() { + super(); + } + + public abstract boolean isException(); + + @java.lang.Override() + public abstract boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object other); + + @java.lang.Override() + public abstract int hashCode(); +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.kapt_metadata new file mode 100644 index 0000000000..8be5406520 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.java new file mode 100644 index 0000000000..055468f199 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.java @@ -0,0 +1,14 @@ +package com.zhjt.mogo_core_function_devatools.status.entity; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 2, d1 = {"\u0000\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u000e\n\u0002\b\u0002\u001a\u0016\u0010\u0000\u001a\u0004\u0018\u00010\u0001*\u00020\u00022\b\u0010\u0003\u001a\u0004\u0018\u00010\u0002\u00a8\u0006\u0004"}, d2 = {"toState", "Lcom/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing;", "", "msg", "mogo-core-function-devatools_debug"}) +public final class StatusKt { + + @org.jetbrains.annotations.Nullable() + public static final com.zhjt.mogo_core_function_devatools.status.entity.TracingStatus.Tracing toState(@org.jetbrains.annotations.NotNull() + java.lang.String $this$toState, @org.jetbrains.annotations.Nullable() + java.lang.String msg) { + return null; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.kapt_metadata new file mode 100644 index 0000000000..022257e1e3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.java new file mode 100644 index 0000000000..836f4229cf --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.java @@ -0,0 +1,91 @@ +package com.zhjt.mogo_core_function_devatools.status.entity; + +import java.lang.System; + +/** + * 寻迹/算路/未知 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0002\u0018\u00002\u00020\u0001:\u0001\u0011B\u000f\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\u0013\u0010\b\u001a\u00020\t2\b\u0010\n\u001a\u0004\u0018\u00010\u000bH\u0096\u0002J\b\u0010\f\u001a\u00020\rH\u0016J\b\u0010\u000e\u001a\u00020\tH\u0016J\b\u0010\u000f\u001a\u00020\u0010H\u0016R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\u0004\u00a8\u0006\u0012"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/entity/TracingStatus;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "state", "Lcom/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing;", "(Lcom/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing;)V", "getState", "()Lcom/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing;", "setState", "equals", "", "other", "", "hashCode", "", "isException", "toString", "", "Tracing", "mogo-core-function-devatools_debug"}) +public final class TracingStatus extends com.zhjt.mogo_core_function_devatools.status.entity.Status { + @org.jetbrains.annotations.NotNull() + private com.zhjt.mogo_core_function_devatools.status.entity.TracingStatus.Tracing state; + + public TracingStatus() { + super(); + } + + public TracingStatus(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.status.entity.TracingStatus.Tracing state) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.status.entity.TracingStatus.Tracing getState() { + return null; + } + + public final void setState(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.status.entity.TracingStatus.Tracing p0) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object other) { + return false; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean isException() { + return false; + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010$\n\u0002\b\b\n\u0002\u0010\u000b\n\u0002\b\u000b\b\u0086\u0001\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B+\b\u0002\u0012\n\b\u0002\u0010\u0002\u001a\u0004\u0018\u00010\u0003\u0012\u0016\b\u0002\u0010\u0004\u001a\u0010\u0012\u0004\u0012\u00020\u0003\u0012\u0004\u0012\u00020\u0003\u0018\u00010\u0005\u00a2\u0006\u0002\u0010\u0006J\u0006\u0010\r\u001a\u00020\u000eR\u0013\u0010\u0002\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR(\u0010\u0004\u001a\u0010\u0012\u0004\u0012\u00020\u0003\u0012\u0004\u0012\u00020\u0003\u0018\u00010\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\t\u0010\n\"\u0004\b\u000b\u0010\fj\u0002\b\u000fj\u0002\b\u0010j\u0002\b\u0011j\u0002\b\u0012j\u0002\b\u0013j\u0002\b\u0014j\u0002\b\u0015j\u0002\b\u0016j\u0002\b\u0017j\u0002\b\u0018\u00a8\u0006\u0019"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing;", "", "code", "", "extra", "", "(Ljava/lang/String;ILjava/lang/String;Ljava/util/Map;)V", "getCode", "()Ljava/lang/String;", "getExtra", "()Ljava/util/Map;", "setExtra", "(Ljava/util/Map;)V", "isException", "", "MAP_TRA_TYPE", "MAP_DATA_EXIST", "MAP_DATA_NOT_EXIST", "TRACK_FINDED", "TRACK_LOADED", "TRACK_NOT_EXIST", "TRACK_LOAD_FAIL", "ROUTE_LOADED", "ROUTE_FAILED", "UNKNOWN", "mogo-core-function-devatools_debug"}) + public static enum Tracing { + /*public static final*/ MAP_TRA_TYPE /* = new MAP_TRA_TYPE(null, null) */, + /*public static final*/ MAP_DATA_EXIST /* = new MAP_DATA_EXIST(null, null) */, + /*public static final*/ MAP_DATA_NOT_EXIST /* = new MAP_DATA_NOT_EXIST(null, null) */, + /*public static final*/ TRACK_FINDED /* = new TRACK_FINDED(null, null) */, + /*public static final*/ TRACK_LOADED /* = new TRACK_LOADED(null, null) */, + /*public static final*/ TRACK_NOT_EXIST /* = new TRACK_NOT_EXIST(null, null) */, + /*public static final*/ TRACK_LOAD_FAIL /* = new TRACK_LOAD_FAIL(null, null) */, + /*public static final*/ ROUTE_LOADED /* = new ROUTE_LOADED(null, null) */, + /*public static final*/ ROUTE_FAILED /* = new ROUTE_FAILED(null, null) */, + /*public static final*/ UNKNOWN /* = new UNKNOWN(null, null) */; + @org.jetbrains.annotations.Nullable() + private final java.lang.String code = null; + @org.jetbrains.annotations.Nullable() + private java.util.Map extra; + + Tracing(java.lang.String code, java.util.Map extra) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCode() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.util.Map getExtra() { + return null; + } + + public final void setExtra(@org.jetbrains.annotations.Nullable() + java.util.Map p0) { + } + + public final boolean isException() { + return false; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.kapt_metadata new file mode 100644 index 0000000000..cc71b515fc Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.java new file mode 100644 index 0000000000..eb96834b0c --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.java @@ -0,0 +1,48 @@ +package com.zhjt.mogo_core_function_devatools.status.flow; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00006\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0005\b \u0018\u0000*\b\b\u0000\u0010\u0001*\u00020\u00022\u00020\u0003B\r\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\f\u0010\u0015\u001a\b\u0012\u0004\u0012\u00028\u00000\u0016J\b\u0010\u0017\u001a\u00020\u0018H&J\b\u0010\u0019\u001a\u00020\u0018H\u0017J\u0013\u0010\u001a\u001a\u00020\u00182\u0006\u0010\u001b\u001a\u00028\u0000\u00a2\u0006\u0002\u0010\u001cR!\u0010\u0007\u001a\b\u0012\u0004\u0012\u00028\u00000\b8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u000b\u0010\f\u001a\u0004\b\t\u0010\nR\u0014\u0010\r\u001a\u00020\u000e8VX\u0096\u0004\u00a2\u0006\u0006\u001a\u0004\b\u000f\u0010\u0010R\u0011\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0011\u0010\u0012R\u0012\u0010\u0013\u001a\u0004\u0018\u00018\u0000X\u0082\u000e\u00a2\u0006\u0004\n\u0002\u0010\u0014\u00a8\u0006\u001d"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/IFlow;", "T", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "Lkotlinx/coroutines/CoroutineScope;", "ctx", "Landroid/content/Context;", "(Landroid/content/Context;)V", "chl", "Lkotlinx/coroutines/channels/Channel;", "getChl", "()Lkotlinx/coroutines/channels/Channel;", "chl$delegate", "Lkotlin/Lazy;", "coroutineContext", "Lkotlin/coroutines/CoroutineContext;", "getCoroutineContext", "()Lkotlin/coroutines/CoroutineContext;", "getCtx", "()Landroid/content/Context;", "old", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "asFlow", "Lkotlinx/coroutines/flow/Flow;", "onCreate", "", "onDestroy", "send", "t", "(Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;)V", "mogo-core-function-devatools_debug"}) +public abstract class IFlow implements kotlinx.coroutines.CoroutineScope { + @org.jetbrains.annotations.NotNull() + private final android.content.Context ctx = null; + private final kotlin.Lazy chl$delegate = null; + @kotlin.jvm.Volatile() + private volatile T old; + + public IFlow(@org.jetbrains.annotations.NotNull() + android.content.Context ctx) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final android.content.Context getCtx() { + return null; + } + + private final kotlinx.coroutines.channels.Channel getChl() { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public kotlin.coroutines.CoroutineContext getCoroutineContext() { + return null; + } + + public abstract void onCreate(); + + @org.jetbrains.annotations.NotNull() + @kotlin.OptIn(markerClass = {kotlinx.coroutines.ExperimentalCoroutinesApi.class}) + public final kotlinx.coroutines.flow.Flow asFlow() { + return null; + } + + public final void send(@org.jetbrains.annotations.NotNull() + T t) { + } + + @androidx.annotation.CallSuper() + public void onDestroy() { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.kapt_metadata new file mode 100644 index 0000000000..aab41951d4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.java new file mode 100644 index 0000000000..c19cf6a4de --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.java @@ -0,0 +1,110 @@ +package com.zhjt.mogo_core_function_devatools.status.flow.can; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0098\u0001\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u0007\n\u0002\b\u0006\n\u0002\u0010\t\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\b\n\u0002\u0018\u0002\n\u0002\b\u0003\b\u0000\u0018\u0000 >2\b\u0012\u0004\u0012\u00020\u00020\u00012\u00020\u00032\u00020\u00042\u00020\u00052\u00020\u00062\u00020\u00072\u00020\b2\u00020\t2\u00020\n2\u00020\u000b:\u0001>B\r\u0012\u0006\u0010\f\u001a\u00020\r\u00a2\u0006\u0002\u0010\u000eJ\b\u0010\u0017\u001a\u00020\u0018H\u0002J\u0010\u0010\u0019\u001a\u00020\u001a2\u0006\u0010\u001b\u001a\u00020\u001cH\u0016J\u0010\u0010\u001d\u001a\u00020\u001a2\u0006\u0010\u001e\u001a\u00020\u001cH\u0016J\u0010\u0010\u001f\u001a\u00020\u001a2\u0006\u0010 \u001a\u00020\u0018H\u0016J\u0010\u0010!\u001a\u00020\u001a2\u0006\u0010\"\u001a\u00020#H\u0016J\u0010\u0010$\u001a\u00020\u001a2\u0006\u0010%\u001a\u00020&H\u0016J\u0012\u0010\'\u001a\u00020\u001a2\b\u0010(\u001a\u0004\u0018\u00010)H\u0016J\u001a\u0010*\u001a\u00020\u001a2\u0006\u0010+\u001a\u00020,2\b\u0010-\u001a\u0004\u0018\u00010.H\u0016J\u0012\u0010/\u001a\u00020\u001a2\b\u00100\u001a\u0004\u0018\u000101H\u0016J\u0010\u00102\u001a\u00020\u001a2\u0006\u0010+\u001a\u000203H\u0016J\u0010\u00104\u001a\u00020\u001a2\u0006\u00105\u001a\u00020\u001cH\u0016J\u0010\u00106\u001a\u00020\u001a2\u0006\u00107\u001a\u00020\u001cH\u0016J\b\u00108\u001a\u00020\u001aH\u0016J\b\u00109\u001a\u00020\u001aH\u0016J\u0010\u0010:\u001a\u00020\u001a2\u0006\u0010;\u001a\u00020 implements com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotVehicleStateListener, com.mogo.eagle.core.function.api.autopilot.IMoGoChassisAccStateListener, com.mogo.eagle.core.function.api.autopilot.IMoGoChassisSteeringStateListener, com.mogo.eagle.core.function.api.autopilot.IMoGoChassisGearStateListener, com.mogo.eagle.core.function.api.autopilot.IMoGoChassisBrakeStateListener, com.mogo.eagle.core.function.api.autopilot.IMoGoChassisThrottleStateListener, com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener, com.mogo.eagle.core.function.api.autopilot.IMoGoChassisLamplightListener, com.mogo.eagle.core.function.api.autopilot.IMoGoSweeperFutianCleanSystemListener { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.status.flow.can.CanImpl.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "CanImpl"; + private kotlinx.coroutines.Job job; + private final kotlin.Lazy state$delegate = null; + + public CanImpl(@org.jetbrains.annotations.NotNull() + android.content.Context ctx) { + super(null); + } + + private final java.util.concurrent.atomic.AtomicInteger getState() { + return null; + } + + @java.lang.Override() + public void onCreate() { + } + + @java.lang.Override() + public void onAutopilotLightSwitchData(@org.jetbrains.annotations.Nullable() + chassis.Chassis.LightSwitch lightSwitch) { + } + + private final boolean isCanEnabled() { + return false; + } + + @java.lang.Override() + public void onAutopilotBrakeLightData(boolean brakeLight) { + } + + @java.lang.Override() + public void onAutopilotSteeringData(float steering) { + } + + @java.lang.Override() + public void onAutopilotGearData(@org.jetbrains.annotations.NotNull() + chassis.Chassis.GearPosition gear) { + } + + @java.lang.Override() + public void onAutopilotIpcConnectStatusChanged(int status, @org.jetbrains.annotations.Nullable() + java.lang.String reason) { + } + + @java.lang.Override() + public void onAutopilotDataException(long timestamp) { + } + + @java.lang.Override() + public void onAutopilotAcc(float carAcc) { + } + + @java.lang.Override() + public void onAutopilotThrottle(float throttle) { + } + + @java.lang.Override() + public void onAutopilotBrake(float brake) { + } + + @java.lang.Override() + public void onSweeperFutianCleanSystemState(@org.jetbrains.annotations.NotNull() + chassis.ChassisStatesOuterClass.SweeperFuTianTaskSystemStates cleanSystemState) { + } + + @java.lang.Override() + public void onAutopilotGuardian(@org.jetbrains.annotations.Nullable() + mogo_msg.MogoReportMsg.MogoReportMessage guardianInfo) { + } + + @java.lang.Override() + public void onAutopilotStatusRespByQuery(@org.jetbrains.annotations.NotNull() + system_master.SystemStatusInfo.StatusInfo status) { + } + + private final void timeOutCheck() { + } + + @java.lang.Override() + public void onDestroy() { + } + + public void onAutopilotArriveAtStation(@org.jetbrains.annotations.Nullable() + mogo.telematics.pad.MessagePad.ArrivalNotification arrivalNotification) { + } + + public void onAutopilotSNRequest() { + } + + public void onAutopilotStatusResponse(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.autopilot.AutopilotStatusInfo autoPilotStatusInfo) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$Companion;", "", "()V", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.kapt_metadata new file mode 100644 index 0000000000..1319d2e3b3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.java new file mode 100644 index 0000000000..236123ae71 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.java @@ -0,0 +1,66 @@ +package com.zhjt.mogo_core_function_devatools.status.flow.gps; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000<\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\t\b\u0000\u0018\u0000 \u00192\b\u0012\u0004\u0012\u00020\u00020\u0001:\u0002\u0018\u0019B\r\u0012\u0006\u0010\u0003\u001a\u00020\u0004\u00a2\u0006\u0002\u0010\u0005J\b\u0010\u0010\u001a\u00020\u0011H\u0002J\b\u0010\u0012\u001a\u00020\u0011H\u0002J\b\u0010\u0013\u001a\u00020\bH\u0016J\b\u0010\u0014\u001a\u00020\bH\u0016J\u0018\u0010\u0015\u001a\u00020\b2\u0006\u0010\u0016\u001a\u00020\u00112\u0006\u0010\u0017\u001a\u00020\u0011H\u0002R\u0014\u0010\u0006\u001a\b\u0012\u0004\u0012\u00020\b0\u0007X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0014\u0010\t\u001a\b\u0012\u0004\u0012\u00020\b0\u0007X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u000bX\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0014\u0010\f\u001a\b\u0018\u00010\rR\u00020\u0000X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000e\u001a\u00020\u000fX\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001a"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl;", "Lcom/zhjt/mogo_core_function_devatools/status/flow/IFlow;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/GpsStatus;", "ctx", "Landroid/content/Context;", "(Landroid/content/Context;)V", "onClose", "Lkotlin/Function0;", "", "onOpen", "onStateListener", "Lcom/mogo/eagle/core/utilcode/util/IAppStateListener;", "receiver", "Lcom/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$CheckLocationReceiver;", "registered", "Ljava/util/concurrent/atomic/AtomicBoolean;", "isGrandFineLocation", "", "isLocationEnabled", "onCreate", "onDestroy", "send", "enabled", "isGranted", "CheckLocationReceiver", "Companion", "mogo-core-function-devatools_debug"}) +public final class GpsImpl extends com.zhjt.mogo_core_function_devatools.status.flow.IFlow { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.status.flow.gps.GpsImpl.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "GpsImpl"; + private final java.util.concurrent.atomic.AtomicBoolean registered = null; + private com.zhjt.mogo_core_function_devatools.status.flow.gps.GpsImpl.CheckLocationReceiver receiver; + private final kotlin.jvm.functions.Function0 onClose = null; + private final kotlin.jvm.functions.Function0 onOpen = null; + private final com.mogo.eagle.core.utilcode.util.IAppStateListener onStateListener = null; + + public GpsImpl(@org.jetbrains.annotations.NotNull() + android.content.Context ctx) { + super(null); + } + + private final boolean isGrandFineLocation() { + return false; + } + + @java.lang.Override() + public void onCreate() { + } + + private final boolean isLocationEnabled() { + return false; + } + + private final void send(boolean enabled, boolean isGranted) { + } + + @java.lang.Override() + public void onDestroy() { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\b\u0086\u0004\u0018\u00002\u00020\u0001B!\u0012\f\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003\u0012\f\u0010\u0005\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003\u00a2\u0006\u0002\u0010\u0006J\u001c\u0010\u0007\u001a\u00020\u00042\b\u0010\b\u001a\u0004\u0018\u00010\t2\b\u0010\n\u001a\u0004\u0018\u00010\u000bH\u0016R\u0014\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0014\u0010\u0005\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003X\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\f"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$CheckLocationReceiver;", "Landroid/content/BroadcastReceiver;", "onClose", "Lkotlin/Function0;", "", "onOpen", "(Lcom/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)V", "onReceive", "context", "Landroid/content/Context;", "intent", "Landroid/content/Intent;", "mogo-core-function-devatools_debug"}) + public final class CheckLocationReceiver extends android.content.BroadcastReceiver { + private final kotlin.jvm.functions.Function0 onClose = null; + private final kotlin.jvm.functions.Function0 onOpen = null; + + public CheckLocationReceiver(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onClose, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onOpen) { + super(); + } + + @java.lang.Override() + public void onReceive(@org.jetbrains.annotations.Nullable() + android.content.Context context, @org.jetbrains.annotations.Nullable() + android.content.Intent intent) { + } + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$Companion;", "", "()V", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.kapt_metadata new file mode 100644 index 0000000000..dc3ecb54dc Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.java new file mode 100644 index 0000000000..0f59122a40 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.java @@ -0,0 +1,60 @@ +package com.zhjt.mogo_core_function_devatools.status.flow.ipc; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0002\b\u0004\b\u0000\u0018\u0000 \u00112\b\u0012\u0004\u0012\u00020\u00020\u00012\u00020\u0003:\u0001\u0011B\r\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\b\u0010\t\u001a\u00020\nH\u0002J\u001a\u0010\u000b\u001a\u00020\n2\u0006\u0010\f\u001a\u00020\b2\b\u0010\r\u001a\u0004\u0018\u00010\u000eH\u0016J\b\u0010\u000f\u001a\u00020\nH\u0016J\b\u0010\u0010\u001a\u00020\nH\u0016R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0012"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl;", "Lcom/zhjt/mogo_core_function_devatools/status/flow/IFlow;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/IpcStatus;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoAutopilotStatusListener;", "ctx", "Landroid/content/Context;", "(Landroid/content/Context;)V", "state", "", "checkAndSend", "", "onAutopilotIpcConnectStatusChanged", "status", "reason", "", "onCreate", "onDestroy", "Companion", "mogo-core-function-devatools_debug"}) +public final class IpcImpl extends com.zhjt.mogo_core_function_devatools.status.flow.IFlow implements com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.status.flow.ipc.IpcImpl.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "IpcImpl"; + private int state = -1; + + public IpcImpl(@org.jetbrains.annotations.NotNull() + android.content.Context ctx) { + super(null); + } + + @java.lang.Override() + public void onCreate() { + } + + @java.lang.Override() + public void onAutopilotIpcConnectStatusChanged(int status, @org.jetbrains.annotations.Nullable() + java.lang.String reason) { + } + + private final void checkAndSend() { + } + + @java.lang.Override() + public void onDestroy() { + } + + public void onAutopilotArriveAtStation(@org.jetbrains.annotations.Nullable() + mogo.telematics.pad.MessagePad.ArrivalNotification arrivalNotification) { + } + + public void onAutopilotGuardian(@org.jetbrains.annotations.Nullable() + mogo_msg.MogoReportMsg.MogoReportMessage guardianInfo) { + } + + public void onAutopilotSNRequest() { + } + + public void onAutopilotStatusRespByQuery(@org.jetbrains.annotations.NotNull() + system_master.SystemStatusInfo.StatusInfo status) { + } + + public void onAutopilotStatusResponse(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.autopilot.AutopilotStatusInfo autoPilotStatusInfo) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl$Companion;", "", "()V", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.kapt_metadata new file mode 100644 index 0000000000..ec7faa9e8d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.java new file mode 100644 index 0000000000..81548a973a --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.java @@ -0,0 +1,85 @@ +package com.zhjt.mogo_core_function_devatools.status.flow.rtk; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000`\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\b\u0000\u0018\u0000 %2\b\u0012\u0004\u0012\u00020\u00020\u00012\u00020\u00032\u00020\u0004:\u0001%B\r\u0012\u0006\u0010\u0005\u001a\u00020\u0006\u00a2\u0006\u0002\u0010\u0007J\b\u0010\b\u001a\u00020\u0014H\u0002J\b\u0010\u0015\u001a\u00020\u0016H\u0002J\b\u0010\u0017\u001a\u00020\u0018H\u0002J\b\u0010\u0019\u001a\u00020\u001aH\u0002J\u001a\u0010\u001b\u001a\u00020\u00142\u0006\u0010\u001c\u001a\u00020\u00162\b\u0010\u001d\u001a\u0004\u0018\u00010\u0018H\u0016J\u0010\u0010\u001e\u001a\u00020\u00142\u0006\u0010\u001c\u001a\u00020\u001fH\u0016J\u0012\u0010 \u001a\u00020\u00142\b\u0010!\u001a\u0004\u0018\u00010\"H\u0016J\b\u0010#\u001a\u00020\u0014H\u0016J\b\u0010$\u001a\u00020\u0014H\u0016R\u0010\u0010\b\u001a\u0004\u0018\u00010\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000R!\u0010\n\u001a\b\u0012\u0004\u0012\u00020\f0\u000b8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u000f\u0010\u0010\u001a\u0004\b\r\u0010\u000eR\u000e\u0010\u0011\u001a\u00020\u0012X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0013\u001a\u0004\u0018\u00010\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006&"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl;", "Lcom/zhjt/mogo_core_function_devatools/status/flow/IFlow;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/RTKStatus;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoAutopilotStatusListener;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoChassisLocationWGS84Listener;", "ctx", "Landroid/content/Context;", "(Landroid/content/Context;)V", "check", "Lkotlinx/coroutines/Job;", "healthInfo", "Ljava/util/concurrent/atomic/AtomicReference;", "Lsystem_master/SystemStatusInfo$HealthInfo;", "getHealthInfo", "()Ljava/util/concurrent/atomic/AtomicReference;", "healthInfo$delegate", "Lkotlin/Lazy;", "isOldVersion", "Ljava/util/concurrent/atomic/AtomicBoolean;", "timeOutCheck", "", "getCode", "", "getDesc", "", "isRTKEnabled", "", "onAutopilotIpcConnectStatusChanged", "status", "reason", "onAutopilotStatusRespByQuery", "Lsystem_master/SystemStatusInfo$StatusInfo;", "onChassisLocationWGS84", "gnssInfo", "Lmogo/telematics/pad/MessagePad$GnssInfo;", "onCreate", "onDestroy", "Companion", "mogo-core-function-devatools_debug"}) +public final class RTKImpl extends com.zhjt.mogo_core_function_devatools.status.flow.IFlow implements com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener, com.mogo.eagle.core.function.api.autopilot.IMoGoChassisLocationWGS84Listener { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.status.flow.rtk.RTKImpl.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "RTKImpl"; + private final kotlin.Lazy healthInfo$delegate = null; + private final java.util.concurrent.atomic.AtomicBoolean isOldVersion = null; + private kotlinx.coroutines.Job check; + private kotlinx.coroutines.Job timeOutCheck; + + public RTKImpl(@org.jetbrains.annotations.NotNull() + android.content.Context ctx) { + super(null); + } + + private final java.util.concurrent.atomic.AtomicReference getHealthInfo() { + return null; + } + + @java.lang.Override() + public void onCreate() { + } + + private final void check() { + } + + @java.lang.Override() + public void onAutopilotStatusRespByQuery(@org.jetbrains.annotations.NotNull() + system_master.SystemStatusInfo.StatusInfo status) { + } + + @java.lang.Override() + public void onAutopilotIpcConnectStatusChanged(int status, @org.jetbrains.annotations.Nullable() + java.lang.String reason) { + } + + @java.lang.Override() + public void onChassisLocationWGS84(@org.jetbrains.annotations.Nullable() + mogo.telematics.pad.MessagePad.GnssInfo gnssInfo) { + } + + private final boolean isRTKEnabled() { + return false; + } + + private final java.lang.String getDesc() { + return null; + } + + private final int getCode() { + return 0; + } + + @java.lang.Override() + public void onDestroy() { + } + + public void onAutopilotArriveAtStation(@org.jetbrains.annotations.Nullable() + mogo.telematics.pad.MessagePad.ArrivalNotification arrivalNotification) { + } + + public void onAutopilotGuardian(@org.jetbrains.annotations.Nullable() + mogo_msg.MogoReportMsg.MogoReportMessage guardianInfo) { + } + + public void onAutopilotSNRequest() { + } + + public void onAutopilotStatusResponse(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.autopilot.AutopilotStatusInfo autoPilotStatusInfo) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$Companion;", "", "()V", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.kapt_metadata new file mode 100644 index 0000000000..41ab2e0f91 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.java new file mode 100644 index 0000000000..553d691d7d --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.java @@ -0,0 +1,59 @@ +package com.zhjt.mogo_core_function_devatools.status.flow.trace; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000D\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\b\u0000\u0018\u0000 \u00172\b\u0012\u0004\u0012\u00020\u00020\u00012\u00020\u0003:\u0001\u0017B\r\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u0012\u0010\t\u001a\u00020\n2\b\u0010\u000b\u001a\u0004\u0018\u00010\fH\u0016J\u001a\u0010\r\u001a\u00020\n2\u0006\u0010\u000e\u001a\u00020\u000f2\b\u0010\u0010\u001a\u0004\u0018\u00010\u0011H\u0016J\u0010\u0010\u0012\u001a\u00020\n2\u0006\u0010\u0013\u001a\u00020\u0014H\u0016J\b\u0010\u0015\u001a\u00020\nH\u0016J\b\u0010\u0016\u001a\u00020\nH\u0016R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0018"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl;", "Lcom/zhjt/mogo_core_function_devatools/status/flow/IFlow;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/TracingStatus;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoAutopilotStatusListener;", "ctx", "Landroid/content/Context;", "(Landroid/content/Context;)V", "old", "Lcom/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing;", "onAutopilotGuardian", "", "guardianInfo", "Lmogo_msg/MogoReportMsg$MogoReportMessage;", "onAutopilotIpcConnectStatusChanged", "status", "", "reason", "", "onAutopilotStatusResponse", "autoPilotStatusInfo", "Lcom/mogo/eagle/core/data/autopilot/AutopilotStatusInfo;", "onCreate", "onDestroy", "Companion", "mogo-core-function-devatools_debug"}) +public final class TracingImpl extends com.zhjt.mogo_core_function_devatools.status.flow.IFlow implements com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.status.flow.trace.TracingImpl.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "TracingImpl"; + private com.zhjt.mogo_core_function_devatools.status.entity.TracingStatus.Tracing old = com.zhjt.mogo_core_function_devatools.status.entity.TracingStatus.Tracing.UNKNOWN; + + public TracingImpl(@org.jetbrains.annotations.NotNull() + android.content.Context ctx) { + super(null); + } + + @java.lang.Override() + public void onCreate() { + } + + @java.lang.Override() + public void onAutopilotGuardian(@org.jetbrains.annotations.Nullable() + mogo_msg.MogoReportMsg.MogoReportMessage guardianInfo) { + } + + @java.lang.Override() + public void onAutopilotIpcConnectStatusChanged(int status, @org.jetbrains.annotations.Nullable() + java.lang.String reason) { + } + + @java.lang.Override() + public void onAutopilotStatusResponse(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.autopilot.AutopilotStatusInfo autoPilotStatusInfo) { + } + + @java.lang.Override() + public void onDestroy() { + } + + public void onAutopilotArriveAtStation(@org.jetbrains.annotations.Nullable() + mogo.telematics.pad.MessagePad.ArrivalNotification arrivalNotification) { + } + + public void onAutopilotSNRequest() { + } + + public void onAutopilotStatusRespByQuery(@org.jetbrains.annotations.NotNull() + system_master.SystemStatusInfo.StatusInfo status) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl$Companion;", "", "()V", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.kapt_metadata new file mode 100644 index 0000000000..c8ae1fa700 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.java new file mode 100644 index 0000000000..76e9b84edb --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.java @@ -0,0 +1,53 @@ +package com.zhjt.mogo_core_function_devatools.status.model; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00004\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u0002\n\u0002\b\u0004\b\u0000\u0018\u0000 \u00172\u00020\u0001:\u0001\u0017B\u0005\u00a2\u0006\u0002\u0010\u0002J\"\u0010\u0011\u001a\u0004\u0018\u00010\u00062\u0016\u0010\u0012\u001a\u0012\u0012\u0004\u0012\u00020\u00060\u0007j\b\u0012\u0004\u0012\u00020\u0006`\u000eH\u0002J\u000e\u0010\u0013\u001a\u00020\u00142\u0006\u0010\u0015\u001a\u00020\u0006J$\u0010\u0016\u001a\u00020\u0014*\u0012\u0012\u0004\u0012\u00020\u00060\u0007j\b\u0012\u0004\u0012\u00020\u0006`\u000e2\u0006\u0010\u0015\u001a\u00020\u0006H\u0002R5\u0010\u0003\u001a\u001c\u0012\u0018\u0012\u0016\u0012\u0006\u0012\u0004\u0018\u00010\u0006\u0012\n\u0012\b\u0012\u0004\u0012\u00020\u00060\u00070\u00050\u00048BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\n\u0010\u000b\u001a\u0004\b\b\u0010\tR5\u0010\f\u001a&\u0012\"\u0012 \u0012\u0006\u0012\u0004\u0018\u00010\u0006\u0012\u0014\u0012\u0012\u0012\u0004\u0012\u00020\u00060\u0007j\b\u0012\u0004\u0012\u00020\u0006`\u000e0\u00050\r\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\u0010\u00a8\u0006\u0018"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/model/StatusModel;", "Landroidx/lifecycle/ViewModel;", "()V", "old", "Ljava/util/concurrent/atomic/AtomicReference;", "Lkotlin/Pair;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "Ljava/util/ArrayList;", "getOld", "()Ljava/util/concurrent/atomic/AtomicReference;", "old$delegate", "Lkotlin/Lazy;", "status", "Landroidx/lifecycle/MutableLiveData;", "Lkotlin/collections/ArrayList;", "getStatus", "()Landroidx/lifecycle/MutableLiveData;", "getExceptionStatus", "l", "update", "", "s", "updateOrInsert", "Companion", "mogo-core-function-devatools_debug"}) +public final class StatusModel extends androidx.lifecycle.ViewModel { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.status.model.StatusModel.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "StatusModel"; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Pair DEFAULTS = null; + @org.jetbrains.annotations.NotNull() + private final androidx.lifecycle.MutableLiveData>> status = null; + private final kotlin.Lazy old$delegate = null; + + public StatusModel() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final androidx.lifecycle.MutableLiveData>> getStatus() { + return null; + } + + private final java.util.concurrent.atomic.AtomicReference>> getOld() { + return null; + } + + public final void update(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.status.entity.Status s) { + } + + private final com.zhjt.mogo_core_function_devatools.status.entity.Status getExceptionStatus(java.util.ArrayList l) { + return null; + } + + private final void updateOrInsert(java.util.ArrayList $this$updateOrInsert, com.zhjt.mogo_core_function_devatools.status.entity.Status s) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0001\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R%\u0010\u0003\u001a\u0016\u0012\u0006\u0012\u0004\u0018\u00010\u0005\u0012\n\u0012\b\u0012\u0004\u0012\u00020\u00070\u00060\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\b\u0010\tR\u000e\u0010\n\u001a\u00020\u000bX\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\f"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/model/StatusModel$Companion;", "", "()V", "DEFAULTS", "Lkotlin/Pair;", "", "Ljava/util/ArrayList;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "getDEFAULTS", "()Lkotlin/Pair;", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final kotlin.Pair getDEFAULTS() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.kapt_metadata new file mode 100644 index 0000000000..b86fb63e7c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.java new file mode 100644 index 0000000000..d846baeca2 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.java @@ -0,0 +1,38 @@ +package com.zhjt.mogo_core_function_devatools.status.ui; + +import java.lang.System; + +@android.annotation.SuppressLint(value = {"ViewConstructor"}) +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000F\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\b\u0001\u0018\u0000 \u00152\u00020\u0001:\u0001\u0015B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\b\u0010\u000e\u001a\u00020\u000fH\u0002J\u0018\u0010\u0010\u001a\u00020\u000f2\u0006\u0010\u0011\u001a\u00020\u00122\u0006\u0010\u0013\u001a\u00020\u0014H\u0014R\u000e\u0010\u0002\u001a\u00020\u0003X\u0082\u0004\u00a2\u0006\u0002\n\u0000R*\u0010\u0007\u001a\u001e\u0012\u0018\u0012\u0016\u0012\u0006\u0012\u0004\u0018\u00010\n\u0012\n\u0012\b\u0012\u0004\u0012\u00020\n0\u000b0\t\u0018\u00010\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\f\u001a\u00020\rX\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0016"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/ui/StatusView;", "Landroidx/constraintlayout/widget/ConstraintLayout;", "model", "Lcom/zhjt/mogo_core_function_devatools/status/model/StatusModel;", "ctx", "Landroid/content/Context;", "(Lcom/zhjt/mogo_core_function_devatools/status/model/StatusModel;Landroid/content/Context;)V", "observer", "Landroidx/lifecycle/Observer;", "Lkotlin/Pair;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "Ljava/util/ArrayList;", "rv", "Landroidx/recyclerview/widget/RecyclerView;", "init", "", "onVisibilityChanged", "changedView", "Landroid/view/View;", "visibility", "", "Companion", "mogo-core-function-devatools_debug"}) +public final class StatusView extends androidx.constraintlayout.widget.ConstraintLayout { + private final com.zhjt.mogo_core_function_devatools.status.model.StatusModel model = null; + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.status.ui.StatusView.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "StatusView"; + private final androidx.recyclerview.widget.RecyclerView rv = null; + private androidx.lifecycle.Observer>> observer; + private java.util.HashMap _$_findViewCache; + + public StatusView(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.status.model.StatusModel model, @org.jetbrains.annotations.NotNull() + android.content.Context ctx) { + super(null); + } + + private final void init() { + } + + @java.lang.Override() + protected void onVisibilityChanged(@org.jetbrains.annotations.NotNull() + android.view.View changedView, int visibility) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/ui/StatusView$Companion;", "", "()V", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.kapt_metadata new file mode 100644 index 0000000000..39d48ec04d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.java new file mode 100644 index 0000000000..c9280e930f --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.java @@ -0,0 +1,82 @@ +package com.zhjt.mogo_core_function_devatools.status.ui.adapter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000:\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\b\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0004\b\u0000\u0018\u0000 \u001a2\b\u0012\u0004\u0012\u00020\u00020\u0001:\u0002\u001a\u001bB%\u0012\u0006\u0010\u0003\u001a\u00020\u0004\u0012\u0016\u0010\u0005\u001a\u0012\u0012\u0004\u0012\u00020\u00070\u0006j\b\u0012\u0004\u0012\u00020\u0007`\b\u00a2\u0006\u0002\u0010\tJ\b\u0010\u0010\u001a\u00020\u0011H\u0016J\u0018\u0010\u0012\u001a\u00020\u00132\u0006\u0010\u0014\u001a\u00020\u00022\u0006\u0010\u0015\u001a\u00020\u0011H\u0016J\u0018\u0010\u0016\u001a\u00020\u00022\u0006\u0010\u0017\u001a\u00020\u00182\u0006\u0010\u0019\u001a\u00020\u0011H\u0016R\u0011\u0010\u0003\u001a\u00020\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000bR*\u0010\u0005\u001a\u0012\u0012\u0004\u0012\u00020\u00070\u0006j\b\u0012\u0004\u0012\u00020\u0007`\bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\f\u0010\r\"\u0004\b\u000e\u0010\u000f\u00a8\u0006\u001c"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter;", "Landroidx/recyclerview/widget/RecyclerView$Adapter;", "Lcom/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder;", "ctx", "Landroid/content/Context;", "data", "Ljava/util/ArrayList;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "Lkotlin/collections/ArrayList;", "(Landroid/content/Context;Ljava/util/ArrayList;)V", "getCtx", "()Landroid/content/Context;", "getData", "()Ljava/util/ArrayList;", "setData", "(Ljava/util/ArrayList;)V", "getItemCount", "", "onBindViewHolder", "", "holder", "position", "onCreateViewHolder", "parent", "Landroid/view/ViewGroup;", "viewType", "Companion", "StatusViewHolder", "mogo-core-function-devatools_debug"}) +public final class StatusAdapter extends androidx.recyclerview.widget.RecyclerView.Adapter { + @org.jetbrains.annotations.NotNull() + private final android.content.Context ctx = null; + @org.jetbrains.annotations.NotNull() + private java.util.ArrayList data; + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.status.ui.adapter.StatusAdapter.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "StatusAdapter"; + + public StatusAdapter(@org.jetbrains.annotations.NotNull() + android.content.Context ctx, @org.jetbrains.annotations.NotNull() + java.util.ArrayList data) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final android.content.Context getCtx() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.util.ArrayList getData() { + return null; + } + + public final void setData(@org.jetbrains.annotations.NotNull() + java.util.ArrayList p0) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public com.zhjt.mogo_core_function_devatools.status.ui.adapter.StatusAdapter.StatusViewHolder onCreateViewHolder(@org.jetbrains.annotations.NotNull() + android.view.ViewGroup parent, int viewType) { + return null; + } + + @java.lang.Override() + public void onBindViewHolder(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.status.ui.adapter.StatusAdapter.StatusViewHolder holder, int position) { + } + + @java.lang.Override() + public int getItemCount() { + return 0; + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0000\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\u000e\u0010\u000b\u001a\u00020\f2\u0006\u0010\r\u001a\u00020\u000eJ\u0010\u0010\u000f\u001a\u00020\u00102\u0006\u0010\r\u001a\u00020\u000eH\u0002R\u001b\u0010\u0005\u001a\u00020\u00068BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\t\u0010\n\u001a\u0004\b\u0007\u0010\b\u00a8\u0006\u0011"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder;", "Landroidx/recyclerview/widget/RecyclerView$ViewHolder;", "item", "Landroid/view/View;", "(Landroid/view/View;)V", "iv", "Landroid/widget/ImageView;", "getIv", "()Landroid/widget/ImageView;", "iv$delegate", "Lkotlin/Lazy;", "bind", "", "status", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "getText", "", "mogo-core-function-devatools_debug"}) + public static final class StatusViewHolder extends androidx.recyclerview.widget.RecyclerView.ViewHolder { + private final kotlin.Lazy iv$delegate = null; + + public StatusViewHolder(@org.jetbrains.annotations.NotNull() + android.view.View item) { + super(null); + } + + private final android.widget.ImageView getIv() { + return null; + } + + public final void bind(@org.jetbrains.annotations.NotNull() + com.zhjt.mogo_core_function_devatools.status.entity.Status status) { + } + + private final java.lang.String getText(com.zhjt.mogo_core_function_devatools.status.entity.Status status) { + return null; + } + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$Companion;", "", "()V", "TAG", "", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.kapt_metadata new file mode 100644 index 0000000000..d261ce1a1f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.java new file mode 100644 index 0000000000..f5dd16a270 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.java @@ -0,0 +1,35 @@ +package com.zhjt.mogo_core_function_devatools.status.ui.diff; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\b\n\u0002\b\u0005\b\u0000\u0018\u00002\u00020\u0001B5\u0012\u0016\u0010\u0002\u001a\u0012\u0012\u0004\u0012\u00020\u00040\u0003j\b\u0012\u0004\u0012\u00020\u0004`\u0005\u0012\u0016\u0010\u0006\u001a\u0012\u0012\u0004\u0012\u00020\u00040\u0003j\b\u0012\u0004\u0012\u00020\u0004`\u0005\u00a2\u0006\u0002\u0010\u0007J\u0018\u0010\b\u001a\u00020\t2\u0006\u0010\n\u001a\u00020\u000b2\u0006\u0010\f\u001a\u00020\u000bH\u0016J\u0018\u0010\r\u001a\u00020\t2\u0006\u0010\n\u001a\u00020\u000b2\u0006\u0010\f\u001a\u00020\u000bH\u0016J\b\u0010\u000e\u001a\u00020\u000bH\u0016J\b\u0010\u000f\u001a\u00020\u000bH\u0016R\u001e\u0010\u0002\u001a\u0012\u0012\u0004\u0012\u00020\u00040\u0003j\b\u0012\u0004\u0012\u00020\u0004`\u0005X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u001e\u0010\u0006\u001a\u0012\u0012\u0004\u0012\u00020\u00040\u0003j\b\u0012\u0004\u0012\u00020\u0004`\u0005X\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0010"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback;", "Landroidx/recyclerview/widget/DiffUtil$Callback;", "old", "Ljava/util/ArrayList;", "Lcom/zhjt/mogo_core_function_devatools/status/entity/Status;", "Lkotlin/collections/ArrayList;", "update", "(Ljava/util/ArrayList;Ljava/util/ArrayList;)V", "areContentsTheSame", "", "oldItemPosition", "", "newItemPosition", "areItemsTheSame", "getNewListSize", "getOldListSize", "mogo-core-function-devatools_debug"}) +public final class StatusDiffCallback extends androidx.recyclerview.widget.DiffUtil.Callback { + private final java.util.ArrayList old = null; + private final java.util.ArrayList update = null; + + public StatusDiffCallback(@org.jetbrains.annotations.NotNull() + java.util.ArrayList old, @org.jetbrains.annotations.NotNull() + java.util.ArrayList update) { + super(); + } + + @java.lang.Override() + public int getOldListSize() { + return 0; + } + + @java.lang.Override() + public int getNewListSize() { + return 0; + } + + @java.lang.Override() + public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) { + return false; + } + + @java.lang.Override() + public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) { + return false; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.kapt_metadata new file mode 100644 index 0000000000..55ebaf1e90 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.java new file mode 100644 index 0000000000..3c22795797 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.java @@ -0,0 +1,24 @@ +package com.zhjt.mogo_core_function_devatools.trace; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\nH\u0007J\u000e\u0010\u000b\u001a\u00020\b2\u0006\u0010\f\u001a\u00020\rR\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000e"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/trace/SyncConfig;", "", "()V", "startUpTraceModel", "Lcom/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel;", "traceId", "", "logOutConfig", "", "appConfig", "Lcom/mogo/eagle/core/data/app/AppConfigInfo;", "update", "context", "Landroid/content/Context;", "mogo-core-function-devatools_debug"}) +public final class SyncConfig { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.trace.SyncConfig INSTANCE = null; + private static final com.zhjt.mogo_core_function_devatools.trace.network.StartUpTraceNetWorkModel startUpTraceModel = null; + private static java.lang.String traceId; + + private SyncConfig() { + super(); + } + + public final void update(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @com.zhjt.service.chain.ChainLog(linkChainLog = 0, linkCode = 2, endpoint = 4, nodeAliasCode = "CHAIN_ALIAS_CODE_APP_INFO_CONFIG_UPDATE", paramIndexes = {0}, clientPkFileName = "sn") + public final void logOutConfig(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.app.AppConfigInfo appConfig) { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.kapt_metadata new file mode 100644 index 0000000000..eea0af7374 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.java new file mode 100644 index 0000000000..360a4a2a00 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.java @@ -0,0 +1,69 @@ +package com.zhjt.mogo_core_function_devatools.trace; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000R\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010%\n\u0002\u0010\b\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0010\u000e\n\u0002\b\u0003\u0018\u0000 2\u00020\u00012\u00020\u0002:\u0001 B\u0005\u00a2\u0006\u0002\u0010\u0003J\"\u0010\u000f\u001a\u001e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u000e0\rj\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u000e`\u0010J\u0006\u0010\u0011\u001a\u00020\tJ\u000e\u0010\b\u001a\u00020\u00122\u0006\u0010\u0013\u001a\u00020\u000bJ\u0010\u0010\u0014\u001a\u00020\u00122\u0006\u0010\u0015\u001a\u00020\u0016H\u0016J*\u0010\u0017\u001a\u00020\u00122\"\u0010\u0018\u001a\u001e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u000e0\rj\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u000e`\u0010J\u000e\u0010\u0019\u001a\u00020\u00122\u0006\u0010\u001a\u001a\u00020\tJ\u0006\u0010\u001b\u001a\u00020\u0012J\u0018\u0010\u001c\u001a\u00020\u00122\u0006\u0010\u001d\u001a\u00020\u001e2\u0006\u0010\u001f\u001a\u00020\u001eH\u0016R\u001a\u0010\u0004\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u00070\u0005X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\n\u001a\u0004\u0018\u00010\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001a\u0010\f\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u000e0\rX\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006!"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/trace/TraceManager;", "Lcom/mogo/eagle/core/function/api/cloud/IMoGoCloudListener;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoAutopilotCarConfigListener;", "()V", "fwBuildMap", "", "", "Lcom/zhidao/loglib/fw/FwBuild;", "init", "", "mContext", "Landroid/content/Context;", "traceInfoCache", "Ljava/util/HashMap;", "Lcom/mogo/eagle/core/data/deva/chain/ChainLogParam;", "getTraceInfo", "Lkotlin/collections/HashMap;", "getTraceLogStatus", "", "context", "onAutopilotCarConfig", "carConfigResp", "Lmogo/telematics/pad/MessagePad$CarConfigResp;", "refreshTraceInfo", "map", "setTraceLogEnable", "enable", "syncConfig", "tokenGot", "token", "", "sn", "Companion", "mogo-core-function-devatools_debug"}) +public final class TraceManager implements com.mogo.eagle.core.function.api.cloud.IMoGoCloudListener, com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotCarConfigListener { + private final java.util.HashMap traceInfoCache = null; + private final java.util.Map fwBuildMap = null; + private boolean init = false; + private android.content.Context mContext; + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.trace.TraceManager.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "TraceManager"; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy traceManager$delegate = null; + + public TraceManager() { + super(); + } + + @kotlin.jvm.Synchronized() + public final synchronized void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void tokenGot(@org.jetbrains.annotations.NotNull() + java.lang.String token, @org.jetbrains.annotations.NotNull() + java.lang.String sn) { + } + + public final void setTraceLogEnable(boolean enable) { + } + + public final boolean getTraceLogStatus() { + return false; + } + + @org.jetbrains.annotations.NotNull() + public final java.util.HashMap getTraceInfo() { + return null; + } + + public final void refreshTraceInfo(@org.jetbrains.annotations.NotNull() + java.util.HashMap map) { + } + + @java.lang.Override() + public void onAutopilotCarConfig(@org.jetbrains.annotations.NotNull() + mogo.telematics.pad.MessagePad.CarConfigResp carConfigResp) { + } + + public final void syncConfig() { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0005\u001a\u00020\u00068FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\t\u0010\n\u001a\u0004\b\u0007\u0010\b\u00a8\u0006\u000b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/trace/TraceManager$Companion;", "", "()V", "TAG", "", "traceManager", "Lcom/zhjt/mogo_core_function_devatools/trace/TraceManager;", "getTraceManager", "()Lcom/zhjt/mogo_core_function_devatools/trace/TraceManager;", "traceManager$delegate", "Lkotlin/Lazy;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.trace.TraceManager getTraceManager() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.kapt_metadata new file mode 100644 index 0000000000..d4448cd337 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.java new file mode 100644 index 0000000000..7799f568a3 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.java @@ -0,0 +1,25 @@ +package com.zhjt.mogo_core_function_devatools.trace.network; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u000e\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0006\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0012\u0010\u000b\u001a\u00020\f2\b\b\u0002\u0010\r\u001a\u00020\u0005H\u0002JB\u0010\u000e\u001a\u00020\u00062\n\b\u0002\u0010\u000f\u001a\u0004\u0018\u00010\u00052\u0016\b\u0002\u0010\u0010\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u00042\u0016\b\u0002\u0010\u0011\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0004R\u001c\u0010\u0003\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001c\u0010\t\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0012"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel;", "", "()V", "error", "Lkotlin/Function1;", "", "", "retryTime", "", "success", "traceId", "getNetWorkApi", "Lcom/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService;", "baseUrl", "report", "id", "onSuccess", "onError", "mogo-core-function-devatools_debug"}) +public final class StartUpTraceNetWorkModel { + private int retryTime = 0; + private kotlin.jvm.functions.Function1 success; + private kotlin.jvm.functions.Function1 error; + private java.lang.String traceId = ""; + + public StartUpTraceNetWorkModel() { + super(); + } + + private final com.zhjt.mogo_core_function_devatools.trace.network.TraceStartUpApiService getNetWorkApi(java.lang.String baseUrl) { + return null; + } + + public final void report(@org.jetbrains.annotations.Nullable() + java.lang.String id, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onError) { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.kapt_metadata new file mode 100644 index 0000000000..4a79d76450 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.java new file mode 100644 index 0000000000..57eef20ae1 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.java @@ -0,0 +1,15 @@ +package com.zhjt.mogo_core_function_devatools.trace.network; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010%\n\u0002\b\u0002\bf\u0018\u00002\u00020\u0001J-\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u00032\u0014\b\u0001\u0010\u0005\u001a\u000e\u0012\u0004\u0012\u00020\u0004\u0012\u0004\u0012\u00020\u00010\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0007\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService;", "", "report", "Lcom/mogo/eagle/core/data/BaseResponse;", "", "map", "", "(Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-core-function-devatools_debug"}) +public abstract interface TraceStartUpApiService { + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/eagleEye-mis/startup/report") + @retrofit2.http.Headers(value = {"Content-Type:application/json;charset=UTF-8"}) + public abstract java.lang.Object report(@org.jetbrains.annotations.NotNull() + @retrofit2.http.Body() + java.util.Map map, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation); +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.kapt_metadata new file mode 100644 index 0000000000..26cf5f5077 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.java new file mode 100644 index 0000000000..e7c45ffe08 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.java @@ -0,0 +1,40 @@ +package com.zhjt.mogo_core_function_devatools.tts; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0003\u0018\u0000 \u000b2\u00020\u0001:\u0001\u000bB\u0005\u00a2\u0006\u0002\u0010\u0002J\u000e\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006J\u0018\u0010\u0007\u001a\u00020\u00042\u0006\u0010\b\u001a\u00020\t2\u0006\u0010\n\u001a\u00020\tH\u0016\u00a8\u0006\f"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/tts/TtsManager;", "Lcom/mogo/eagle/core/function/api/cloud/IMoGoCloudListener;", "()V", "initTts", "", "context", "Landroid/content/Context;", "tokenGot", "token", "", "sn", "Companion", "mogo-core-function-devatools_debug"}) +public final class TtsManager implements com.mogo.eagle.core.function.api.cloud.IMoGoCloudListener { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.tts.TtsManager.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "TtsManager"; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy ttsManager$delegate = null; + + public TtsManager() { + super(); + } + + public final void initTts(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void tokenGot(@org.jetbrains.annotations.NotNull() + java.lang.String token, @org.jetbrains.annotations.NotNull() + java.lang.String sn) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0005\u001a\u00020\u00068FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\t\u0010\n\u001a\u0004\b\u0007\u0010\b\u00a8\u0006\u000b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/tts/TtsManager$Companion;", "", "()V", "TAG", "", "ttsManager", "Lcom/zhjt/mogo_core_function_devatools/tts/TtsManager;", "getTtsManager", "()Lcom/zhjt/mogo_core_function_devatools/tts/TtsManager;", "ttsManager$delegate", "Lkotlin/Lazy;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.tts.TtsManager getTtsManager() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.kapt_metadata new file mode 100644 index 0000000000..2d116272ce Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.java new file mode 100644 index 0000000000..90d7e8489c --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.java @@ -0,0 +1,38 @@ +package com.zhjt.mogo_core_function_devatools.upgrade; + +import java.lang.System; + +/** + * @author XuXinChao + * @description 工控机升级网络请求接口 + * @since: 2022/5/17 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\bf\u0018\u00002\u00020\u0001J!\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\b\b\u0001\u0010\u0004\u001a\u00020\u0005H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0006J!\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00010\b2\b\b\u0001\u0010\t\u001a\u00020\nH\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u000b\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\f"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService;", "", "queryContainers", "Lcom/mogo/eagle/core/data/Response;", "padSn", "", "(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "upgradeConfirm", "Lcom/mogo/eagle/core/data/BaseResponse;", "requestBody", "Lokhttp3/RequestBody;", "(Lokhttp3/RequestBody;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-core-function-devatools_debug"}) +public abstract interface IPCUpgradeApiService { + + /** + * 确认升级工控机docker版本 + * @param imageName docker域名 + * @param imageVersion docker版本 + * @param padSn SN + * @param releaseId 任务ID + */ + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/api/pushServer/confirm") + @retrofit2.http.Headers(value = {"Content-Type:application/json", "Accept: application/json"}) + public abstract java.lang.Object upgradeConfirm(@org.jetbrains.annotations.NotNull() + @retrofit2.http.Body() + okhttp3.RequestBody requestBody, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation); + + /** + * 获取新工控机docker版本 + * @param padSn SN + */ + @org.jetbrains.annotations.Nullable() + @retrofit2.http.GET(value = "/api/pushServer/queryContainers") + public abstract java.lang.Object queryContainers(@org.jetbrains.annotations.NotNull() + @retrofit2.http.Query(value = "padSn") + java.lang.String padSn, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> continuation); +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.kapt_metadata new file mode 100644 index 0000000000..1ca5f5857e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.java new file mode 100644 index 0000000000..5d02e9d44e --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.java @@ -0,0 +1,109 @@ +package com.zhjt.mogo_core_function_devatools.upgrade; + +import java.lang.System; + +/** + * @author XuXinChao + * @description 工控机镜像版本升级管理 + * @since: 2022/5/12 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000X\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010 \n\u0002\b\u0003\u0018\u0000 \"2\b\u0012\u0004\u0012\u00020\u00020\u00012\u00020\u0003:\u0001\"B\u0005\u00a2\u0006\u0002\u0010\u0004J\u0006\u0010\u000f\u001a\u00020\u0010J\u000e\u0010\u0011\u001a\u00020\u00102\u0006\u0010\u0012\u001a\u00020\u000eJ\u0010\u0010\u0013\u001a\u00020\u00102\u0006\u0010\u0014\u001a\u00020\u0015H\u0016J\u0012\u0010\u0016\u001a\u00020\u00102\b\u0010\u0017\u001a\u0004\u0018\u00010\u0002H\u0016J\u0016\u0010\u0018\u001a\u00020\u00102\u0006\u0010\u0019\u001a\u00020\u001a2\u0006\u0010\u001b\u001a\u00020\u001aJ\u000e\u0010\u001c\u001a\b\u0012\u0004\u0012\u00020\u00020\u001dH\u0016J$\u0010\u001e\u001a\u00020\u00102\f\u0010\u001f\u001a\b\u0012\u0004\u0012\u00020\u001a0 2\u0006\u0010\u0019\u001a\u00020\u001a2\u0006\u0010!\u001a\u00020\u001aR\u0012\u0010\u0005\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0004\n\u0002\u0010\u0007R\u000e\u0010\b\u001a\u00020\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u000bX\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0010\u0010\f\u001a\u0004\u0018\u00010\u0002X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\r\u001a\u0004\u0018\u00010\u000eX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006#"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager;", "Lcom/mogo/aicloud/services/socket/IMogoOnMessageListener;", "Lcom/mogo/eagle/core/data/bindingcar/IPCUpgradeStateInfo;", "Lcom/mogo/eagle/core/function/api/autopilot/IMoGoAutopilotStatusListener;", "()V", "autopilotStatus", "", "Ljava/lang/Integer;", "hasIPCUpgradeTask", "", "ipcUpgradeNetWorkModel", "Lcom/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel;", "ipcUpgradeStateInfoTask", "mContext", "Landroid/content/Context;", "destroy", "", "init", "context", "onAutopilotStatusResponse", "autoPilotStatusInfo", "Lcom/mogo/eagle/core/data/autopilot/AutopilotStatusInfo;", "onMsgReceived", "ipcUpgradeStateInfo", "queryContainers", "padSn", "", "dockerVersion", "target", "Ljava/lang/Class;", "upgradeConfirm", "images", "", "releaseId", "Companion", "mogo-core-function-devatools_debug"}) +public final class IPCUpgradeManager implements com.mogo.aicloud.services.socket.IMogoOnMessageListener, com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.upgrade.IPCUpgradeManager.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "IPCUpgradeManager"; + public static final int IPC_UPGRADE_MSG_TYPE = 50000; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy ipcUpgradeManager$delegate = null; + private android.content.Context mContext; + private final com.zhjt.mogo_core_function_devatools.upgrade.IPCUpgradeNetWorkModel ipcUpgradeNetWorkModel = null; + private java.lang.Integer autopilotStatus; + private boolean hasIPCUpgradeTask = false; + private com.mogo.eagle.core.data.bindingcar.IPCUpgradeStateInfo ipcUpgradeStateInfoTask; + + public IPCUpgradeManager() { + super(); + } + + public final void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.Class target() { + return null; + } + + @java.lang.Override() + public void onMsgReceived(@org.jetbrains.annotations.Nullable() + com.mogo.eagle.core.data.bindingcar.IPCUpgradeStateInfo ipcUpgradeStateInfo) { + } + + /** + * 自动驾驶状态信息 + * @param autoPilotStatusInfo 状态信息 + */ + @java.lang.Override() + public void onAutopilotStatusResponse(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.autopilot.AutopilotStatusInfo autoPilotStatusInfo) { + } + + /** + * 确认升级工控机docker版本 + * @param images docker列表 + * @param padSn SN + * @param releaseId 任务ID + */ + public final void upgradeConfirm(@org.jetbrains.annotations.NotNull() + java.util.List images, @org.jetbrains.annotations.NotNull() + java.lang.String padSn, @org.jetbrains.annotations.NotNull() + java.lang.String releaseId) { + } + + /** + * 获取新工控机docker版本 + * @param padSn SN + * @param dockerVersion 当前工控机版本 + */ + public final void queryContainers(@org.jetbrains.annotations.NotNull() + java.lang.String padSn, @org.jetbrains.annotations.NotNull() + java.lang.String dockerVersion) { + } + + public final void destroy() { + } + + public void onAutopilotArriveAtStation(@org.jetbrains.annotations.Nullable() + mogo.telematics.pad.MessagePad.ArrivalNotification arrivalNotification) { + } + + public void onAutopilotGuardian(@org.jetbrains.annotations.Nullable() + mogo_msg.MogoReportMsg.MogoReportMessage guardianInfo) { + } + + public void onAutopilotIpcConnectStatusChanged(int status, @org.jetbrains.annotations.Nullable() + java.lang.String reason) { + } + + public void onAutopilotSNRequest() { + } + + public void onAutopilotStatusRespByQuery(@org.jetbrains.annotations.NotNull() + system_master.SystemStatusInfo.StatusInfo status) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0086T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0007\u001a\u00020\b8FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u000b\u0010\f\u001a\u0004\b\t\u0010\n\u00a8\u0006\r"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$Companion;", "", "()V", "IPC_UPGRADE_MSG_TYPE", "", "TAG", "", "ipcUpgradeManager", "Lcom/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager;", "getIpcUpgradeManager", "()Lcom/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager;", "ipcUpgradeManager$delegate", "Lkotlin/Lazy;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.upgrade.IPCUpgradeManager getIpcUpgradeManager() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.kapt_metadata new file mode 100644 index 0000000000..d131543c5d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.java new file mode 100644 index 0000000000..a57e3dbc23 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.java @@ -0,0 +1,44 @@ +package com.zhjt.mogo_core_function_devatools.upgrade; + +import java.lang.System; + +/** + * @author XuXinChao + * @description 工控机升级网络请求 + * @since: 2022/5/17 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010 \n\u0002\b\u0002\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0012\u0010\u0003\u001a\u00020\u00042\b\b\u0002\u0010\u0005\u001a\u00020\u0006H\u0002J6\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\u00062\u0012\u0010\n\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\b0\u000b2\u0012\u0010\f\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\b0\u000bJL\u0010\r\u001a\u00020\b2\f\u0010\u000e\u001a\b\u0012\u0004\u0012\u00020\u00060\u000f2\u0006\u0010\t\u001a\u00020\u00062\u0006\u0010\u0010\u001a\u00020\u00062\u0012\u0010\n\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\b0\u000b2\u0012\u0010\f\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\b0\u000b\u00a8\u0006\u0011"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel;", "", "()V", "getNetWorkApi", "Lcom/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService;", "baseUrl", "", "queryContainers", "", "padSn", "onSuccess", "Lkotlin/Function1;", "onError", "upgradeConfirm", "images", "", "releaseId", "mogo-core-function-devatools_debug"}) +public final class IPCUpgradeNetWorkModel { + + public IPCUpgradeNetWorkModel() { + super(); + } + + private final com.zhjt.mogo_core_function_devatools.upgrade.IPCUpgradeApiService getNetWorkApi(java.lang.String baseUrl) { + return null; + } + + /** + * 确认升级工控机docker版本 + * @param images docker列表 + * @param padSn SN + * @param releaseId 任务ID + */ + public final void upgradeConfirm(@org.jetbrains.annotations.NotNull() + java.util.List images, @org.jetbrains.annotations.NotNull() + java.lang.String padSn, @org.jetbrains.annotations.NotNull() + java.lang.String releaseId, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + /** + * 获取新工控机docker版本 + * @param padSn SN + */ + public final void queryContainers(@org.jetbrains.annotations.NotNull() + java.lang.String padSn, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.kapt_metadata new file mode 100644 index 0000000000..2d36669bee Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.java new file mode 100644 index 0000000000..50e72384a8 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.java @@ -0,0 +1,33 @@ +package com.zhjt.mogo_core_function_devatools.upgrade; + +import java.lang.System; + +/** + * @author XuXinChao + * @description 工控机升级域名管理 + * @since: 2022/5/17 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst;", "", "()V", "Companion", "mogo-core-function-devatools_debug"}) +public final class UpgradeHostConst { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.upgrade.UpgradeHostConst.Companion Companion = null; + private static final java.lang.String HOST_DEV = "http://mysunflower-qa.zhidaoauto.com"; + private static final java.lang.String HOST_RELEASE = "http://mysunflower.zhidaoauto.com"; + + public UpgradeHostConst() { + super(); + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0003\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0006\u001a\u00020\u0004R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0007"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst$Companion;", "", "()V", "HOST_DEV", "", "HOST_RELEASE", "getBaseUrl", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getBaseUrl() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.kapt_metadata new file mode 100644 index 0000000000..630c727f5e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.java new file mode 100644 index 0000000000..88c2a06a84 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.java @@ -0,0 +1,68 @@ +package com.zhjt.mogo_core_function_devatools.upgrade; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000@\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010$\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0003\u0018\u0000 \u001b2\u00020\u0001:\u0001\u001bB\u0005\u00a2\u0006\u0002\u0010\u0002J\u001e\u0010\u0006\u001a\u00020\u00072\u0006\u0010\b\u001a\u00020\t2\u0006\u0010\n\u001a\u00020\u00052\u0006\u0010\u000b\u001a\u00020\u0005J5\u0010\f\u001a\u00020\u00072\b\u0010\u000b\u001a\u0004\u0018\u00010\u00052!\u0010\r\u001a\u001d\u0012\u0013\u0012\u00110\u0005\u00a2\u0006\f\b\u000f\u0012\b\b\u0010\u0012\u0004\b\b(\u000b\u0012\u0004\u0012\u00020\u00070\u000eH\u0002J\u001c\u0010\u0011\u001a\u00020\u00072\b\u0010\u000b\u001a\u0004\u0018\u00010\u00052\b\u0010\u0012\u001a\u0004\u0018\u00010\u0005H\u0016J\u001c\u0010\u0013\u001a\u00020\u00072\b\u0010\u000b\u001a\u0004\u0018\u00010\u00052\b\u0010\u0014\u001a\u0004\u0018\u00010\u0015H\u0016J\u001c\u0010\u0016\u001a\u00020\u00072\b\u0010\u000b\u001a\u0004\u0018\u00010\u00052\b\u0010\u0014\u001a\u0004\u0018\u00010\u0015H\u0016J\u001a\u0010\u0017\u001a\u00020\u00072\b\u0010\u000b\u001a\u0004\u0018\u00010\u00052\u0006\u0010\u0018\u001a\u00020\u0019H\u0016J\u0012\u0010\u001a\u001a\u00020\u00072\b\u0010\u000b\u001a\u0004\u0018\u00010\u0005H\u0016R\u001c\u0010\u0003\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0005\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001c"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager;", "Lcom/mogo/eagle/core/utilcode/breakpoint/callback/IDownload;", "()V", "map", "", "", "downLoadPackage", "", "context", "Landroid/content/Context;", "downloadKey", "downloadUrl", "findKey", "findResult", "Lkotlin/Function1;", "Lkotlin/ParameterName;", "name", "onError", "errorMsg", "onFinished", "threadBean", "Lcom/mogo/eagle/core/utilcode/breakpoint/bean/ThreadBean;", "onPause", "onProgress", "length", "", "onStart", "Companion", "mogo-core-function-devatools_debug"}) +public final class UpgradeManager implements com.mogo.eagle.core.utilcode.breakpoint.callback.IDownload { + @org.jetbrains.annotations.NotNull() + public static final com.zhjt.mogo_core_function_devatools.upgrade.UpgradeManager.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "UpgradeManager"; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy upgradeManager$delegate = null; + private java.util.Map map; + + public UpgradeManager() { + super(); + } + + public final void downLoadPackage(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String downloadKey, @org.jetbrains.annotations.NotNull() + java.lang.String downloadUrl) { + } + + @java.lang.Override() + public void onStart(@org.jetbrains.annotations.Nullable() + java.lang.String downloadUrl) { + } + + @java.lang.Override() + public void onPause(@org.jetbrains.annotations.Nullable() + java.lang.String downloadUrl, @org.jetbrains.annotations.Nullable() + com.mogo.eagle.core.utilcode.breakpoint.bean.ThreadBean threadBean) { + } + + @java.lang.Override() + public void onProgress(@org.jetbrains.annotations.Nullable() + java.lang.String downloadUrl, int length) { + } + + @java.lang.Override() + public void onFinished(@org.jetbrains.annotations.Nullable() + java.lang.String downloadUrl, @org.jetbrains.annotations.Nullable() + com.mogo.eagle.core.utilcode.breakpoint.bean.ThreadBean threadBean) { + } + + @java.lang.Override() + public void onError(@org.jetbrains.annotations.Nullable() + java.lang.String downloadUrl, @org.jetbrains.annotations.Nullable() + java.lang.String errorMsg) { + } + + private final void findKey(java.lang.String downloadUrl, kotlin.jvm.functions.Function1 findResult) { + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0005\u001a\u00020\u00068FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\t\u0010\n\u001a\u0004\b\u0007\u0010\b\u00a8\u0006\u000b"}, d2 = {"Lcom/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$Companion;", "", "()V", "TAG", "", "upgradeManager", "Lcom/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager;", "getUpgradeManager", "()Lcom/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager;", "upgradeManager$delegate", "Lkotlin/Lazy;", "mogo-core-function-devatools_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.zhjt.mogo_core_function_devatools.upgrade.UpgradeManager getUpgradeManager() { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.kapt_metadata b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.kapt_metadata new file mode 100644 index 0000000000..445286a19f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java new file mode 100644 index 0000000000..73693e1c55 --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java @@ -0,0 +1,4 @@ +package error; + +public final class NonExistentClass { +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/META-INF/mogo-core-function-devatools_debug.kotlin_module b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/META-INF/mogo-core-function-devatools_debug.kotlin_module new file mode 100644 index 0000000000..61df8934c8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/META-INF/mogo-core-function-devatools_debug.kotlin_module differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider$Companion.class new file mode 100644 index 0000000000..6a1420cc1a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.class new file mode 100644 index 0000000000..477da1e310 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$initAiCollect$1$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$initAiCollect$1$1.class new file mode 100644 index 0000000000..dae8dd1274 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$initAiCollect$1$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$initBadCase$1$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$initBadCase$1$1.class new file mode 100644 index 0000000000..169fc57901 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$initBadCase$1$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$onReceiveBadCaseRecord$1$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$onReceiveBadCaseRecord$1$1.class new file mode 100644 index 0000000000..5b8ccbbb6a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$onReceiveBadCaseRecord$1$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$onReceiveBadCaseRecord$1$countDownTimer$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$onReceiveBadCaseRecord$1$countDownTimer$1.class new file mode 100644 index 0000000000..b3085ae868 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$onReceiveBadCaseRecord$1$countDownTimer$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$presenter$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$presenter$2.class new file mode 100644 index 0000000000..b8631e9e44 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$presenter$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$showBadCaseConfigWindow$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$showBadCaseConfigWindow$1.class new file mode 100644 index 0000000000..64c7039d19 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager$showBadCaseConfigWindow$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.class new file mode 100644 index 0000000000..97dcbe4272 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.class new file mode 100644 index 0000000000..cd0935a576 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/BadCaseManagerKt.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$ClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$ClickListener.class new file mode 100644 index 0000000000..c9643938fb Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$ClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$Companion.class new file mode 100644 index 0000000000..d624c07001 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$initFloatWindow$8$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$initFloatWindow$8$1.class new file mode 100644 index 0000000000..69b7eac10b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$initFloatWindow$8$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$presenter$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$presenter$2.class new file mode 100644 index 0000000000..02a0607b05 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow$presenter$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow.class new file mode 100644 index 0000000000..975976b0b8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/AIDataCollectWindow.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$ClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$ClickListener.class new file mode 100644 index 0000000000..05b5916fe6 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$ClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$Companion.class new file mode 100644 index 0000000000..785682b846 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$initView$6.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$initView$6.class new file mode 100644 index 0000000000..dcd720d64d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView$initView$6.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView.class new file mode 100644 index 0000000000..025ac3b682 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCaseConfigView.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$deleteRecord$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$deleteRecord$1.class new file mode 100644 index 0000000000..a5bbca2eb5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$deleteRecord$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$getUnConsumedRecords$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$getUnConsumedRecords$1.class new file mode 100644 index 0000000000..d64555b2e0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$getUnConsumedRecords$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$insertRecord$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$insertRecord$1.class new file mode 100644 index 0000000000..7da8c2c7dd Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$insertRecord$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$repository$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$repository$2.class new file mode 100644 index 0000000000..d34fd73dae Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter$repository$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.class new file mode 100644 index 0000000000..2129c2d1e7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/BadCasePresenter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.class new file mode 100644 index 0000000000..f7573b5e40 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/IBadCasePresenter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$ClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$ClickListener.class new file mode 100644 index 0000000000..a7d44a2e86 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$ClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$Companion.class new file mode 100644 index 0000000000..10ea59f722 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$presenter$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$presenter$2.class new file mode 100644 index 0000000000..93c5f508c9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$presenter$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$setAudio$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$setAudio$1.class new file mode 100644 index 0000000000..150ecbe4d7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$setAudio$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$upload$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$upload$1.class new file mode 100644 index 0000000000..78f62cea3b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$upload$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$uploadAudio$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$uploadAudio$1.class new file mode 100644 index 0000000000..51a7b2ed49 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow$uploadAudio$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.class new file mode 100644 index 0000000000..8532a3ce30 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/InitiativeBadCaseWindow.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$ClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$ClickListener.class new file mode 100644 index 0000000000..18753a7b72 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$ClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$Companion.class new file mode 100644 index 0000000000..a80bb9a825 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$presenter$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$presenter$2.class new file mode 100644 index 0000000000..9d249a5405 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$presenter$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$setAudio$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$setAudio$1.class new file mode 100644 index 0000000000..68845a66a9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$setAudio$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$showFloatWindow$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$showFloatWindow$1.class new file mode 100644 index 0000000000..9db4018be2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$showFloatWindow$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$upload$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$upload$1.class new file mode 100644 index 0000000000..5f6ddffd21 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$upload$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$uploadAudio$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$uploadAudio$1.class new file mode 100644 index 0000000000..96bce96865 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow$uploadAudio$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow.class new file mode 100644 index 0000000000..e8c0d6fd39 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/PassiveBadCaseWindow.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseClickListener.class new file mode 100644 index 0000000000..c41ac8f62e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseListHolder.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseListHolder.class new file mode 100644 index 0000000000..7d163c33d5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter$CaseListHolder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter.class new file mode 100644 index 0000000000..085509bb41 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/CaseListAdapter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$ClickTemplateListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$ClickTemplateListener.class new file mode 100644 index 0000000000..06ebd8c7e8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$ClickTemplateListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$RecordTemplateHolder.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$RecordTemplateHolder.class new file mode 100644 index 0000000000..6a0bc2910c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter$RecordTemplateHolder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.class new file mode 100644 index 0000000000..4dee788ac9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/RecordTemplateAdapter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicClickListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicClickListener.class new file mode 100644 index 0000000000..46a011169b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicClickListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicListHolder.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicListHolder.class new file mode 100644 index 0000000000..9fd09fd0ef Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter$TopicListHolder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.class new file mode 100644 index 0000000000..d41ec2c204 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/biz/adapter/TopicListAdapter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.class new file mode 100644 index 0000000000..cc5d9ae05a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseConfig.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.class new file mode 100644 index 0000000000..c54b7ee832 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/consts/BadCaseHost.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$db$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$db$2.class new file mode 100644 index 0000000000..ce51794d89 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$db$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$loadBadCases$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$loadBadCases$1.class new file mode 100644 index 0000000000..2150ca09c7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$loadBadCases$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$loadBadCases$lambda-6$$inlined$sortedBy$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$loadBadCases$lambda-6$$inlined$sortedBy$1.class new file mode 100644 index 0000000000..76962624ec Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$loadBadCases$lambda-6$$inlined$sortedBy$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$net$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$net$2.class new file mode 100644 index 0000000000..cebbefb429 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$net$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$store$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$store$2.class new file mode 100644 index 0000000000..86b2b3e1f3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository$store$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.class new file mode 100644 index 0000000000..88d1771b63 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/Repository.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.class new file mode 100644 index 0000000000..68c9925374 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDb.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.class new file mode 100644 index 0000000000..2d42c0adda Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/BadCaseDbModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.class new file mode 100644 index 0000000000..94e98e58f4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/dao/IBadCaseRecordDao.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.class new file mode 100644 index 0000000000..79a28b1c9b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/db/entity/AutoPilotRecord.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel$get$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel$get$1.class new file mode 100644 index 0000000000..f0c8138246 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel$get$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel$get$3$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel$get$3$1.class new file mode 100644 index 0000000000..200ab93172 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel$get$3$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel$upload$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel$upload$1.class new file mode 100644 index 0000000000..788f042117 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel$upload$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.class new file mode 100644 index 0000000000..3c352b52fc Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/BadCaseNetModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.class new file mode 100644 index 0000000000..6e574f3961 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/BadCaseApi.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason.class new file mode 100644 index 0000000000..7fba7d6c0a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse$Reason.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.class new file mode 100644 index 0000000000..33ac48aebb Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/BadCaseResponse.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.class new file mode 100644 index 0000000000..7d91c2e050 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/net/api/entity/UploadResult.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$$inlined$map$1$2$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$$inlined$map$1$2$1.class new file mode 100644 index 0000000000..7bebe12340 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$$inlined$map$1$2$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$$inlined$map$1$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$$inlined$map$1$2.class new file mode 100644 index 0000000000..c42bc815a9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$$inlined$map$1$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$$inlined$map$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$$inlined$map$1.class new file mode 100644 index 0000000000..1372e88dd7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$$inlined$map$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$1.class new file mode 100644 index 0000000000..f0a03359bd Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$2.class new file mode 100644 index 0000000000..19bf390022 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getLastModified$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getTaskIdAndIncrement$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getTaskIdAndIncrement$1.class new file mode 100644 index 0000000000..957086fb37 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getTaskIdAndIncrement$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getTaskIdAndIncrement$2$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getTaskIdAndIncrement$2$1.class new file mode 100644 index 0000000000..8faa6af2e2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$getTaskIdAndIncrement$2$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$records$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$records$1.class new file mode 100644 index 0000000000..097c72f552 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$records$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$serializer$1$readFrom$2$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$serializer$1$readFrom$2$1.class new file mode 100644 index 0000000000..01d9fd8501 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$serializer$1$readFrom$2$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$serializer$1$writeTo$2$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$serializer$1$writeTo$2$1.class new file mode 100644 index 0000000000..0fcd696790 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$serializer$1$writeTo$2$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$serializer$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$serializer$1.class new file mode 100644 index 0000000000..fb5fdfd66b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$serializer$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$store$2$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$store$2$1.class new file mode 100644 index 0000000000..1b0f9cb264 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$store$2$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$store$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$store$2.class new file mode 100644 index 0000000000..1b5075b293 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$store$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$updateLastModified$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$updateLastModified$2.class new file mode 100644 index 0000000000..c76f4ddb1a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$updateLastModified$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$updateRecords$3.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$updateRecords$3.class new file mode 100644 index 0000000000..783390617f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore$updateRecords$3.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.class new file mode 100644 index 0000000000..5e32b90292 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/badcase/repository/store/BadCaseStore.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager$Companion$bindingCarManager$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager$Companion$bindingCarManager$2.class new file mode 100644 index 0000000000..61a898ee15 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager$Companion$bindingCarManager$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager$Companion.class new file mode 100644 index 0000000000..52cec5f88e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.class new file mode 100644 index 0000000000..7419d91700 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$Companion$instance$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$Companion$instance$2.class new file mode 100644 index 0000000000..c34a553f4f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$Companion$instance$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$Companion.class new file mode 100644 index 0000000000..162a57ad78 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$getBindingcarInfo$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$getBindingcarInfo$1.class new file mode 100644 index 0000000000..e96d6cac99 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$getBindingcarInfo$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$modifyBindingcar$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$modifyBindingcar$1.class new file mode 100644 index 0000000000..0a7a85dce9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager$modifyBindingcar$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.class new file mode 100644 index 0000000000..112173e590 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager$EnvConfig.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager$EnvConfig.class new file mode 100644 index 0000000000..7cc37e0b6e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager$EnvConfig.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.class new file mode 100644 index 0000000000..66167d3115 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/env/EnvChangeManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$enqueuePop$1$reminder$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$enqueuePop$1$reminder$1.class new file mode 100644 index 0000000000..ca34bfce2b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$enqueuePop$1$reminder$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$enqueuePop$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$enqueuePop$1.class new file mode 100644 index 0000000000..99978f644c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$enqueuePop$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$enqueuePop$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$enqueuePop$2.class new file mode 100644 index 0000000000..b3454167ce Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$enqueuePop$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$normalPop$1$invokeSuspend$$inlined$doOnAttach$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$normalPop$1$invokeSuspend$$inlined$doOnAttach$1.class new file mode 100644 index 0000000000..e9936da03e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$normalPop$1$invokeSuspend$$inlined$doOnAttach$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$normalPop$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$normalPop$1.class new file mode 100644 index 0000000000..17e6e240bc Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$normalPop$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$softKeyboardHeightChanged$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$softKeyboardHeightChanged$1.class new file mode 100644 index 0000000000..62fd0b218c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$softKeyboardHeightChanged$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$softKeyboardHeightChanged$listener$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$softKeyboardHeightChanged$listener$1.class new file mode 100644 index 0000000000..42eb796acd Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$softKeyboardHeightChanged$listener$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$toast$1$reminder$1$show$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$toast$1$reminder$1$show$1.class new file mode 100644 index 0000000000..53d5ffb6c9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$toast$1$reminder$1$show$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$toast$1$reminder$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$toast$1$reminder$1.class new file mode 100644 index 0000000000..0e4ae77b9b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$toast$1$reminder$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$toast$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$toast$1.class new file mode 100644 index 0000000000..490d0e0ba7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt$toast$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.class new file mode 100644 index 0000000000..ec11ade957 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/ext/ExtentionsKt.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$Companion$bizConfigCenter$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$Companion$bizConfigCenter$2.class new file mode 100644 index 0000000000..d8ca66514b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$Companion$bizConfigCenter$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$Companion.class new file mode 100644 index 0000000000..7337d11e7b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$onAutopilotCarConfig$1$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$onAutopilotCarConfig$1$1.class new file mode 100644 index 0000000000..62d3c02a6d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$onAutopilotCarConfig$1$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$onAutopilotCarConfig$1$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$onAutopilotCarConfig$1$2.class new file mode 100644 index 0000000000..b3932ae2df Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter$onAutopilotCarConfig$1$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.class new file mode 100644 index 0000000000..110f88cae4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigCenter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst$Companion.class new file mode 100644 index 0000000000..5f941cf9e6 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.class new file mode 100644 index 0000000000..8666b105bb Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigConst.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl$init$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl$init$1.class new file mode 100644 index 0000000000..0d339cb0af Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl$init$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.class new file mode 100644 index 0000000000..9f821dd492 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/FuncConfigImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.class new file mode 100644 index 0000000000..7abc9d51a4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigApiService.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$1.class new file mode 100644 index 0000000000..008bf46b73 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$2$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$2$1.class new file mode 100644 index 0000000000..8ad9454174 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$2$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$2.class new file mode 100644 index 0000000000..88ad613241 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$3.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$3.class new file mode 100644 index 0000000000..a6cde9953d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$3.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$4.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$4.class new file mode 100644 index 0000000000..7fe120c4c4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel$requestFuncConfig$1$4.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.class new file mode 100644 index 0000000000..e571c520e9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/funcconfig/network/FuncConfigNetWorkModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst$Companion.class new file mode 100644 index 0000000000..da4749f6d9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.class new file mode 100644 index 0000000000..fb3af85dbf Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchConst.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.class new file mode 100644 index 0000000000..1a75cbeed5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$Companion$moFangManager$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$Companion$moFangManager$2.class new file mode 100644 index 0000000000..bcd9306d26 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$Companion$moFangManager$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$Companion.class new file mode 100644 index 0000000000..64883f4c00 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$bluetoothMonitorReceiver$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$bluetoothMonitorReceiver$1.class new file mode 100644 index 0000000000..185e478259 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager$bluetoothMonitorReceiver$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.class new file mode 100644 index 0000000000..c418aca444 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/mofang/MoFangManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$Companion.class new file mode 100644 index 0000000000..0226a10ecc Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$CpuRunnable.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$CpuRunnable.class new file mode 100644 index 0000000000..b78f21e16a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$CpuRunnable.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$cpuInfoList$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$cpuInfoList$2.class new file mode 100644 index 0000000000..da6167f6b7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$cpuInfoList$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$dateFormat$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$dateFormat$2.class new file mode 100644 index 0000000000..e708790b79 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$dateFormat$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$pid$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$pid$2.class new file mode 100644 index 0000000000..3d7c3aabd0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor$pid$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.class new file mode 100644 index 0000000000..20b008dc6d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/CpuMonitor.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$Companion.class new file mode 100644 index 0000000000..283d381edf Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$MemoryRunnable.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$MemoryRunnable.class new file mode 100644 index 0000000000..7cf49c90b0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$MemoryRunnable.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$dateFormat$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$dateFormat$2.class new file mode 100644 index 0000000000..e0bbb9c4bb Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$dateFormat$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$memInfoList$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$memInfoList$2.class new file mode 100644 index 0000000000..bbe597121b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor$memInfoList$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.class new file mode 100644 index 0000000000..a8ddabae45 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MemMonitor.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager$Companion.class new file mode 100644 index 0000000000..c99fb228fe Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager$startMonitor$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager$startMonitor$1.class new file mode 100644 index 0000000000..611f143db8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager$startMonitor$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.class new file mode 100644 index 0000000000..d12a0d5f15 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/MonitorManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.class new file mode 100644 index 0000000000..7e1fb3ff76 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/CpuInfo.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.class new file mode 100644 index 0000000000..2f0e60f384 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MemInfo.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.class new file mode 100644 index 0000000000..6b0ca44e39 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDao.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb$Companion.class new file mode 100644 index 0000000000..7f6101a949 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.class new file mode 100644 index 0000000000..7b62eebc72 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/db/MonitorDb.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.class new file mode 100644 index 0000000000..6529e69ffe Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/remote/UserServiceManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.class new file mode 100644 index 0000000000..db14b95d4f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/DoubleUtils.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.class new file mode 100644 index 0000000000..b7849818ef Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/monitor/utils/FileUtil.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager$Companion$iPCReportManager$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager$Companion$iPCReportManager$2.class new file mode 100644 index 0000000000..bb2894b7d7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager$Companion$iPCReportManager$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager$Companion.class new file mode 100644 index 0000000000..22aa6274cd Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.class new file mode 100644 index 0000000000..d1cf7a04c9 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/report/IPCReportManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$1.class new file mode 100644 index 0000000000..c85f38cb7e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$Companion$sceneManager$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$Companion$sceneManager$2.class new file mode 100644 index 0000000000..f5faf7c4e1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$Companion$sceneManager$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$Companion.class new file mode 100644 index 0000000000..efe3bb0cb0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.class new file mode 100644 index 0000000000..a9aa1b71cd Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/scene/SceneManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$IStatusListener.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$IStatusListener.class new file mode 100644 index 0000000000..551f1bab59 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$IStatusListener.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$flows$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$flows$2.class new file mode 100644 index 0000000000..d1ad5a7794 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$flows$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$init$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$init$1.class new file mode 100644 index 0000000000..6f3b6b6958 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$init$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$listeners$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$listeners$2.class new file mode 100644 index 0000000000..0aaf67e7b3 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$listeners$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$onCreate$$inlined$observe$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$onCreate$$inlined$observe$1.class new file mode 100644 index 0000000000..650b03a846 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$onCreate$$inlined$observe$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$onCreate$3$invokeSuspend$$inlined$collect$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$onCreate$3$invokeSuspend$$inlined$collect$1.class new file mode 100644 index 0000000000..c64d46f650 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$onCreate$3$invokeSuspend$$inlined$collect$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$onCreate$3.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$onCreate$3.class new file mode 100644 index 0000000000..a674b7aa51 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager$onCreate$3.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.class new file mode 100644 index 0000000000..fb0f3da455 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/StatusManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.class new file mode 100644 index 0000000000..37d3db09c1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/CanStatus.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.class new file mode 100644 index 0000000000..9314136de6 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/GpsStatus.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.class new file mode 100644 index 0000000000..908c4e115e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/IpcStatus.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.class new file mode 100644 index 0000000000..52b8bcf0b4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/RTKStatus.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.class new file mode 100644 index 0000000000..05fe420e9f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/Status.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.class new file mode 100644 index 0000000000..e816c782a4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/StatusKt.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing.class new file mode 100644 index 0000000000..7fb2658ba2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus$Tracing.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.class new file mode 100644 index 0000000000..c7b4a71008 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/entity/TracingStatus.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow$asFlow$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow$asFlow$1.class new file mode 100644 index 0000000000..8c5d2796d8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow$asFlow$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow$chl$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow$chl$2.class new file mode 100644 index 0000000000..75d877901a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow$chl$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow$send$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow$send$1.class new file mode 100644 index 0000000000..4bc09b7612 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow$send$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.class new file mode 100644 index 0000000000..5d80c73c67 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/IFlow.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$Companion.class new file mode 100644 index 0000000000..47e99de308 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$state$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$state$2.class new file mode 100644 index 0000000000..36af7fb1d8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$state$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$timeOutCheck$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$timeOutCheck$1.class new file mode 100644 index 0000000000..a3294e8ce8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl$timeOutCheck$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.class new file mode 100644 index 0000000000..a235ff2aef Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/can/CanImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$CheckLocationReceiver.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$CheckLocationReceiver.class new file mode 100644 index 0000000000..273170f267 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$CheckLocationReceiver.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$Companion.class new file mode 100644 index 0000000000..7500fa717c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onClose$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onClose$1.class new file mode 100644 index 0000000000..dacf14066e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onClose$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onCreate$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onCreate$1.class new file mode 100644 index 0000000000..23f1d0d976 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onCreate$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onOpen$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onOpen$1.class new file mode 100644 index 0000000000..cb53b776d6 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onOpen$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onStateListener$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onStateListener$1.class new file mode 100644 index 0000000000..ebda5c1f99 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl$onStateListener$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.class new file mode 100644 index 0000000000..400eec0ede Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/gps/GpsImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl$Companion.class new file mode 100644 index 0000000000..709f37d13e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.class new file mode 100644 index 0000000000..5d2cdf4a74 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/ipc/IpcImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$Companion.class new file mode 100644 index 0000000000..c99784422c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$check$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$check$2.class new file mode 100644 index 0000000000..8809a318d7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$check$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$healthInfo$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$healthInfo$2.class new file mode 100644 index 0000000000..891e415a2e Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$healthInfo$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$onChassisLocationWGS84$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$onChassisLocationWGS84$2.class new file mode 100644 index 0000000000..7a3a85ef7f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl$onChassisLocationWGS84$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.class new file mode 100644 index 0000000000..13e3245f08 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/rtk/RTKImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl$Companion.class new file mode 100644 index 0000000000..a090a8758b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.class new file mode 100644 index 0000000000..3ff25e3bda Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/flow/trace/TracingImpl.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel$Companion.class new file mode 100644 index 0000000000..ef36b4bdc5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel$old$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel$old$2.class new file mode 100644 index 0000000000..3107d2bb89 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel$old$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.class new file mode 100644 index 0000000000..2641fd988a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/model/StatusModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView$Companion.class new file mode 100644 index 0000000000..c589facd47 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView$init$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView$init$2.class new file mode 100644 index 0000000000..5f4b62b004 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView$init$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.class new file mode 100644 index 0000000000..a2d33f0c22 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/StatusView.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$Companion.class new file mode 100644 index 0000000000..c6aa833d0c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder$WhenMappings.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder$WhenMappings.class new file mode 100644 index 0000000000..7760043fc7 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder$WhenMappings.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder$iv$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder$iv$2.class new file mode 100644 index 0000000000..90255defe2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder$iv$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder.class new file mode 100644 index 0000000000..44ec2388b0 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter$StatusViewHolder.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.class new file mode 100644 index 0000000000..84941e2aa5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/adapter/StatusAdapter.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.class new file mode 100644 index 0000000000..af0a82332b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/status/ui/diff/StatusDiffCallback.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig$logOutConfig$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig$logOutConfig$1.class new file mode 100644 index 0000000000..19e0416f56 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig$logOutConfig$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig$logOutConfig$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig$logOutConfig$2.class new file mode 100644 index 0000000000..56cc8832c1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig$logOutConfig$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.class new file mode 100644 index 0000000000..c46bf2dc47 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/SyncConfig.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager$Companion$traceManager$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager$Companion$traceManager$2.class new file mode 100644 index 0000000000..7ca7c6cfc8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager$Companion$traceManager$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager$Companion.class new file mode 100644 index 0000000000..22179d346d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.class new file mode 100644 index 0000000000..5722fd7d3d Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/TraceManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$1$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$1$1.class new file mode 100644 index 0000000000..6d740a10a4 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$1$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$1.class new file mode 100644 index 0000000000..43a847f737 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$2$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$2$1.class new file mode 100644 index 0000000000..fe4cb1e3ec Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$2$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$2.class new file mode 100644 index 0000000000..e5908db763 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$3.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$3.class new file mode 100644 index 0000000000..9ff8e7f665 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$3.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$4.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$4.class new file mode 100644 index 0000000000..5787a7fb03 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel$report$1$4.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.class new file mode 100644 index 0000000000..c07a709ba5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/StartUpTraceNetWorkModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.class new file mode 100644 index 0000000000..c6b4eef68c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/trace/network/TraceStartUpApiService.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager$Companion$ttsManager$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager$Companion$ttsManager$2.class new file mode 100644 index 0000000000..4621954c54 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager$Companion$ttsManager$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager$Companion.class new file mode 100644 index 0000000000..db9dfbad97 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.class new file mode 100644 index 0000000000..7e06983152 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/tts/TtsManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.class new file mode 100644 index 0000000000..5ef74e429b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeApiService.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$Companion$ipcUpgradeManager$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$Companion$ipcUpgradeManager$2.class new file mode 100644 index 0000000000..5154bd1709 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$Companion$ipcUpgradeManager$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$Companion.class new file mode 100644 index 0000000000..1de71f945b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$queryContainers$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$queryContainers$1.class new file mode 100644 index 0000000000..bbf034e7a2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$queryContainers$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$queryContainers$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$queryContainers$2.class new file mode 100644 index 0000000000..a2cc35213b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$queryContainers$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$upgradeConfirm$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$upgradeConfirm$1.class new file mode 100644 index 0000000000..112da1a81c Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$upgradeConfirm$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$upgradeConfirm$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$upgradeConfirm$2.class new file mode 100644 index 0000000000..870906576b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager$upgradeConfirm$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.class new file mode 100644 index 0000000000..ad4b7179ac Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$1$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$1$1.class new file mode 100644 index 0000000000..a51f085347 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$1$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$1.class new file mode 100644 index 0000000000..dfb93c0e6a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$2.class new file mode 100644 index 0000000000..cc9594fdb8 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$3.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$3.class new file mode 100644 index 0000000000..3a8b4c7465 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$queryContainers$1$3.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$2$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$2$1.class new file mode 100644 index 0000000000..e03253cae5 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$2$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$2.class new file mode 100644 index 0000000000..d360c47bd2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$3.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$3.class new file mode 100644 index 0000000000..1caa399026 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$3.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$4.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$4.class new file mode 100644 index 0000000000..6d9c20277b Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel$upgradeConfirm$1$4.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.class new file mode 100644 index 0000000000..1f06930ac1 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/IPCUpgradeNetWorkModel.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst$Companion.class new file mode 100644 index 0000000000..0bb871e351 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.class new file mode 100644 index 0000000000..d5be3171f2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeHostConst.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$Companion$upgradeManager$2.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$Companion$upgradeManager$2.class new file mode 100644 index 0000000000..e88df21224 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$Companion$upgradeManager$2.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$Companion.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$Companion.class new file mode 100644 index 0000000000..1a30aa5b84 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$Companion.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onError$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onError$1.class new file mode 100644 index 0000000000..c46af27772 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onError$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onFinished$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onFinished$1.class new file mode 100644 index 0000000000..05183ca8c2 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onFinished$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onPause$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onPause$1.class new file mode 100644 index 0000000000..7d00402d70 Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onPause$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onProgress$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onProgress$1.class new file mode 100644 index 0000000000..a4351f479f Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onProgress$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onStart$1.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onStart$1.class new file mode 100644 index 0000000000..7b5dfd1b9a Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager$onStart$1.class differ diff --git a/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.class b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.class new file mode 100644 index 0000000000..a18b0b0afd Binary files /dev/null and b/core/function-impl/mogo-core-function-devatools/build/tmp/kotlin-classes/debug/com/zhjt/mogo_core_function_devatools/upgrade/UpgradeManager.class differ diff --git a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/binding/BindingCarApiService.java b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/binding/BindingCarApiService.java index db6a2427dc..e79e5c969d 100644 --- a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/binding/BindingCarApiService.java +++ b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/binding/BindingCarApiService.java @@ -1,6 +1,6 @@ package com.zhjt.mogo_core_function_devatools.binding; -import com.mogo.eagle.core.data.bindingcar.BindingcarInfo; +import com.mogo.eagle.core.data.bindingcar.BindingCarInfo; import com.mogo.eagle.core.data.bindingcar.ModifyBindingcarInfo; import io.reactivex.Observable; @@ -18,11 +18,11 @@ public interface BindingCarApiService { /** * 获取绑定车辆的信息 * - * @return {@link BindingcarInfo} + * @return {@link BindingCarInfo} */ @Headers("Content-Type:application/json;charset=UTF-8") @POST("eagleEye-mis/cmdbapi/pad/selectPadByMac") - Observable getBindingCarInfo(/*@Header("access_token") String access_token,*/ @Body RequestBody requestBody); + Observable getBindingCarInfo(/*@Header("access_token") String access_token,*/ @Body RequestBody requestBody); /** * 绑定和修改绑定车机 diff --git a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.kt b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.kt index ed762acc9a..2c7e11bdc8 100644 --- a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.kt +++ b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/binding/BindingCarNetWorkManager.kt @@ -3,8 +3,8 @@ package com.zhjt.mogo_core_function_devatools.binding import android.content.Context import com.mogo.commons.constants.HostConst import com.mogo.commons.constants.SharedPrefsConstants -import com.mogo.eagle.core.data.bindingcar.BindingcarInfo -import com.mogo.eagle.core.data.bindingcar.BindingcarRequest +import com.mogo.eagle.core.data.bindingcar.BindingCarInfo +import com.mogo.eagle.core.data.bindingcar.BindingCarRequest import com.mogo.eagle.core.data.bindingcar.ModifyBindingcarInfo import com.mogo.eagle.core.data.config.HdMapBuildConfig import com.mogo.eagle.core.function.call.hmi.CallerHmiManager.showBindingcarDialog @@ -56,7 +56,11 @@ class BindingCarNetWorkManager private constructor() { ) { // String macAddress1 = "48:b0:2d:4d:33:40"; // String sn = "X2020220417KA94QIN"; - val request = BindingcarRequest(macAddress, widevineIDWithMd5, screenType) + val request = BindingCarRequest( + macAddress, + widevineIDWithMd5, + screenType + ) val requestBody = RequestBody.create( MediaType.get("application/json;charset=UTF-8"), GsonUtil.jsonFromObject(request) @@ -64,9 +68,9 @@ class BindingCarNetWorkManager private constructor() { mBindingCarApiService.getBindingCarInfo(requestBody) .subscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.mainThread()) - .subscribe(object : Observer { + .subscribe(object : Observer { override fun onSubscribe(d: Disposable) {} - override fun onNext(info: BindingcarInfo) { + override fun onNext(info: BindingCarInfo) { if (info != null && info.getData() != null) { d( SceneConstant.M_BINDING + TAG, @@ -109,7 +113,11 @@ class BindingCarNetWorkManager private constructor() { ) { // String macAddress1 = "48:b0:2d:4d:33:40"; // String sn = "X2020220417KA94QIN"; - val request = BindingcarRequest(macAddress, widevineIDWithMd5, screenType) + val request = BindingCarRequest( + macAddress, + widevineIDWithMd5, + screenType + ) val requestBody = RequestBody.create( MediaType.get("application/json;charset=UTF-8"), GsonUtil.jsonFromObject(request) diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/V2XEventManager.kt b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/V2XEventManager.kt index 36f94c984f..e6783dd515 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/V2XEventManager.kt +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/V2XEventManager.kt @@ -2,7 +2,6 @@ package com.mogo.eagle.core.function.v2x.events import android.content.Context import android.content.Intent -import android.content.IntentFilter import android.os.Handler import android.os.Looper import android.util.Log @@ -13,9 +12,6 @@ import com.mogo.cloud.passport.IMoGoTokenCallback import com.mogo.cloud.passport.MoGoAiCloudClient import com.mogo.cloud.passport.MoGoAiCloudClientConfig import com.mogo.commons.module.ServiceConst.CARD_TYPE_ROAD_CONDITION -import com.mogo.commons.module.status.IMogoStatusChangedListener -import com.mogo.commons.module.status.MogoStatusManager -import com.mogo.commons.module.status.StatusDescriptor import com.mogo.commons.network.ParamsUtil import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_CLOUD_V2N import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_LINK_CLOUD @@ -47,10 +43,7 @@ import com.mogo.eagle.core.function.v2x.events.bridge.BridgeApi import com.mogo.eagle.core.function.v2x.events.bridge.BridgeApi.context import com.mogo.eagle.core.function.v2x.events.consts.V2XConst import com.mogo.eagle.core.function.v2x.events.consts.V2XConst.* -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XSeekHelpRes -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XStrategyPushRes import com.mogo.eagle.core.function.v2x.events.manager.V2XStatusManager -import com.mogo.eagle.core.function.v2x.events.network.V2XRefreshCallback import com.mogo.eagle.core.function.v2x.events.observer.V2XOptimalRouteObserver import com.mogo.eagle.core.function.v2x.events.receiver.SceneBroadcastReceiver import com.mogo.eagle.core.function.v2x.events.scenario.impl.V2XScenarioManager @@ -58,13 +51,9 @@ import com.mogo.eagle.core.function.v2x.events.scenario.scene.airoad.AiRoadMarke import com.mogo.eagle.core.function.v2x.events.scenario.scene.airoad.AiRoadMarker.Marker import com.mogo.eagle.core.function.v2x.events.utils.MapUtils import com.mogo.eagle.core.function.v2x.events.utils.TrackUtils -import com.mogo.eagle.core.function.v2x.events.utils.V2XSQLiteUtils -import com.mogo.eagle.core.function.v2x.events.voice.V2XVoiceManager -import com.mogo.eagle.core.network.utils.GsonUtil import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger import com.mogo.eagle.core.utilcode.mogo.logger.Logger import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_V2X -import com.mogo.eagle.core.utilcode.mogo.storage.SharedPrefsMgr import com.mogo.eagle.core.utilcode.util.ThreadUtils import com.mogo.eagle.core.utilcode.util.Utils import com.mogo.map.marker.IMogoMarker @@ -95,8 +84,7 @@ import java.util.concurrent.TimeUnit import java.util.concurrent.atomic.AtomicBoolean -object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallback, - IMogoStatusChangedListener { +object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallback{ private const val TAG = "V2XEventManager" @@ -126,19 +114,12 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb V2XManager.start() } - V2XVoiceManager.init(context) registerListener() - refreshStrategyConfig() - initCarForHelpStatus() V2XManager.forceRefresh() MoGoAiCloudClient.getInstance().addTokenCallbacks(this) // 注册广播接收场景弹窗使用的 - val localReceiver = SceneBroadcastReceiver() - val localBroadcastManager = LocalBroadcastManager.getInstance(context) - val intentFilter = IntentFilter() - intentFilter.addAction(BROADCAST_SCENE_HANDLER_ACTION) - localBroadcastManager.registerReceiver(localReceiver, intentFilter) + SceneBroadcastReceiver.register(context) } } @@ -152,17 +133,12 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb return super.onMarkerClicked(marker) } }) - MogoStatusManager.getInstance() - .registerStatusChangedListener(MODULE_NAME, StatusDescriptor.SEEK_HELPING, this) - } private fun unRegisterListener() { V2XManager.removeCallback(this) CallerMapLocationListenerManager.removeListener(TAG, false) mogoMarkersHandler.unregisterMarkerClickListener(CARD_TYPE_ROAD_CONDITION) - MogoStatusManager.getInstance() - .unregisterStatusChangedListener(MODULE_NAME, StatusDescriptor.SEEK_HELPING, this) } private fun handleRoadConditionMarkerClick(marker: IMogoMarker?) { @@ -222,68 +198,6 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb return null } - override fun onStatusChanged(descriptor: StatusDescriptor?, isTrue: Boolean) { - CallerLogger.d("$M_V2X$TAG", "状态发生改变\ndescriptor:$descriptor\nisTrue:$isTrue") // 记录状态更改 - // 记录状态更改 - if (descriptor == StatusDescriptor.SEEK_HELPING) { - refreshMeSeekHelp(isTrue) - } - } - - /** - * 刷新自车求助状态 - * - * @param isTrue - */ - private fun refreshMeSeekHelp(isTrue: Boolean) { - val entity = V2XMessageEntity() - entity.type = V2XMessageEntity.V2XTypeEnum.ALERT_CAR_FOR_HELP - entity.content = isTrue - V2XScenarioManager.getInstance().handlerMessage(entity) - } - - /** - * 刷新自车求助状态 - */ - private fun initCarForHelpStatus() { - CallerLogger.d("$M_V2X$TAG", "刷新自车求助状态……") //本地查询是否超时 - BridgeApi.refreshModel().getHelpSignal(object : V2XRefreshCallback { - override fun onSuccess(result: V2XSeekHelpRes?) { - if (result != null) { - val resultBean = result.result - if (resultBean != null) { - CallerLogger.d("$M_V2X$TAG", "刷新自车求助状态 resultBean:$resultBean") - val vehicleType: Int = resultBean.vehicleType //故障车 - if (vehicleType == 4) { - refreshMeSeekHelp(true) - MogoStatusManager.getInstance().setSeekHelping(MODULE_NAME, true) - } else { - refreshMeSeekHelp(false) - MogoStatusManager.getInstance().setSeekHelping(MODULE_NAME, false) - } - } - } - } - - override fun onFail(msg: String) {} - }) - } - - private fun refreshStrategyConfig() { - CallerLogger.w("$M_V2X$TAG", "刷新V2X中的配置文件") - BridgeApi.refreshModel().getStrategyPush(object : V2XRefreshCallback { - override fun onSuccess(result: V2XStrategyPushRes?) { //CallerLogger.w("$M_V2X$TAG", "V2X疲劳驾驶配置数据更新:" + GsonUtil.jsonFromObject(result)); - val resultBean = result?.result - if (resultBean != null) { // 更新本地的v2x提醒策略 - SharedPrefsMgr.getInstance(Utils.getApp()) - .putString(V2X_STRATEGY_PUSH, GsonUtil.jsonFromObject(resultBean)) - } - } - - override fun onFail(msg: String?) {} - }) - } - override fun onLocationChanged(location: MogoLocation?, from: Int, isGps: Boolean) { location ?: return BridgeApi.location.set(location) @@ -322,7 +236,7 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb BridgeApi.v2xMarker()?.v2XRoadEventEntityList, V2XStatusManager.getInstance().location ) - if (v2XRoadEventEntity != null) { // CallerLogger.w("$M_V2X$TAG", + if (v2XRoadEventEntity != null) { val distance = v2XRoadEventEntity.distance val min = if (EventTypeEnum.AI_ROAD_WORK.poiType == v2XRoadEventEntity.poiType) 0 else 5 Logger.d( @@ -341,27 +255,6 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb } } - /** - * 存储本地数据 - * - * @param v2XRoadEventEntity 要存储的场景 - */ - private fun saveLocalStory(scenarioType: Int, v2XRoadEventEntity: MarkerExploreWay) { - ThreadUtils.getIoPool().execute { - try { - V2XSQLiteUtils.saveLocalStory( - scenarioType, - v2XRoadEventEntity, - v2XRoadEventEntity.hashCode() - ) - } catch (e: Exception) { - e.printStackTrace() - CallerLogger.e("$M_V2X$TAG", "$e") - } - } - } - - override fun onTokenGot(token: String?, sn: String?) { if (V2XManager.hasInit()) { V2XManager.updateSnAndToken(sn, token) diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/alarm/V2XAlarmServer.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/alarm/V2XAlarmServer.java index 510b54c0e1..70a82ab838 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/alarm/V2XAlarmServer.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/alarm/V2XAlarmServer.java @@ -95,7 +95,6 @@ public class V2XAlarmServer { return null; } - private static boolean isOutOfRange(double poi_lon, double poi_lat, double car_lon, double car_lat, double car_angle) { return !isFrontOfCar(poi_lon, poi_lat, car_lon, car_lat, car_angle); } diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/bridge/BridgeApi.kt b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/bridge/BridgeApi.kt index 23e4ee2e89..566587fc86 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/bridge/BridgeApi.kt +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/bridge/BridgeApi.kt @@ -5,7 +5,6 @@ import com.alibaba.android.arouter.launcher.ARouter import com.mogo.eagle.core.data.map.MogoLocation import com.mogo.eagle.core.function.v2x.events.consts.MoGoV2XServicePaths import com.mogo.eagle.core.function.v2x.events.manager.* -import com.mogo.eagle.core.function.v2x.events.network.V2XRefreshModel import com.mogo.eagle.core.utilcode.util.Utils import java.lang.ref.WeakReference import java.util.concurrent.atomic.AtomicReference @@ -44,10 +43,6 @@ internal object BridgeApi { ARouter.getInstance().build(MoGoV2XServicePaths.PATH_V2X_STATUS_MANAGER).navigation(context()) as? IMoGoV2XStatusManager } - private val v2xRefreshModel by lazy { - V2XRefreshModel.getInstance(context()) - } - fun init(context: Context) { this.context.set(WeakReference(context)) } @@ -66,6 +61,4 @@ internal object BridgeApi { fun v2xStatus() = v2xStatus - fun refreshModel(): V2XRefreshModel = v2xRefreshModel - } \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/consts/V2XConst.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/consts/V2XConst.java index 0694a93473..5cee64e8ef 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/consts/V2XConst.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/consts/V2XConst.java @@ -26,15 +26,12 @@ public class V2XConst { public static final String BROADCAST_TEST_PANEL_CONTROL_TYPE_EXTRA_KEY = "sceneType"; public static final String BROADCAST_SCENE_ACTION = "com.v2x.scene_local_broadcast"; - public static final String V2X_STRATEGY_PUSH = "v2x_strategy_push"; /** * V2X 埋点 */ public static final String V2X_ROAD_SHOW = "v2x_road_show"; - public static final String V2X_ROAD_EVET = "v2x_road_event"; - public static final String V2X_ROAD_EVET_HISTORY_BUTTON = "V2X_button_click"; public static final String V2X_ROAD_PRODUCE = "v2x_road_produce"; public static final String LAUNCHER_ICON_CLICK = "Launcher_Icon_Click"; diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XGiveLike.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XGiveLike.java deleted file mode 100644 index bb8613ad19..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XGiveLike.java +++ /dev/null @@ -1,52 +0,0 @@ - -package com.mogo.eagle.core.function.v2x.events.entity.net; - -import com.google.gson.annotations.Expose; - -import java.io.Serializable; - -@SuppressWarnings("unused") -public class V2XGiveLike implements Serializable { - - @Expose - private Long code; - @Expose - private String msg; - @Expose - private String result; - @Expose - private String sign; - - public Long getCode() { - return code; - } - - public void setCode(Long code) { - this.code = code; - } - - public String getMsg() { - return msg; - } - - public void setMsg(String msg) { - this.msg = msg; - } - - public String getResult() { - return result; - } - - public void setResult(String result) { - this.result = result; - } - - public String getSign() { - return sign; - } - - public void setSign(String sign) { - this.sign = sign; - } - -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XLiveCarRes.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XLiveCarRes.java deleted file mode 100644 index 37c0e060cc..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XLiveCarRes.java +++ /dev/null @@ -1,56 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.net; - -import com.google.gson.annotations.Expose; -import com.mogo.eagle.core.data.BaseData; -import com.mogo.eagle.core.data.map.entity.V2XLiveCarInfoEntity; - -import java.io.Serializable; -import java.util.List; - -/** - * author : donghongyu - * e-mail : 1358506549@qq.com - * date : 2020/4/14 2:58 PM - * desc : 根据经纬度查询附近可直播车机直播信息 - * version: 1.0 - */ -public class V2XLiveCarRes extends BaseData implements Serializable { - @Expose - private ResultBean result; - - public static class ResultBean { - - private List info; - - public List getInfo() { - return info; - } - - public void setInfo(List info) { - this.info = info; - } - - @Override - public String toString() { - return "ResultBean{" + - "info=" + info + - '}'; - } - } - - public ResultBean getResult() { - return result; - } - - public void setResult(ResultBean result) { - this.result = result; - } - - @Override - public String toString() { - return "V2XLiveCarRes{" + - "result=" + result + - '}'; - } - -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XSeekHelpRes.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XSeekHelpRes.java deleted file mode 100644 index 7c8b2b4f8e..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XSeekHelpRes.java +++ /dev/null @@ -1,52 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.net; - -import com.mogo.eagle.core.data.BaseData; - -import java.io.Serializable; - -/** - * author : donghongyu - * e-mail : 1358506549@qq.com - * date : 2020/3/11 4:25 PM - * desc : 故障求助查询,当前车辆是否处于求助中 - * version: 1.0 - */ -public class V2XSeekHelpRes extends BaseData implements Serializable { - private ResultBean result; - - public ResultBean getResult() { - return result; - } - - public void setResult(ResultBean result) { - this.result = result; - } - - public static class ResultBean { - private int vehicleType; - - public int getVehicleType() { - return vehicleType; - } - - public void setVehicleType(int vehicleType) { - this.vehicleType = vehicleType; - } - - @Override - public String toString() { - return "ResultBean{" + - "vehicleType=" + vehicleType + - '}'; - } - } - - @Override - public String toString() { - return "V2XSeekHelpResult{" + - "result=" + result + - ", code=" + code + - ", msg='" + msg + '\'' + - '}'; - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XSpecialCarRes.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XSpecialCarRes.java deleted file mode 100644 index 28af2d615a..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XSpecialCarRes.java +++ /dev/null @@ -1,205 +0,0 @@ - -package com.mogo.eagle.core.function.v2x.events.entity.net; - -import java.io.Serializable; -import java.util.List; - -@SuppressWarnings("unused") -public class V2XSpecialCarRes implements Serializable { - - private List coordinates; - - public List getCoordinates() { - return coordinates; - } - - public void setCoordinates(List coordinates) { - this.coordinates = coordinates; - } - - @Override - public String toString() { - return "V2XMarkerResult{" + - "coordinates=" + coordinates + - '}'; - } - - public class V2XMarkerEntity implements Serializable { - - /** - * createTime : 1587111513507 - * distance : 100 - * lat : 39.96911187 - * lon : 116.41777396 - * sn : ZD802B1932L00681 - * targetId : 20007 - * targetName : 故障车 - * userInfo : {"age":33,"displayName":"飞","headImgUrl":"http://img.zhidaohulian.com/fileServer/api/qa/user_info/1068057333299/67933ffb9a7e237c8cc2d8d9f66efcd0.jpg","sex":1,"sn":"ZD801B1920L00568","userId":1068057333299} - */ - - private long createTime; - private int distance; - private double lat; - private double lon; - private String sn; - private int targetId; - private String targetName; - private UserInfoBean userInfo; - - public long getCreateTime() { - return createTime; - } - - public void setCreateTime(long createTime) { - this.createTime = createTime; - } - - public int getDistance() { - return distance; - } - - public void setDistance(int distance) { - this.distance = distance; - } - - public double getLat() { - return lat; - } - - public void setLat(double lat) { - this.lat = lat; - } - - public double getLon() { - return lon; - } - - public void setLon(double lon) { - this.lon = lon; - } - - public String getSn() { - return sn; - } - - public void setSn(String sn) { - this.sn = sn; - } - - public int getTargetId() { - return targetId; - } - - public void setTargetId(int targetId) { - this.targetId = targetId; - } - - public String getTargetName() { - return targetName; - } - - public void setTargetName(String targetName) { - this.targetName = targetName; - } - - public UserInfoBean getUserInfo() { - return userInfo; - } - - public void setUserInfo(UserInfoBean userInfo) { - this.userInfo = userInfo; - } - - public class UserInfoBean implements Serializable { - /** - * age : 33 - * displayName : 飞 - * headImgUrl : http://img.zhidaohulian.com/fileServer/api/qa/user_info/1068057333299/67933ffb9a7e237c8cc2d8d9f66efcd0.jpg - * sex : 1 - * sn : ZD801B1920L00568 - * userId : 1068057333299 - */ - - private int age; - private String displayName; - private String headImgUrl; - private int sex; - private String sn; - private long userId; - - public int getAge() { - return age; - } - - public void setAge(int age) { - this.age = age; - } - - public String getDisplayName() { - return displayName; - } - - public void setDisplayName(String displayName) { - this.displayName = displayName; - } - - public String getHeadImgUrl() { - return headImgUrl; - } - - public void setHeadImgUrl(String headImgUrl) { - this.headImgUrl = headImgUrl; - } - - public int getSex() { - return sex; - } - - public void setSex(int sex) { - this.sex = sex; - } - - public String getSn() { - return sn; - } - - public void setSn(String sn) { - this.sn = sn; - } - - public long getUserId() { - return userId; - } - - public void setUserId(long userId) { - this.userId = userId; - } - - @Override - public String toString() { - return "UserInfoBean{" + - "age=" + age + - ", displayName='" + displayName + '\'' + - ", headImgUrl='" + headImgUrl + '\'' + - ", sex=" + sex + - ", sn='" + sn + '\'' + - ", userId=" + userId + - '}'; - } - } - - @Override - public String toString() { - return "V2XMarkerEntity{" + - "createTime=" + createTime + - ", distance=" + distance + - ", lat=" + lat + - ", lon=" + lon + - ", sn='" + sn + '\'' + - ", targetId=" + targetId + - ", targetName='" + targetName + '\'' + - ", userInfo=" + userInfo + - '}'; - } - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XStrategyPushRes.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XStrategyPushRes.java deleted file mode 100644 index cf691af465..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XStrategyPushRes.java +++ /dev/null @@ -1,253 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.net; - -import com.mogo.eagle.core.data.BaseData; - -import java.io.Serializable; -import java.util.List; - -/** - * author : donghongyu - * e-mail : 1358506549@qq.com - * date : 2020/5/26 2:30 PM - * desc : 疲劳驾驶提醒策略 - * version: 1.0 - */ -public class V2XStrategyPushRes extends BaseData implements Serializable { - - /** - * result : {"levelList":[{"level":"NORMAL","minMinute":0,"maxMinute":120},{"content":"已连续驾驶2小时,请注意休息","level":"SLIGHT","tts":"已连续驾驶2小时,听歌可以缓解疲劳,可以对我说打开音乐","showSeconds":15,"minMinute":120,"maxMinute":180},{"content":"已连续驾驶3小时,请注意停车休息","highSpeed":{"recommend":"REST_AREA","direction":"FRONT","angle":180,"distance":30},"level":"MODERATE","lowSpeed":{"recommend":"PARK","direction":"FRONT","angle":180,"distance":5},"tts":"已连续驾驶3小时,已为您找到附近服务区/停车场,请停车休息,可以对我说导航前往","showSeconds":20,"noReTts":"已连续驾驶3小时,为避免事故发生,请尽快进入停车区休息","minMinute":180,"maxMinute":240}],"drivingIgnoreMinutes":20,"restIgnoreMinutes":20} - */ - private ResultBean result; - - public ResultBean getResult() { - return result; - } - - public void setResult(ResultBean result) { - this.result = result; - } - - public static class ResultBean { - /** - * levelList : [{"level":"NORMAL","minMinute":0,"maxMinute":120},{"content":"已连续驾驶2小时,请注意休息","level":"SLIGHT","tts":"已连续驾驶2小时,听歌可以缓解疲劳,可以对我说打开音乐","showSeconds":15,"minMinute":120,"maxMinute":180},{"content":"已连续驾驶3小时,请注意停车休息","highSpeed":{"recommend":"REST_AREA","direction":"FRONT","angle":180,"distance":30},"level":"MODERATE","lowSpeed":{"recommend":"PARK","direction":"FRONT","angle":180,"distance":5},"tts":"已连续驾驶3小时,已为您找到附近服务区/停车场,请停车休息,可以对我说导航前往","showSeconds":20,"noReTts":"已连续驾驶3小时,为避免事故发生,请尽快进入停车区休息","minMinute":180,"maxMinute":240}] - * drivingIgnoreMinutes : 20 - * restIgnoreMinutes : 20 - */ - - private int drivingIgnoreMinutes; - private int restIgnoreMinutes; - private List levelList; - - public int getDrivingIgnoreMinutes() { - return drivingIgnoreMinutes; - } - - public void setDrivingIgnoreMinutes(int drivingIgnoreMinutes) { - this.drivingIgnoreMinutes = drivingIgnoreMinutes; - } - - public int getRestIgnoreMinutes() { - return restIgnoreMinutes; - } - - public void setRestIgnoreMinutes(int restIgnoreMinutes) { - this.restIgnoreMinutes = restIgnoreMinutes; - } - - public List getLevelList() { - return levelList; - } - - public void setLevelList(List levelList) { - this.levelList = levelList; - } - - public static class LevelListBean { - /** - * level : NORMAL - * minMinute : 0 - * maxMinute : 120 - * content : 已连续驾驶2小时,请注意休息 - * tts : 已连续驾驶2小时,听歌可以缓解疲劳,可以对我说打开音乐 - * showSeconds : 15 - * highSpeed : {"recommend":"REST_AREA","direction":"FRONT","angle":180,"distance":30} - * lowSpeed : {"recommend":"PARK","direction":"FRONT","angle":180,"distance":5} - * noReTts : 已连续驾驶3小时,为避免事故发生,请尽快进入停车区休息 - */ - - private String level; - private int minMinute; - private int maxMinute; - private String content; - private String tts; - private int showSeconds; - private HighSpeedBean highSpeed; - private LowSpeedBean lowSpeed; - private String noReTts; - - public String getLevel() { - return level; - } - - public void setLevel(String level) { - this.level = level; - } - - public int getMinMinute() { - return minMinute; - } - - public void setMinMinute(int minMinute) { - this.minMinute = minMinute; - } - - public int getMaxMinute() { - return maxMinute; - } - - public void setMaxMinute(int maxMinute) { - this.maxMinute = maxMinute; - } - - public String getContent() { - return content; - } - - public void setContent(String content) { - this.content = content; - } - - public String getTts() { - return tts; - } - - public void setTts(String tts) { - this.tts = tts; - } - - public int getShowSeconds() { - return showSeconds; - } - - public void setShowSeconds(int showSeconds) { - this.showSeconds = showSeconds; - } - - public HighSpeedBean getHighSpeed() { - return highSpeed; - } - - public void setHighSpeed(HighSpeedBean highSpeed) { - this.highSpeed = highSpeed; - } - - public LowSpeedBean getLowSpeed() { - return lowSpeed; - } - - public void setLowSpeed(LowSpeedBean lowSpeed) { - this.lowSpeed = lowSpeed; - } - - public String getNoReTts() { - return noReTts; - } - - public void setNoReTts(String noReTts) { - this.noReTts = noReTts; - } - - public static class HighSpeedBean { - /** - * recommend : REST_AREA - * direction : FRONT - * angle : 180 - * distance : 30 - */ - - private String recommend; - private String direction; - private int angle; - private int distance; - - public String getRecommend() { - return recommend; - } - - public void setRecommend(String recommend) { - this.recommend = recommend; - } - - public String getDirection() { - return direction; - } - - public void setDirection(String direction) { - this.direction = direction; - } - - public int getAngle() { - return angle; - } - - public void setAngle(int angle) { - this.angle = angle; - } - - public int getDistance() { - return distance; - } - - public void setDistance(int distance) { - this.distance = distance; - } - } - - public static class LowSpeedBean { - /** - * recommend : PARK - * direction : FRONT - * angle : 180 - * distance : 5 - */ - - private String recommend; - private String direction; - private int angle; - private int distance; - - public String getRecommend() { - return recommend; - } - - public void setRecommend(String recommend) { - this.recommend = recommend; - } - - public String getDirection() { - return direction; - } - - public void setDirection(String direction) { - this.direction = direction; - } - - public int getAngle() { - return angle; - } - - public void setAngle(int angle) { - this.angle = angle; - } - - public int getDistance() { - return distance; - } - - public void setDistance(int distance) { - this.distance = distance; - } - } - } - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XUserInfoRes.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XUserInfoRes.java deleted file mode 100644 index a19b38a577..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XUserInfoRes.java +++ /dev/null @@ -1,344 +0,0 @@ - -package com.mogo.eagle.core.function.v2x.events.entity.net; - -import com.google.gson.annotations.Expose; -import com.mogo.eagle.core.data.BaseData; - -import java.io.Serializable; - -public class V2XUserInfoRes extends BaseData implements Serializable { - - @Expose - private Result result; - - public String getMsg() { - return msg; - } - - public void setMsg(String msg) { - this.msg = msg; - } - - public Result getResult() { - return result; - } - - public void setResult(Result result) { - this.result = result; - } - - public class Result { - - @Expose - private Info info; - - public Info getInfo() { - return info; - } - - public void setInfo(Info info) { - this.info = info; - } - - - public class Info { - - @Expose - private Long activeStatus; - @Expose - private Long bindStatus; - @Expose - private String bindType; - @Expose - private String bindUserId; - @Expose - private String erpSnGroup; - @Expose - private String erpSnType; - @Expose - private String iccid; - @Expose - private String ifCarcorder; - @Expose - private String ifImdemo; - @Expose - private String ifSocketservice; - @Expose - private String lastActiveCity; - @Expose - private Long lastBrandId; - @Expose - private String lastBrandName; - @Expose - private String lastCarNum; - @Expose - private String lastCarNumEn; - @Expose - private String lastFortaVersion; - @Expose - private Long lastModelId; - @Expose - private String lastModelName; - @Expose - private String sn; - @Expose - private String snGroupDetail; - @Expose - private String songTypeTop2; - @Expose - private String userNickName; - @Expose - private String cardIdAge; - @Expose - private String headImgUrl; - @Expose - private String cardIdSex; - - public String getHeadImgUrl() { - return headImgUrl; - } - - public void setHeadImgUrl(String headImgUrl) { - this.headImgUrl = headImgUrl; - } - - public String getCardIdSex() { - return cardIdSex; - } - - public void setCardIdSex(String cardIdSex) { - this.cardIdSex = cardIdSex; - } - - public String getCardIdAge() { - return cardIdAge; - } - - public void setCardIdAge(String cardIdAge) { - this.cardIdAge = cardIdAge; - } - - public Long getActiveStatus() { - return activeStatus; - } - - public void setActiveStatus(Long activeStatus) { - this.activeStatus = activeStatus; - } - - public Long getBindStatus() { - return bindStatus; - } - - public void setBindStatus(Long bindStatus) { - this.bindStatus = bindStatus; - } - - public String getBindType() { - return bindType; - } - - public void setBindType(String bindType) { - this.bindType = bindType; - } - - public String getBindUserId() { - return bindUserId; - } - - public void setBindUserId(String bindUserId) { - this.bindUserId = bindUserId; - } - - @Override - public String toString() { - return "Info{" + - "activeStatus=" + activeStatus + - ", bindStatus=" + bindStatus + - ", bindType='" + bindType + '\'' + - ", bindUserId='" + bindUserId + '\'' + - ", erpSnGroup='" + erpSnGroup + '\'' + - ", erpSnType='" + erpSnType + '\'' + - ", iccid='" + iccid + '\'' + - ", ifCarcorder='" + ifCarcorder + '\'' + - ", ifImdemo='" + ifImdemo + '\'' + - ", ifSocketservice='" + ifSocketservice + '\'' + - ", lastActiveCity='" + lastActiveCity + '\'' + - ", lastBrandId=" + lastBrandId + - ", lastBrandName='" + lastBrandName + '\'' + - ", lastCarNum='" + lastCarNum + '\'' + - ", lastCarNumEn='" + lastCarNumEn + '\'' + - ", lastFortaVersion='" + lastFortaVersion + '\'' + - ", lastModelId=" + lastModelId + - ", lastModelName='" + lastModelName + '\'' + - ", sn='" + sn + '\'' + - ", snGroupDetail='" + snGroupDetail + '\'' + - ", songTypeTop2='" + songTypeTop2 + '\'' + - ", userNickName='" + userNickName + '\'' + - ", cardIdAge='" + cardIdAge + '\'' + - ", headImgUrl='" + headImgUrl + '\'' + - ", cardIdSex='" + cardIdSex + '\'' + - '}'; - } - - public String getErpSnGroup() { - return erpSnGroup; - } - - public void setErpSnGroup(String erpSnGroup) { - this.erpSnGroup = erpSnGroup; - } - - public String getErpSnType() { - return erpSnType; - } - - public void setErpSnType(String erpSnType) { - this.erpSnType = erpSnType; - } - - public String getIccid() { - return iccid; - } - - public void setIccid(String iccid) { - this.iccid = iccid; - } - - public String getIfCarcorder() { - return ifCarcorder; - } - - public void setIfCarcorder(String ifCarcorder) { - this.ifCarcorder = ifCarcorder; - } - - public String getIfImdemo() { - return ifImdemo; - } - - public void setIfImdemo(String ifImdemo) { - this.ifImdemo = ifImdemo; - } - - public String getIfSocketservice() { - return ifSocketservice; - } - - public void setIfSocketservice(String ifSocketservice) { - this.ifSocketservice = ifSocketservice; - } - - public String getLastActiveCity() { - return lastActiveCity; - } - - public void setLastActiveCity(String lastActiveCity) { - this.lastActiveCity = lastActiveCity; - } - - public Long getLastBrandId() { - return lastBrandId; - } - - public void setLastBrandId(Long lastBrandId) { - this.lastBrandId = lastBrandId; - } - - public String getLastBrandName() { - return lastBrandName; - } - - public void setLastBrandName(String lastBrandName) { - this.lastBrandName = lastBrandName; - } - - public String getLastCarNum() { - return lastCarNum; - } - - public void setLastCarNum(String lastCarNum) { - this.lastCarNum = lastCarNum; - } - - public String getLastCarNumEn() { - return lastCarNumEn; - } - - public void setLastCarNumEn(String lastCarNumEn) { - this.lastCarNumEn = lastCarNumEn; - } - - public String getLastFortaVersion() { - return lastFortaVersion; - } - - public void setLastFortaVersion(String lastFortaVersion) { - this.lastFortaVersion = lastFortaVersion; - } - - public Long getLastModelId() { - return lastModelId; - } - - public void setLastModelId(Long lastModelId) { - this.lastModelId = lastModelId; - } - - public String getLastModelName() { - return lastModelName; - } - - public void setLastModelName(String lastModelName) { - this.lastModelName = lastModelName; - } - - public String getSn() { - return sn; - } - - public void setSn(String sn) { - this.sn = sn; - } - - public String getSnGroupDetail() { - return snGroupDetail; - } - - public void setSnGroupDetail(String snGroupDetail) { - this.snGroupDetail = snGroupDetail; - } - - public String getSongTypeTop2() { - return songTypeTop2; - } - - public void setSongTypeTop2(String songTypeTop2) { - this.songTypeTop2 = songTypeTop2; - } - - public String getUserNickName() { - return userNickName; - } - - public void setUserNickName(String userNickName) { - this.userNickName = userNickName; - } - - } - - @Override - public String toString() { - return "Result{" + - "info=" + info + - '}'; - } - } - - @Override - public String toString() { - return "UserInfoEntity{" + - "result=" + result + - '}'; - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/BackRefreshInfo.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/BackRefreshInfo.java deleted file mode 100644 index 0157104db3..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/BackRefreshInfo.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.panel; - -import java.io.Serializable; - -/** - * 返回刷新 - */ -public class BackRefreshInfo implements Serializable { - -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/Center.kt b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/Center.kt deleted file mode 100644 index 08afa15f04..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/Center.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.panel - -/** - * @description - * - * @author lixiaopeng - * @since 2019-10-24 - */ -data class Center ( - val lat: Double, - val lon: Double -) diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/SurroundingConstruction.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/SurroundingConstruction.java deleted file mode 100644 index 00af59ade0..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/SurroundingConstruction.java +++ /dev/null @@ -1,45 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.panel; - -import com.mogo.eagle.core.data.map.entity.MarkerExploreWay; -import com.mogo.eagle.core.data.enums.EventTypeEnum; - -import java.io.Serializable; -import java.util.ArrayList; -import java.util.List; - -/** - * @author lixiaopeng - * @description 构造数据 - * @since 2020/8/7 - */ -public class SurroundingConstruction implements Serializable { - private String poiType; - private List construtList; - - public SurroundingConstruction(String poiType) { - this.poiType = poiType; - construtList = new ArrayList<>(); - } - - public String getPoiType() { - return poiType; - } - - public void setPoiType(String poiType) { - this.poiType = poiType; - } - - public List getConstrutList() { - return construtList; - } - - public void addMarkerExploreWay(MarkerExploreWay item) { - construtList.add(item); - } - - public String getTypeNameTTS(String type) { - String typeName = "请查看周边的"; - typeName += EventTypeEnum.getTypeNameTTS(type); - return typeName + "信息"; - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/SurroundingRequest.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/SurroundingRequest.java deleted file mode 100644 index 666d9169a1..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/SurroundingRequest.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.panel; - - -/** - * @author lixiaopeng - * @description - * @since 2020/7/29 - */ -public class SurroundingRequest { - private Center center; - private String[] poiTypes; - private int radius; - private int limit; - - public SurroundingRequest(Center center, String[] poiTypes, int radius, int limit) { - this.center = center; - this.poiTypes = poiTypes; - this.radius = radius; - this.limit = limit; - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/SurroundingResponse.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/SurroundingResponse.java deleted file mode 100644 index d2df876e59..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/SurroundingResponse.java +++ /dev/null @@ -1,39 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.panel; - -import com.mogo.eagle.core.data.BaseData; -import com.mogo.eagle.core.data.map.entity.MarkerExploreWay; - -import java.util.List; - -/** - * @author lixiaopeng - * @description - * @since 2020/7/29 - */ -public class SurroundingResponse extends BaseData { - /** - * msg : null - * result : {"exploreWay":[{"infoId":"740635251747942400","type":"CARD_TYPE_ROAD_CONDITION","location":{"lon":116.370207,"lat":39.968394,"angle":180,"address":"测试直播"},"canLive":false,"fileType":1,"addr":"测试直播","generateTime":1596622804859,"cityName":"","distance":717,"userInfo":{"sn":"E841CC2018PZD20408","userId":0,"userName":"零下的雨008","userHead":"http://yycp-static-1255510688.cos.ap-beijing.myqcloud.com/sso-server-image/1592473692394.jpeg"},"items":[{"url":"http://petchfile-1255510688.cos.ap-beijing.myqcloud.com/sso-server-image/1594952448035.mp4?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDCWfcNwD5PXVWLxwejccR3Tiz5zhIkx0T%26q-sign-time%3D1596701407%3B1596708607%26q-key-time%3D1596701407%3B1596708607%26q-header-list%3D%26q-url-param-list%3D%26q-signature%3D465089a3c078ed60c395cb65d41f61b28e9a3397","thumbnail":"http://petchfile-1255510688.cos.ap-beijing.myqcloud.com/sso-server-image/1594952453342.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDCWfcNwD5PXVWLxwejccR3Tiz5zhIkx0T%26q-sign-time%3D1596701407%3B1596708607%26q-key-time%3D1596701407%3B1596708607%26q-header-list%3D%26q-url-param-list%3D%26q-signature%3D6f36b4c945197737f8576e42a5c599ed3d150a4a"}],"uploadType":"2","poiType":"10011"}]} - */ - private ResultBean result; - - public ResultBean getResult() { - return result; - } - - public void setResult(ResultBean result) { - this.result = result; - } - - public static class ResultBean { - private List exploreWay; - - public List getExploreWay() { - return exploreWay; - } - - public void setExploreWay(List exploreWay) { - this.exploreWay = exploreWay; - } - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventDescription.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventDescription.java deleted file mode 100644 index 6ec01fd6ca..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventDescription.java +++ /dev/null @@ -1,158 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.panel; - -import com.mogo.eagle.core.data.BaseData; - -import java.io.Serializable; - -public class V2XShareEventDescription extends BaseData implements Serializable { - - /** - * detailMsg : - * result : {"enthusiasmIndex":{"id":68,"sn":"ZD802B1932L00622","score":10,"shareNum":1024,"likeNum":0,"notLikeNum":0,"enthusiasmIndex":1,"createTime":"2020-07-28T06:21:11.523+0000","updateTime":"2020-07-28T06:21:11.523+0000"}} - */ - - private String detailMsg; - private ResultBean result; - - public String getDetailMsg() { - return detailMsg; - } - - public void setDetailMsg(String detailMsg) { - this.detailMsg = detailMsg; - } - - public ResultBean getResult() { - return result; - } - - public void setResult(ResultBean result) { - this.result = result; - } - - public static class ResultBean { - /** - * enthusiasmIndex : {"id":68,"sn":"ZD802B1932L00622","score":10,"shareNum":1024,"likeNum":0,"notLikeNum":0,"enthusiasmIndex":1,"createTime":"2020-07-28T06:21:11.523+0000","updateTime":"2020-07-28T06:21:11.523+0000"} - */ - - private EnthusiasmIndexBean enthusiasmIndex; - - public EnthusiasmIndexBean getEnthusiasmIndex() { - return enthusiasmIndex; - } - - public void setEnthusiasmIndex(EnthusiasmIndexBean enthusiasmIndex) { - this.enthusiasmIndex = enthusiasmIndex; - } - - public static class EnthusiasmIndexBean{ - @Override - public String toString() { - return "EnthusiasmIndexBean{" + - ", id=" + id + - ", sn='" + sn + '\'' + - ", score=" + score + - ", shareNum=" + shareNum + - ", likeNum=" + likeNum + - ", notLikeNum=" + notLikeNum + - ", enthusiasmIndex=" + enthusiasmIndex + - ", createTime='" + createTime + '\'' + - ", updateTime='" + updateTime + '\'' + - '}'; - } - - /** - * id : 68 - * sn : ZD802B1932L00622 - * score : 10 - * shareNum : 1024 - * likeNum : 0 - * notLikeNum : 0 - * enthusiasmIndex : 1.0 - * createTime : 2020-07-28T06:21:11.523+0000 - * updateTime : 2020-07-28T06:21:11.523+0000 - */ - private int id; - private String sn; - private int score; - private int shareNum = 0; - private int likeNum = 0; - private int notLikeNum = 0; - private double enthusiasmIndex = 10; - private String createTime; - private String updateTime; - - public int getId() { - return id; - } - - public void setId(int id) { - this.id = id; - } - - public String getSn() { - return sn; - } - - public void setSn(String sn) { - this.sn = sn; - } - - public int getScore() { - return score; - } - - public void setScore(int score) { - this.score = score; - } - - public int getShareNum() { - return shareNum; - } - - public void setShareNum(int shareNum) { - this.shareNum = shareNum; - } - - public int getLikeNum() { - return likeNum; - } - - public void setLikeNum(int likeNum) { - this.likeNum = likeNum; - } - - public int getNotLikeNum() { - return notLikeNum; - } - - public void setNotLikeNum(int notLikeNum) { - this.notLikeNum = notLikeNum; - } - - public double getEnthusiasmIndex() { - return enthusiasmIndex; - } - - public void setEnthusiasmIndex(double enthusiasmIndex) { - this.enthusiasmIndex = enthusiasmIndex; - } - - public String getCreateTime() { - return createTime; - } - - public void setCreateTime(String createTime) { - this.createTime = createTime; - } - - public String getUpdateTime() { - return updateTime; - } - - public void setUpdateTime(String updateTime) { - this.updateTime = updateTime; - } - } - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventItem.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventItem.java deleted file mode 100644 index 653bf4e298..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventItem.java +++ /dev/null @@ -1,439 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.panel; - -import com.mogo.eagle.core.data.BaseData; - -import java.io.Serializable; -import java.util.List; - -public class V2XShareEventItem extends BaseData implements Serializable { - - private String detailMsg; - private ResultBean result; - - public String getDetailMsg() { - return detailMsg; - } - - public void setDetailMsg(String detailMsg) { - this.detailMsg = detailMsg; - } - - public ResultBean getResult() { - return result; - } - - public void setResult(ResultBean result) { - this.result = result; - } - - public static class ResultBean { - private PageBean page; - - public PageBean getPage() { - return page; - } - - public void setPage(PageBean page) { - this.page = page; - } - - public static class PageBean { - - private int total; - private int pageSize; - private int pageNum; - private List content; - - public int getTotal() { - return total; - } - - public void setTotal(int total) { - this.total = total; - } - - public int getPageSize() { - return pageSize; - } - - public void setPageSize(int pageSize) { - this.pageSize = pageSize; - } - - public int getPageNum() { - return pageNum; - } - - public void setPageNum(int pageNum) { - this.pageNum = pageNum; - } - - public List getContent() { - return content; - } - - public void setContent(List content) { - this.content = content; - } - - public static class ContentBean { - @Override - public String toString() { - return "ContentBean{" + - "viewType=" + viewType + - ", uploadTimestamp=" + uploadTimestamp + - ", timeout=" + timeout + - ", uploadAddress='" + uploadAddress + '\'' + - ", distance=" + distance + - ", dbId='" + dbId + '\'' + - ", poiType='" + poiType + '\'' + - ", sn='" + sn + '\'' + - ", userId=" + userId + - ", userName='" + userName + '\'' + - ", userHead='" + userHead + '\'' + - ", likeNum=" + likeNum + - ", notlikeNum=" + notlikeNum + - ", uploadType=" + uploadType + - ", uploadUser='" + uploadUser + '\'' + - ", imgUrl=" + imgUrl + - ", content=" + content + - ", gasStationId=" + gasStationId + - ", gasStationName=" + gasStationName + - ", gasImg=" + gasImg + - ", gasPrices=" + gasPrices + - ", endDate='" + endDate + '\'' + - ", fabulous=" + fabulous + - ", direction=" + direction + - ", virtualLikeNum=" + virtualLikeNum + - ", status=" + status + - ", sourceType='" + sourceType + '\'' + - ", hitId='" + hitId + '\'' + - ", userType=" + userType + - ", coordinates=" + coordinates + - ", data=" + data + - '}'; - } - - private int viewType = V2XShareEventItemEnum.ITEM_TYPE_SHARE_LIST; - private Long uploadTimestamp; - private long timeout; - private String uploadAddress; - private Integer distance; - private String dbId; - private String poiType; - private String sn; - private Long userId; - private String userName; - private String userHead; - private Integer likeNum; - private int notlikeNum; - private Integer uploadType; - private String uploadUser; - private String imgUrl; - private String content; - private String gasStationId; - private String gasStationName; - private String gasImg; - private String gasPrices; - private String endDate; - private boolean fabulous; - private Integer direction; - private Integer virtualLikeNum; - private Integer status; - private String sourceType; - private String hitId; - private Integer userType; - private List coordinates; - private List data; - - public Long getUploadTimestamp() { - return uploadTimestamp; - } - - public void setUploadTimestamp(Long uploadTimestamp) { - this.uploadTimestamp = uploadTimestamp; - } - - public long getTimeout() { - return timeout; - } - - public void setTimeout(Long timeout) { - this.timeout = timeout; - } - - public String getUploadAddress() { - return uploadAddress; - } - - public void setUploadAddress(String uploadAddress) { - this.uploadAddress = uploadAddress; - } - - public Integer getDistance() { - return distance; - } - - public void setDistance(Integer distance) { - this.distance = distance; - } - - public String getDbId() { - return dbId; - } - - public void setDbId(String dbId) { - this.dbId = dbId; - } - - public String getPoiType() { - return poiType; - } - - public void setPoiType(String poiType) { - this.poiType = poiType; - } - - public String getSn() { - return sn; - } - - public void setSn(String sn) { - this.sn = sn; - } - - public Long getUserId() { - return userId; - } - - public void setUserId(Long userId) { - this.userId = userId; - } - - public String getUserName() { - return userName; - } - - public void setUserName(String userName) { - this.userName = userName; - } - - public String getUserHead() { - return userHead; - } - - public void setUserHead(String userHead) { - this.userHead = userHead; - } - - public Integer getLikeNum() { - return likeNum; - } - - public void setLikeNum(Integer likeNum) { - this.likeNum = likeNum; - } - - public int getNotlikeNum() { - return notlikeNum; - } - - public void setNotlikeNum(int notlikeNum) { - this.notlikeNum = notlikeNum; - } - - public Integer getUploadType() { - return uploadType; - } - - public void setUploadType(Integer uploadType) { - this.uploadType = uploadType; - } - - public String getUploadUser() { - return uploadUser; - } - - public void setUploadUser(String uploadUser) { - this.uploadUser = uploadUser; - } - - public String getImgUrl() { - return imgUrl; - } - - public void setImgUrl(String imgUrl) { - this.imgUrl = imgUrl; - } - - public String getContent() { - return content; - } - - public void setContent(String content) { - this.content = content; - } - - public String getGasStationId() { - return gasStationId; - } - - public void setGasStationId(String gasStationId) { - this.gasStationId = gasStationId; - } - - public String getGasStationName() { - return gasStationName; - } - - public void setGasStationName(String gasStationName) { - this.gasStationName = gasStationName; - } - - public String getGasImg() { - return gasImg; - } - - public void setGasImg(String gasImg) { - this.gasImg = gasImg; - } - - public String getGasPrices() { - return gasPrices; - } - - public void setGasPrices(String gasPrices) { - this.gasPrices = gasPrices; - } - - public String getEndDate() { - return endDate; - } - - public void setEndDate(String endDate) { - this.endDate = endDate; - } - - public boolean isFabulous() { - return fabulous; - } - - public void setFabulous(boolean fabulous) { - this.fabulous = fabulous; - } - - public Integer getDirection() { - return direction; - } - - public void setDirection(Integer direction) { - this.direction = direction; - } - - public Integer getVirtualLikeNum() { - return virtualLikeNum; - } - - public void setVirtualLikeNum(Integer virtualLikeNum) { - this.virtualLikeNum = virtualLikeNum; - } - - public Integer getStatus() { - return status; - } - - public void setStatus(Integer status) { - this.status = status; - } - - public String getSourceType() { - return sourceType; - } - - public void setSourceType(String sourceType) { - this.sourceType = sourceType; - } - - public String getHitId() { - return hitId; - } - - public void setHitId(String hitId) { - this.hitId = hitId; - } - - public Integer getUserType() { - return userType; - } - - public void setUserType(Integer userType) { - this.userType = userType; - } - - public List getCoordinates() { - return coordinates; - } - - public void setCoordinates(List coordinates) { - this.coordinates = coordinates; - } - - public List getData() { - return data; - } - - public void setData(List data) { - this.data = data; - } - - public static class DataBean { - /** - * url : http://petchfile-1255510688.cos.ap-beijing.myqcloud.com/sso-server-image/1592546939076.mp4%3Fsign%3Dq-sign-algorithm%253Dsha1%2526q-ak%253DAKIDCWfcNwD5PXVWLxwejccR3Tiz5zhIkx0T%2526q-sign-time%253D1592546939%253B1592550539%2526q-key-time%253D1592546939%253B1592550539%2526q-header-list%253D%2526q-url-param-list%253D%2526q-signature%253D74a4058ad7579ea210dafcf78d7a19460cffb899?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDCWfcNwD5PXVWLxwejccR3Tiz5zhIkx0T%26q-sign-time%3D1595574735%3B1595578335%26q-key-time%3D1595574735%3B1595578335%26q-header-list%3D%26q-url-param-list%3D%26q-signature%3D679bff1838c7d497d38f48ef999b50e80c5856c4 - * thumbnail : http://petchfile-1255510688.cos.ap-beijing.myqcloud.com/sso-server-image/1592546956790.png%3Fsign%3Dq-sign-algorithm%253Dsha1%2526q-ak%253DAKIDCWfcNwD5PXVWLxwejccR3Tiz5zhIkx0T%2526q-sign-time%253D1592546956%253B1592550556%2526q-key-time%253D1592546956%253B1592550556%2526q-header-list%253D%2526q-url-param-list%253D%2526q-signature%253Dcc9a35349fc55e433f934af88df576ae792b3987?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDCWfcNwD5PXVWLxwejccR3Tiz5zhIkx0T%26q-sign-time%3D1595574735%3B1595578335%26q-key-time%3D1595574735%3B1595578335%26q-header-list%3D%26q-url-param-list%3D%26q-signature%3D99b5a92a4f97909d8c217dbeec2ec6e9ec1052f4 - * content : null - * illegalCount : null - */ - - private String url; - private String thumbnail; - private String content; - private Object illegalCount; - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - } - - public String getThumbnail() { - return thumbnail; - } - - public void setThumbnail(String thumbnail) { - this.thumbnail = thumbnail; - } - - public String getContent() { - return content; - } - - public void setContent(String content) { - this.content = content; - } - - public Object getIllegalCount() { - return illegalCount; - } - - public void setIllegalCount(Object illegalCount) { - this.illegalCount = illegalCount; - } - } - } - } - } -} - - diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventItemEnum.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventItemEnum.java deleted file mode 100644 index 9565d9d06e..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventItemEnum.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.panel; - -public interface V2XShareEventItemEnum { - - int ITEM_TYPE_NUM_DES = 0; - int ITEM_TYPE_SHARE_LIST = 1; - int ITEM_TYPE_SHARE_EMPTY = 2; - int ITEM_TYPE_LOAD_MORE_STATUS = 3; - int ITEM_TYPE_NO_MORE = 4; - int ITEM_TYPE_OTHER = 5; - -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventLoadMoreItem.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventLoadMoreItem.java deleted file mode 100644 index 023d6ddde1..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/panel/V2XShareEventLoadMoreItem.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.entity.panel; - -import com.mogo.eagle.core.data.BaseData; - -import java.io.Serializable; - -/* - * 没有任何分享,去分享/加载更多/没有更多了 - * */ -public class V2XShareEventLoadMoreItem extends BaseData implements Serializable { - private String statusText; - private int viewType; - private boolean clickable = true; - - public boolean isClickable() { - return clickable; - } - - public void setClickable(boolean clickable) { - this.clickable = clickable; - } - - public int getViewType() { - return viewType; - } - - public void setViewType(int viewType) { - this.viewType = viewType; - } - - public void setStatusText(String statusText) { - this.statusText = statusText; - } - - public String getStatusText() { - return statusText; - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoPersonWarnPolylineManager.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoPersonWarnPolylineManager.java index dca12d37c2..d15a9c589d 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoPersonWarnPolylineManager.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoPersonWarnPolylineManager.java @@ -3,7 +3,7 @@ package com.mogo.eagle.core.function.v2x.events.manager; import android.content.Context; import com.alibaba.android.arouter.facade.template.IProvider; -import com.mogo.eagle.core.function.v2x.events.entity.model.DrawLineInfo; +import com.mogo.eagle.core.data.v2x.DrawLineInfo; import com.mogo.map.overlay.IMogoPolyline; /** diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoStopPolylineManager.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoStopPolylineManager.java index c81786bbcd..e0cca0ed76 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoStopPolylineManager.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoStopPolylineManager.java @@ -3,7 +3,7 @@ package com.mogo.eagle.core.function.v2x.events.manager; import android.content.Context; import com.alibaba.android.arouter.facade.template.IProvider; -import com.mogo.eagle.core.function.v2x.events.entity.model.DrawLineInfo; +import com.mogo.eagle.core.data.v2x.DrawLineInfo; import com.mogo.map.overlay.IMogoPolyline; /** diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoWarnPolylineManager.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoWarnPolylineManager.java index b13fbfdcb3..a79527e857 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoWarnPolylineManager.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/IMoGoWarnPolylineManager.java @@ -3,7 +3,7 @@ package com.mogo.eagle.core.function.v2x.events.manager; import android.content.Context; import com.alibaba.android.arouter.facade.template.IProvider; -import com.mogo.eagle.core.function.v2x.events.entity.model.DrawLineInfo; +import com.mogo.eagle.core.data.v2x.DrawLineInfo; import com.mogo.map.overlay.IMogoPolyline; /** diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoPersonWarnPolylineManager.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoPersonWarnPolylineManager.java index c8887b74a6..a5b5aa7c52 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoPersonWarnPolylineManager.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoPersonWarnPolylineManager.java @@ -11,7 +11,7 @@ import com.mogo.eagle.core.function.call.map.CallerMapUIServiceManager; import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.function.v2x.events.consts.MoGoV2XServicePaths; import com.mogo.eagle.core.function.v2x.events.consts.V2XConst; -import com.mogo.eagle.core.function.v2x.events.entity.model.DrawLineInfo; +import com.mogo.eagle.core.data.v2x.DrawLineInfo; import com.mogo.eagle.core.function.v2x.events.manager.IMoGoPersonWarnPolylineManager; import com.mogo.map.overlay.IMogoOverlayManager; import com.mogo.map.overlay.IMogoPolyline; diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoStopPolylineManager.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoStopPolylineManager.java index 7a50d4546c..cf2525ce76 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoStopPolylineManager.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoStopPolylineManager.java @@ -11,7 +11,7 @@ import com.mogo.eagle.core.function.call.map.CallerMapUIServiceManager; import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.function.v2x.events.consts.MoGoV2XServicePaths; import com.mogo.eagle.core.function.v2x.events.consts.V2XConst; -import com.mogo.eagle.core.function.v2x.events.entity.model.DrawLineInfo; +import com.mogo.eagle.core.data.v2x.DrawLineInfo; import com.mogo.eagle.core.function.v2x.events.manager.IMoGoStopPolylineManager; import com.mogo.map.overlay.IMogoOverlayManager; import com.mogo.map.overlay.IMogoPolyline; diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoWarnPolylineManager.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoWarnPolylineManager.java index 285abcb128..dc27540743 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoWarnPolylineManager.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/manager/impl/MoGoWarnPolylineManager.java @@ -10,7 +10,7 @@ import com.mogo.eagle.core.data.map.MogoLatLng; import com.mogo.eagle.core.function.call.map.CallerMapUIServiceManager; import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.function.v2x.events.consts.MoGoV2XServicePaths; -import com.mogo.eagle.core.function.v2x.events.entity.model.DrawLineInfo; +import com.mogo.eagle.core.data.v2x.DrawLineInfo; import com.mogo.eagle.core.function.v2x.events.manager.IMoGoWarnPolylineManager; import com.mogo.map.overlay.IMogoOverlayManager; import com.mogo.map.overlay.IMogoPolyline; diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XApiService.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XApiService.java deleted file mode 100644 index b39b167534..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XApiService.java +++ /dev/null @@ -1,117 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.network; - -import com.mogo.eagle.core.data.BaseData; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XLiveCarRes; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XSeekHelpRes; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XStrategyPushRes; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XUserInfoRes; -import com.mogo.eagle.core.function.v2x.events.entity.panel.SurroundingResponse; -import com.mogo.eagle.core.function.v2x.events.entity.panel.V2XShareEventDescription; -import com.mogo.eagle.core.function.v2x.events.entity.panel.V2XShareEventItem; - -import java.util.Map; -import io.reactivex.Observable; -import okhttp3.RequestBody; -import retrofit2.http.Body; -import retrofit2.http.FieldMap; -import retrofit2.http.FormUrlEncoded; -import retrofit2.http.GET; -import retrofit2.http.Headers; -import retrofit2.http.POST; -import retrofit2.http.Query; - -/** - * @author congtaowang - * @since 2020-01-03 - *

- * 接口描述 - */ -public interface V2XApiService { - - /** - * 直播点赞 - */ - @FormUrlEncoded - @POST("/yycp-geo-fence-carService/restrictedRules/car/liveBroadcastPraise") - Observable giveLikeLiveVideo(@FieldMap Map parameters); - - /** - * 同过SN获取用户信息 - */ - @Headers({"Content-Type:application/json", "Accept:application/json"}) - @POST("/yycp-realtimeLocations/realTimeLocationServer/queryUserInfoBySn") - Observable queryUserInfoBySn(@Body RequestBody jsonStr); - - /** - * 车辆故障求助查询 - * - * @param param - * @return - */ - @FormUrlEncoded - @POST("/yycp-realtimeLocations/vehicleTypeManage/car/updateVehicleType/v1") - Observable sendHelpSignal(@FieldMap Map param); - - /** - * 根据经纬度查询附近可直播车机直播信息 - */ - @FormUrlEncoded - @POST("/yycp-realtimeLocations/realTimeLocationServer/car/queryNearbyVehicleLiveByLocation/v1") - Observable queryNearbyVehicleLiveByLocation(@FieldMap Map parameters); - - - /** - * 点赞接口 - */ - @FormUrlEncoded - @POST("/deva/poiInfoFabulous/car/poi/no/addPoiInfoFabulous/v1") - Observable addPoiInfoFabulous(@FieldMap Map params); - - /** - * 响应求助 - */ - @FormUrlEncoded - @POST("/deva/poiInfoFabulous/car/poi/no/RespondingToHelp/v1") - Observable respondingToHelp(@FieldMap Map params); - - /** - * 道路事件UGC - * 需求地址 - * http://wiki.zhidaohulian.com/pages/viewpage.action?pageId=42321443 - */ - @FormUrlEncoded - @POST("/deva/car/poi/no/manualMarkingTrafficJam") - Observable manualMarkingTrafficJam(@FieldMap Map params); - - /** - * 根据名称获取策略详情 - */ - @GET("/yycp-strategyPush/push/strategy/item?name=TIRE_DRIVING") - Observable getStrategyPush(); - - /** - * 车辆故障求助查询 - * - * @param param - * @return - */ - @FormUrlEncoded - @POST("/yycp-realtimeLocations/vehicleTypeManage/car/queryVehicleType/v1") - Observable queryHelpSignal(@FieldMap Map param); - - /** - * 我的分享-热心指数等 - */ - @FormUrlEncoded - @POST("/deva/poiInfoFabulous/car/poi/no/queryEnthusiasmIndex/v1") - Observable getEnthusiasmIndex(@FieldMap Map parames); - - /** - * 我的分享-列表 - */ - @FormUrlEncoded - @POST("/deva/car/pathAndPoi/no/queryInfo") - Observable getShareEventList(@FieldMap Map parames); - - -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XApiServiceFactory.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XApiServiceFactory.java deleted file mode 100644 index 354cea4a28..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XApiServiceFactory.java +++ /dev/null @@ -1,66 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.network; - -import com.mogo.eagle.core.network.MoGoRetrofitFactory; -import com.mogo.commons.constants.HostConst; - -/** - * 应对不同接口对应不同服务域名的工厂累 - */ -public class V2XApiServiceFactory { - - private static V2XApiService mDevaApiService; - private static V2XApiService mGeoFenceCarServiceApiService; - private static V2XApiService mRealtimeLocationApiService; - private static V2XApiService mDataServiceApiService; - - /** - * 获取指定域名下的 API 服务 - */ - public static V2XApiService getApiService(String netHost) { - return MoGoRetrofitFactory.getInstance(netHost).create(V2XApiService.class); - } - - public static V2XApiService getDevaApiService() { - if (mDevaApiService == null) { - synchronized (V2XApiServiceFactory.class) { - if (mDevaApiService == null) { - mDevaApiService = getApiService(HostConst.DEVA_HOST); - } - } - } - return mDevaApiService; - } - - public static V2XApiService getGeoFenceCarServiceApiService() { - if (mGeoFenceCarServiceApiService == null) { - synchronized (V2XApiServiceFactory.class) { - if (mGeoFenceCarServiceApiService == null) { - mGeoFenceCarServiceApiService = getApiService(HostConst.GEOFENCE_HOST); - } - } - } - return mGeoFenceCarServiceApiService; - } - - public static V2XApiService getRealtimeLocationApiService() { - if (mRealtimeLocationApiService == null) { - synchronized (V2XApiServiceFactory.class) { - if (mRealtimeLocationApiService == null) { - mRealtimeLocationApiService = getApiService(HostConst.REALTIME_LOCATION_HOST); - } - } - } - return mRealtimeLocationApiService; - } - - public static V2XApiService getStrategyPushApiService() { - if (mDataServiceApiService == null) { - synchronized (V2XApiServiceFactory.class) { - if (mDataServiceApiService == null) { - mDataServiceApiService = getApiService(HostConst.STRATEGY_PUSH_HOST); - } - } - } - return mDataServiceApiService; - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XRefreshCallback.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XRefreshCallback.java deleted file mode 100644 index da774305d7..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XRefreshCallback.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.network; - -/** - * @author congtaowang - * @since 2020-01-03 - *

- * 刷新回调 - */ -public interface V2XRefreshCallback { - - void onSuccess(T result); - - void onFail(String msg); -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XRefreshModel.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XRefreshModel.java deleted file mode 100644 index 5f0d5a63e8..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XRefreshModel.java +++ /dev/null @@ -1,367 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.network; - -import android.content.Context; -import android.text.TextUtils; -import com.mogo.cloud.passport.MoGoAiCloudClientConfig; -import com.mogo.commons.network.ParamsProvider; -import com.mogo.eagle.core.data.BaseData; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XLiveCarRes; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XSeekHelpRes; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XStrategyPushRes; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XUserInfoRes; -import com.mogo.eagle.core.network.RequestOptions; -import com.mogo.eagle.core.network.SubscribeImpl; -import java.util.Map; - -import io.reactivex.android.schedulers.AndroidSchedulers; -import io.reactivex.schedulers.Schedulers; -import okhttp3.RequestBody; - - -/** - * 数据接口API - * - * @author donghongyu - * @since 2020-01-03 - */ -public class V2XRefreshModel { - - private Context mContext; - private static V2XRefreshModel mV2XRefreshModel; - - private V2XRefreshModel() { - } - - public synchronized static V2XRefreshModel getInstance(Context context) { - if (mV2XRefreshModel == null) { - synchronized (V2XRefreshModel.class) { - if (mV2XRefreshModel == null) { - mV2XRefreshModel = new V2XRefreshModel(); - mV2XRefreshModel.init(context); - } - } - } - return mV2XRefreshModel; - } - - private void init(Context context) { - this.mContext = context; - } - - - /** - * 直播点赞👍 - * - * @param callback 回调 - */ - public void giveLikeLiveVideo(final V2XRefreshCallback callback, String snStr) { - final Map query = new ParamsProvider.Builder(mContext).build(); - query.put("data", "{\"sn\":" + snStr + "}"); - V2XApiServiceFactory.getGeoFenceCarServiceApiService().giveLikeLiveVideo(query) - .subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(BaseData o) { - super.onSuccess(o); - if (callback != null) { - callback.onSuccess(o); - } - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - if (callback != null) { - if (TextUtils.isEmpty(message)) { - message = "网络错误,请稍后重试"; - } - callback.onFail(message); - } - } - }); - } - - /** - * 获取用户信息 - * - * @param sn 目标车机SN - */ - public void queryUserInfoBySn(String sn, final V2XRefreshCallback callback) { - RequestBody body = RequestBody.create( - okhttp3.MediaType.parse("application/json; charset=utf-8"), - "{\"sn\":\"" + sn + "\"}"); - - V2XApiServiceFactory.getRealtimeLocationApiService().queryUserInfoBySn(body) - .subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(V2XUserInfoRes o) { - super.onSuccess(o); - if (callback != null) { - callback.onSuccess(o); - } - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - if (callback != null) { - if (TextUtils.isEmpty(message)) { - message = "网络错误,请稍后重试"; - } - callback.onFail(message); - } - } - }); - } - - /** - * 根据经纬度查询附近可直播车机直播信息 - * - * @param callback 回调 - */ - public void queryNearbyVehicleLiveByLocation( - V2XRefreshCallback callback, double lon, double lat) { - final Map query = new ParamsProvider.Builder(mContext).build(); - - StringBuffer dataStr = new StringBuffer(); - dataStr.append("{"); - dataStr.append("\"lon\":"); - dataStr.append(lon); - dataStr.append(","); - dataStr.append("\"lat\":"); - dataStr.append(lat); - dataStr.append(","); - dataStr.append("\"radius\":"); - dataStr.append(0.5); - dataStr.append(","); - dataStr.append("\"size\":"); - dataStr.append(5); - dataStr.append("}"); - - query.put("data", dataStr.toString()); - V2XApiServiceFactory.getRealtimeLocationApiService().queryNearbyVehicleLiveByLocation(query) - .subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(V2XLiveCarRes o) { - super.onSuccess(o); - if (callback != null) { - callback.onSuccess(o); - } - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - if (callback != null) { - if (TextUtils.isEmpty(message)) { - message = "网络错误,请稍后重试"; - } - callback.onFail(message); - } - } - }); - } - - /** - * 取消求助 - * - * @param callback - */ - public void cancelHelpSignal(V2XRefreshCallback callback) { - final Map map = new ParamsProvider.Builder(mContext).build(); - String json = new StringBuilder() - .append("{") - .append("\"sn\":").append(MoGoAiCloudClientConfig.getInstance().getSn()) - .append(",") - .append("\"vehicleType\":") - .append(0) - .append("}").toString(); - map.put("data", json); - V2XApiServiceFactory.getRealtimeLocationApiService().sendHelpSignal(map).subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(BaseData o) { - super.onSuccess(o); - if (callback != null) { - callback.onSuccess(o); - } - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - if (callback != null) { - if (TextUtils.isEmpty(message)) { - message = "网络错误,请稍后重试"; - } - callback.onFail(message); - } - } - }); - } - - /** - * 点赞接口 - */ - public void addPoiInfoFabulous(V2XRefreshCallback callback, - String infoId, - String poiType, - int likeOrDislike) { - final Map map = new ParamsProvider.Builder(mContext).build(); - String json = new StringBuilder() - .append("{") - .append("\"infoId\":").append(infoId) - .append(",") - .append("\"poiType\":").append(poiType) - .append(",") - .append("\"likeOrdislike\":").append(likeOrDislike) - .append(",") - .append("\"sn\":").append(MoGoAiCloudClientConfig.getInstance().getSn()) - .append("}").toString(); - map.put("data", json); - V2XApiServiceFactory.getDevaApiService().addPoiInfoFabulous(map).subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(BaseData o) { - super.onSuccess(o); - if (callback != null) { - callback.onSuccess(o); - } - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - if (callback != null) { - if (TextUtils.isEmpty(message)) { - message = "网络错误,请稍后重试"; - } - callback.onFail(message); - } - } - }); - } - - /** - * 响应求助 - * "seekHelpSn":"testSn01",求助SN - * "enthusiasticSn":"testSn02",响应求助SN - */ - public void respondingToHelp(String seekHelpSn) { - final Map map = new ParamsProvider.Builder(mContext).build(); - String json = new StringBuilder() - .append("{") - .append("\"seekHelpSn\":").append(seekHelpSn) - .append(",") - .append("\"enthusiasticSn\":").append(MoGoAiCloudClientConfig.getInstance().getSn()) - .append("}").toString(); - map.put("data", json); - V2XApiServiceFactory.getDevaApiService().respondingToHelp(map).subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(BaseData o) { - super.onSuccess(o); - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - } - }); - } - - /** - * 道路事件UGC - * 需求地址 - * http://wiki.zhidaohulian.com/pages/viewpage.action?pageId=42321443 - * {"id":"","status":1,"markUser":"name","sn":"111111","helpId":"222"} - */ - public void manualMarkingTrafficJam(String id, - int status, - String helpId) { - final Map map = new ParamsProvider.Builder(mContext).build(); - String json = "{" + "\"id\":\"" + id + "\"," + "\"sn\":\"" + MoGoAiCloudClientConfig.getInstance().getSn() + "\"," + "\"status\":" + status + "," + "\"helpId\":\"" + helpId + "\"}"; - map.put("data", json); - V2XApiServiceFactory.getDevaApiService().manualMarkingTrafficJam(map).subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(BaseData o) { - super.onSuccess(o); - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - } - }); - } - - /** - * 根据名称获取策略详情 - */ - public void getStrategyPush(V2XRefreshCallback callback) { - V2XApiServiceFactory.getStrategyPushApiService().getStrategyPush().subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(V2XStrategyPushRes o) { - super.onSuccess(o); - if (callback != null) { - callback.onSuccess(o); - } - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - if (callback != null) { - if (TextUtils.isEmpty(message)) { - message = "网络错误,请稍后重试"; - } - callback.onFail(message); - } - } - }); - } - - /** - * 查询当前车辆故障求助状态 - * - * @param callback - */ - public void getHelpSignal(V2XRefreshCallback callback) { - final Map map = new ParamsProvider.Builder(mContext).build(); - map.put("sn", MoGoAiCloudClientConfig.getInstance().getSn()); - V2XApiServiceFactory.getRealtimeLocationApiService().queryHelpSignal(map).subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(V2XSeekHelpRes o) { - super.onSuccess(o); - if (callback != null) { - callback.onSuccess(o); - } - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - if (callback != null) { - if (TextUtils.isEmpty(message)) { - message = "网络错误,请稍后重试"; - } - callback.onFail(message); - } - } - }); - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XShareNetworkModel.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XShareNetworkModel.java deleted file mode 100644 index bf79a8c55c..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/network/V2XShareNetworkModel.java +++ /dev/null @@ -1,180 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.network; - -import android.content.Context; - -import com.mogo.cloud.passport.MoGoAiCloudClientConfig; -import com.mogo.commons.network.ParamsProvider; -import com.mogo.eagle.core.data.BaseData; -import com.mogo.eagle.core.network.RequestOptions; -import com.mogo.eagle.core.network.SubscribeImpl; -import com.mogo.eagle.core.network.utils.GsonUtil; - - -import java.util.HashMap; -import java.util.Map; - -import io.reactivex.Observable; -import io.reactivex.ObservableEmitter; -import io.reactivex.ObservableOnSubscribe; -import io.reactivex.ObservableSource; -import io.reactivex.Observer; -import io.reactivex.android.schedulers.AndroidSchedulers; -import io.reactivex.disposables.Disposable; -import io.reactivex.functions.Function; -import io.reactivex.schedulers.Schedulers; - -public class V2XShareNetworkModel { - private static final String TAG = "V2XShareNetworkModel"; - private final Context mContext; - - public V2XShareNetworkModel(Context context) { - this.mContext = context; - } - - /** - * 两个任务串行 - * 1.分享次数,热心指数 - * 2.分享列表 - */ - public void getShareEventResponse(int page, int size, V2XRefreshCallback callback) { - - Observable indexObservable = Observable.create(new ObservableOnSubscribe() { - - @Override - public void subscribe(ObservableEmitter emitter) throws Exception { - emitter.onNext("1"); - emitter.onComplete(); - } - }); - - Observable listObservable = Observable.create(new ObservableOnSubscribe() { - @Override - public void subscribe(ObservableEmitter emitter) throws Exception { - emitter.onNext("2"); - emitter.onComplete(); - } - }); - indexObservable.flatMap(new Function>() { - @Override - public ObservableSource apply(String s) throws Exception { - return listObservable; - } - }) - .observeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new Observer() { - - @Override - public void onSubscribe(Disposable d) { - try { - getShareIndex(callback); - } catch (Exception e) { - e.printStackTrace(); - } - } - - @Override - public void onNext(Object o) { - try { - getShareEventList(page, size, callback); - } catch (Exception e) { - e.printStackTrace(); - } - } - - @Override - public void onError(Throwable e) { - - } - - @Override - public void onComplete() { - - } - }); - } - - /** - * 热心指数 - */ - public void getShareIndex(V2XRefreshCallback callback) { - final ParamsProvider.Builder builder = new ParamsProvider.Builder(mContext); - HashMap hashMap = new HashMap<>(); - hashMap.put("sn", MoGoAiCloudClientConfig.getInstance().getSn()); - builder.append("data", GsonUtil.jsonFromObject(hashMap)); - Map parameters = builder.build(); - //热心指数 - V2XApiServiceFactory.getDevaApiService().getEnthusiasmIndex(parameters) - .subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create((mContext))) { - @Override - public void onSuccess(BaseData resultData) { - super.onSuccess(resultData); - if (callback != null) { - callback.onSuccess(resultData); - } - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - if (callback != null) { - callback.onFail(message); - } - } - - @Override - public void onError(Throwable e) { - super.onError(e); - if (callback != null) { - callback.onFail("网络异常,点击刷新重试"); - } - } - }); - - } - - /** - * 分享列表 - */ - public void getShareEventList(int page, int size, V2XRefreshCallback callback) { - - final ParamsProvider.Builder builder = new ParamsProvider.Builder(mContext); - HashMap hashMap = new HashMap<>(); - hashMap.put("sn", MoGoAiCloudClientConfig.getInstance().getSn()); - hashMap.put("pageNum", page); - hashMap.put("pageSize", size); - builder.append("data", GsonUtil.jsonFromObject(hashMap)); - Map parameters = builder.build(); - - V2XApiServiceFactory.getDevaApiService().getShareEventList(parameters) - .subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(BaseData resultData) { - super.onSuccess(resultData); - if (callback != null) { - callback.onSuccess(resultData); - } - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - if (callback != null) { - callback.onFail(message); - } - } - - @Override - public void onError(Throwable e) { - super.onError(e); - if (callback != null) { - callback.onFail("网络异常,点击刷新重试"); - } - } - }); - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/receiver/SceneBroadcastReceiver.kt b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/receiver/SceneBroadcastReceiver.kt index a9790d35a9..44a19d8500 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/receiver/SceneBroadcastReceiver.kt +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/receiver/SceneBroadcastReceiver.kt @@ -3,12 +3,23 @@ package com.mogo.eagle.core.function.v2x.events.receiver import android.content.BroadcastReceiver import android.content.Context import android.content.Intent +import android.content.IntentFilter +import androidx.localbroadcastmanager.content.LocalBroadcastManager import com.mogo.eagle.core.data.map.entity.V2XMessageEntity import com.mogo.eagle.core.function.v2x.events.consts.V2XConst import com.mogo.eagle.core.function.v2x.events.scenario.impl.V2XScenarioManager -import java.lang.Exception -class SceneBroadcastReceiver: BroadcastReceiver() { +class SceneBroadcastReceiver : BroadcastReceiver() { + + companion object { + fun register(context: Context) { + val localReceiver = SceneBroadcastReceiver() + val localBroadcastManager = LocalBroadcastManager.getInstance(context) + val intentFilter = IntentFilter() + intentFilter.addAction(V2XConst.BROADCAST_SCENE_HANDLER_ACTION) + localBroadcastManager.registerReceiver(localReceiver, intentFilter) + } + } override fun onReceive(context: Context?, intent: Intent?) { try { diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/receiver/TestPanelBroadcastReceiver.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/receiver/TestPanelBroadcastReceiver.java index 7fdf5de722..641abd35ef 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/receiver/TestPanelBroadcastReceiver.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/receiver/TestPanelBroadcastReceiver.java @@ -11,11 +11,10 @@ import com.mogo.eagle.core.data.map.MogoLatLng; import com.mogo.eagle.core.data.map.entity.MarkerExploreWay; import com.mogo.eagle.core.data.map.entity.V2XMessageEntity; import com.mogo.eagle.core.data.map.entity.V2XRoadEventEntity; +import com.mogo.eagle.core.data.v2x.V2XOptimalRouteDataRes; import com.mogo.eagle.core.function.call.chat.CallerChatManager; import com.mogo.eagle.core.function.call.map.CallerSmpManager; import com.mogo.eagle.core.function.v2x.events.consts.V2XConst; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XOptimalRouteDataRes; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XSpecialCarRes; import com.mogo.eagle.core.function.v2x.events.utils.TestOnLineCarUtils; import com.mogo.eagle.core.function.v2x.events.utils.V2XSQLiteUtils; import com.mogo.eagle.core.utilcode.util.Utils; @@ -52,21 +51,7 @@ public class TestPanelBroadcastReceiver extends BroadcastReceiver { * @param sceneType 场景类型 */ private void dispatchSceneTest(int sceneType) { - if (sceneType == 0) {//打开用户信息 - CallerChatManager.INSTANCE.call(Utils.getApp(), "X20202111230C01"); - } else if (sceneType == 1) {// 触发道路事件 - V2XMessageEntity v2XMessageEntity = - TestOnLineCarUtils.getV2XScenarioRoadEventData(); - - Intent intent = new Intent(V2XConst.BROADCAST_SCENE_HANDLER_ACTION); - intent.putExtra(V2XConst.BROADCAST_SCENE_EXTRA_KEY, v2XMessageEntity); - LocalBroadcastManager.getInstance(mContext).sendBroadcast(intent); - - // 存储本地,出行动态作展示 - saveLocalStory(V2XMessageEntity.V2XTypeEnum.ALERT_ROAD_WARNING, - v2XMessageEntity.getContent().getNoveltyInfo()); - } - if (sceneType == 2) {// 触发AI道路施工事件 + if (sceneType == 1) {// 触发AI道路施工事件 V2XMessageEntity v2XMessageEntity = TestOnLineCarUtils.getV2XScenarioAIRoadEventData(); Intent intent = new Intent(V2XConst.BROADCAST_SCENE_HANDLER_ACTION); @@ -109,13 +94,6 @@ public class TestPanelBroadcastReceiver extends BroadcastReceiver { Intent intent = new Intent(V2XConst.BROADCAST_SCENE_HANDLER_ACTION); intent.putExtra(V2XConst.BROADCAST_SCENE_EXTRA_KEY, v2XMessageEntity); LocalBroadcastManager.getInstance(mContext).sendBroadcast(intent); - } else if (sceneType == 18) {// 自车求助 - V2XMessageEntity v2XMessageEntity = - TestOnLineCarUtils.getV2XScenarioCarForHelpEventData(); - Intent intent = new Intent(V2XConst.BROADCAST_SCENE_HANDLER_ACTION); - intent.putExtra(V2XConst.BROADCAST_SCENE_EXTRA_KEY, v2XMessageEntity); - LocalBroadcastManager.getInstance(mContext).sendBroadcast(intent); - MogoStatusManager.getInstance().setSeekHelping(V2XConst.MODULE_NAME, true); } else if (sceneType == 20) {// 小地图绘制线 List coordinates = TestOnLineCarUtils.getTestCoordinates(); CallerSmpManager.drawablePolyline(coordinates); diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/V2XBasWindow.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/V2XBasWindow.java deleted file mode 100644 index 7170107f08..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/V2XBasWindow.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.scenario.scene; - -import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_V2X; - -import android.content.Context; -import android.util.AttributeSet; -import android.widget.RelativeLayout; - -import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; - -/** - * @author donghongyu - * @date 12/11/20 10:35 AM - */ -public class V2XBasWindow extends RelativeLayout { - private final String TAG = "V2XBasWindow"; - - public V2XBasWindow(Context context) { - super(context); - } - - public V2XBasWindow(Context context, AttributeSet attrs) { - super(context, attrs); - } - - public V2XBasWindow(Context context, AttributeSet attrs, int defStyleAttr) { - super(context, attrs, defStyleAttr); - } - - @Override - protected void onAttachedToWindow() { - super.onAttachedToWindow(); - CallerLogger.INSTANCE.w(M_V2X + TAG, "onAttachedToWindow……"); - } - - @Override - protected void onDetachedFromWindow() { - super.onDetachedFromWindow(); - CallerLogger.INSTANCE.w(M_V2X + TAG, "onDetachedFromWindow……"); - release(); - } - - /** - * 这里释放资源 - */ - protected void release() { - CallerLogger.INSTANCE.w(M_V2X + TAG, "release……"); - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/route/V2XOptimalRouteVREventMarker.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/route/V2XOptimalRouteVREventMarker.java index 3ca5bb86e1..daac6e2b91 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/route/V2XOptimalRouteVREventMarker.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/route/V2XOptimalRouteVREventMarker.java @@ -3,7 +3,7 @@ package com.mogo.eagle.core.function.v2x.events.scenario.scene.route; import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_V2X; import com.mogo.eagle.core.function.v2x.events.bridge.BridgeApi; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XOptimalRouteDataRes; +import com.mogo.eagle.core.data.v2x.V2XOptimalRouteDataRes; import com.mogo.eagle.core.function.v2x.events.manager.IMoGoV2XMarkerManager; import com.mogo.eagle.core.function.v2x.events.observer.V2XOptimalRouteObserver; import com.mogo.eagle.core.function.v2x.events.scenario.view.IV2XMarker; diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/route/V2XOptimalRouteVREventScenario.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/route/V2XOptimalRouteVREventScenario.java index ec4f9c1864..3841c01242 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/route/V2XOptimalRouteVREventScenario.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/route/V2XOptimalRouteVREventScenario.java @@ -13,7 +13,7 @@ import com.mogo.eagle.core.function.call.hmi.CallerHmiManager; import com.mogo.eagle.core.function.call.msgbox.CallerMsgBoxManager; import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.function.v2x.events.bridge.BridgeApi; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XOptimalRouteDataRes; +import com.mogo.eagle.core.data.v2x.V2XOptimalRouteDataRes; import com.mogo.eagle.core.function.v2x.events.manager.IMoGoV2XStatusManager; import com.mogo.eagle.core.function.v2x.events.scenario.impl.AbsV2XScenario; import com.mogo.eagle.core.function.v2x.events.scenario.view.IV2XMarker; diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/warning/V2XWarningMarker.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/warning/V2XWarningMarker.java index f4ad336bd6..dca44bc2fd 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/warning/V2XWarningMarker.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/warning/V2XWarningMarker.java @@ -13,7 +13,7 @@ import com.mogo.eagle.core.data.map.MogoLocation; import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotStatusListenerManager; import com.mogo.eagle.core.function.call.map.CallerMapUIServiceManager; import com.mogo.eagle.core.function.v2x.events.bridge.BridgeApi; -import com.mogo.eagle.core.function.v2x.events.entity.model.DrawLineInfo; +import com.mogo.eagle.core.data.v2x.DrawLineInfo; import com.mogo.eagle.core.function.v2x.events.manager.IMoGoPersonWarnPolylineManager; import com.mogo.eagle.core.function.v2x.events.manager.IMoGoStopPolylineManager; import com.mogo.eagle.core.function.v2x.events.manager.IMoGoWarnPolylineManager; diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/view/IV2XButton.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/view/IV2XButton.java deleted file mode 100644 index aadb570394..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/view/IV2XButton.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.scenario.view; - - -/** - * author : donghongyu - * e-mail : 1358506549@qq.com - * date : 2020/5/15 5:02 PM - * desc : - * version: 1.0 - */ -public interface IV2XButton { - /** - * 设置监听器,处理button点击和语音唤醒 - * @param listener - */ - void setOnActionListener(IV2XButtonListener listener); - - /** - * 按钮显示 - */ - void show(); - - /** - * 按钮关闭 - */ - void close(); - - /** - * 语音注册 - */ - void registerVoice(); - - /** - * 语音反注册 - */ - void unRegisterVoice(); - -} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/view/IV2XButtonListener.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/view/IV2XButtonListener.java deleted file mode 100644 index d6b99335d6..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/view/IV2XButtonListener.java +++ /dev/null @@ -1,22 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.scenario.view; - -import android.view.View; - -/** - * @ProjectName: MoGoModulSafeDriving - * @Package: com.mogo.module.v2x.scenario.view - * @ClassName: IV2XButtonListener - * @Description: java类作用描述 - * @Author: fenghl - * @CreateDate: 2020/5/18 15:58 - * @UpdateUser: 更新者: - * @UpdateDate: 2020/5/18 15:58 - * @UpdateRemark: 更新说明: - * @Version: 1.0 - */ -public interface IV2XButtonListener { - /** - * 响应点击或语音触发事件 - */ - void onAction(); -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/view/IV2XWindow.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/view/IV2XWindow.java deleted file mode 100644 index d6c1389110..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/view/IV2XWindow.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.scenario.view; - -import android.view.View; - -/** - * @ProjectName: MoGoModulSafeDriving - * @Package: com.mogo.module.v2x.statusmanager - * @ClassName: IV2XWindow - * @Description: java类作用描述 - * @Author: fenghl - * @CreateDate: 2020/5/15 11:24 - * @UpdateUser: 更新者: - * @UpdateDate: 2020/5/15 11:24 - * @UpdateRemark: 更新说明: - * @Version: 1.0 - */ -public interface IV2XWindow { - - /** - * 展示1/2窗口 - */ - void show(T entity); - - /** - * 关闭1/2窗口 - */ - void close(); - - /** - * 返回窗体 - * - * @return 当前窗体 - */ - View getView(); -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/utils/TestOnLineCarUtils.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/utils/TestOnLineCarUtils.java index fc0edf6041..62c8a64efa 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/utils/TestOnLineCarUtils.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/utils/TestOnLineCarUtils.java @@ -3,15 +3,12 @@ package com.mogo.eagle.core.function.v2x.events.utils; import static com.mogo.eagle.core.data.map.entity.V2XMessageEntity.V2XTypeEnum.ALERT_ROAD_WARNING; import com.mogo.eagle.core.data.map.MogoLatLng; -import com.mogo.eagle.core.data.map.entity.MarkerExploreWay; import com.mogo.eagle.core.data.map.entity.MarkerLocation; -import com.mogo.eagle.core.data.map.entity.MarkerResponse; import com.mogo.eagle.core.data.map.entity.V2XMessageEntity; import com.mogo.eagle.core.data.map.entity.V2XRoadEventEntity; import com.mogo.eagle.core.data.map.entity.V2XWarningEntity; import com.mogo.eagle.core.function.v2x.R; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XOptimalRouteDataRes; -import com.mogo.eagle.core.function.v2x.events.entity.net.V2XSpecialCarRes; +import com.mogo.eagle.core.data.v2x.V2XOptimalRouteDataRes; import com.mogo.eagle.core.network.utils.GsonUtil; import com.mogo.eagle.core.utilcode.util.Utils; @@ -28,39 +25,6 @@ import java.util.List; */ public class TestOnLineCarUtils { - /** - * 模拟道路事件测试数据 - */ - public static V2XMessageEntity getV2XScenarioRoadEventData() { - try { - InputStream inputStream = Utils.getApp() - .getResources() - .openRawResource(R.raw.scenario_road_event_data); - ByteArrayOutputStream baos = new ByteArrayOutputStream(); - int len = -1; - byte[] buffer = new byte[1024]; - while ((len = inputStream.read(buffer)) != -1) { - baos.write(buffer, 0, len); - } - inputStream.close(); - - // 加载数据源 - V2XRoadEventEntity v2xRoadEventEntity = GsonUtil.objectFromJson(baos.toString(), V2XRoadEventEntity.class); - - V2XMessageEntity v2xMessageEntity = new V2XMessageEntity<>(); - // 控制类型 - v2xMessageEntity.setType(ALERT_ROAD_WARNING); - // 设置数据 - v2xMessageEntity.setContent(v2xRoadEventEntity); - // 控制展示状态 - v2xMessageEntity.setShowState(true); - return v2xMessageEntity; - } catch (Exception e) { - e.printStackTrace(); - } - return null; - } - /** * 模拟道路事件测试数据 */ @@ -77,6 +41,7 @@ public class TestOnLineCarUtils { body.setType(ALERT_ROAD_WARNING); return body; } + /** * 模拟道路事件UGC测试数据 */ diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/utils/TrackUtils.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/utils/TrackUtils.java index a1eec13954..87bf002efa 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/utils/TrackUtils.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/utils/TrackUtils.java @@ -10,35 +10,6 @@ import java.util.Map; * 统计埋点工具 */ public class TrackUtils { - - //埋点 - public static void trackV2xRoadShow(String dbid, String type, String style) { - try { - Map properties = new HashMap<>(); - properties.put("dbid", dbid); - properties.put("type", type); - properties.put("lng", V2XStatusManager.getInstance().getLocation().getLongitude()); - properties.put("lat", V2XStatusManager.getInstance().getLocation().getLatitude()); - properties.put("style", style); - AnalyticsUtils.track(V2XConst.V2X_ROAD_SHOW, properties); - } catch (Exception e) { - e.printStackTrace(); - } - } - - //道路事件操作埋点 v2x_road_event - public static void trackV2xRoadEvent(String dbid, String sn, String type) { - try { - Map properties = new HashMap<>(); - properties.put("dbid", dbid); - properties.put("sn", sn); - properties.put("type", type); - AnalyticsUtils.track(V2XConst.V2X_ROAD_EVET, properties); - } catch (Exception e) { - e.printStackTrace(); - } - } - /** * @param type type=1 短距离角度匹配 * type=2 历史轨迹匹配 @@ -63,26 +34,4 @@ public class TrackUtils { } } - //道路事件操作埋点 V2X_button - - /** - * @param type type=1 桌面按钮 - *

- * type=2 tab1按钮-出行动态 - *

- * type=3 tab2按钮-周边事件 - *

- * type=4 tab3按钮-我的分享 - *

- * type=5 tab4按钮-关闭按钮 - */ - public static void trackV2xHistoryEvent(int type) { - try { - Map properties = new HashMap<>(); - properties.put("type", type); - AnalyticsUtils.track(V2XConst.V2X_ROAD_EVET_HISTORY_BUTTON, properties); - } catch (Exception e) { - e.printStackTrace(); - } - } } diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/view/V2XMarkerRoadEventView.kt b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/view/V2XMarkerRoadEventView.kt index d16195f781..1b3e41053c 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/view/V2XMarkerRoadEventView.kt +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/view/V2XMarkerRoadEventView.kt @@ -23,7 +23,10 @@ import kotlinx.android.synthetic.main.view_marker_event_car.view.* */ class V2XMarkerRoadEventView(context: Context, alarmInfo: V2XRoadEventEntity) : ConstraintLayout(context) { - val TAG = "V2XMarkerRoadEventView" + + companion object{ + const val TAG = "V2XMarkerRoadEventView" + } init { initView(context, alarmInfo) diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/voice/V2XVoiceCallbackListener.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/voice/V2XVoiceCallbackListener.java deleted file mode 100644 index e687c11259..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/voice/V2XVoiceCallbackListener.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.voice; - -import android.content.Intent; - -/** - * author : donghongyu - * e-mail : 1358506549@qq.com - * date : 2020/4/21 4:47 PM - * desc : 语音回调 - * version: 1.0 - */ -public interface V2XVoiceCallbackListener { - void onCallback(String command, Intent intent); -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/voice/V2XVoiceConstants.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/voice/V2XVoiceConstants.java deleted file mode 100644 index b4c1add269..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/voice/V2XVoiceConstants.java +++ /dev/null @@ -1,347 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.voice; - -import java.util.HashMap; -import java.util.Map; - -/** - * @ProjectName: MoGoModulSafeDriving - * @Package: com.mogo.module.v2x - * @ClassName: V2XVoiceConstants - * @Description: V2X语音唤醒词常量 - * @Author: fenghl - * @CreateDate: 2020/3/23 10:37 - * @UpdateUser: 更新者: - * @UpdateDate: 2020/3/23 10:37 - * @UpdateRemark: 更新说明: - * @Version: 1.0 - */ -public class V2XVoiceConstants { - /** - * 免唤醒 - */ - public static final Map sVoiceCmds = new HashMap<>(); - /** - * 查看前方实况 - */ - public static final String COMMAND_ZHIDAO_V2X_LIVE_ROAD = "com.zhidao.auxiliaryDriving.liveBroadcastAhead"; - /** - * 关闭前方实况 - */ - public static final String COMMAND_ZHIDAO_V2X_CLOSE_WINDOW = "com.zhidao.auxiliaryDriving.closeLiveBroadcast"; - /** - * 下一条 - */ - public static final String COMMAND_ZHIDAO_V2X_NEXT = "com.zhidao.desk.next"; - /** - * 和他通话 - */ - public static final String COMMAND_ZHIDAO_V2X_CALL_CHATTING = "com.zhidao.onlinecar.chat"; - /** - * 点赞 - */ - public static final String COMMAND_ZHIDAO_V2X_ZAN = "com.zhidao.thumsup"; - /** - * 上报路况 - */ - public static final String COMMAND_ZHIDAO_V2X_REPORT = "com.zhidao.pathfinder.report.roadCondition"; - - /** - * 取消求助 - */ - public static final String COMMAND_ZHIDAO_V2X_CANCEL_HELP = "com.zhidao.auxiliaryDriving.cancelTroubleHelp"; - /** - * 发起故障求助 - */ - public static final String COMMAND_ZHIDAO_V2X_SEEK_HELP = "com.zhidao.auxiliaryDriving.pubTroubleHelp"; - /** - * 导航前往 - */ - public static final String COMMAND_ZHIDAO_V2X_NAVI = "com.zhidao.navi"; - /** - * 分享 - */ - public static final String COMMAND_ZHIDAO_V2X_SHARE = "com.zhidao.share"; - /** - * 确定 - */ - public static final String COMMAND_ZHIDAO_V2X_COMMON_CONFIRM = "com.zhidao.commin.confirm"; - /** - * 取消 - */ - public static final String COMMAND_ZHIDAO_V2X_COMMON_CANCEL = "com.zhidao.commin.cancel"; - - /** - * 呼叫前方车辆 - */ - public static final String COMMAND_ZHIDAO_V2X_CALL_FRONT_CAR = "com.zhidao.imdemo.chat.callFrontCar"; - - /** - * 刷新直播车辆 - */ - public static final String COMMAND_ZHIDAO_V2X_REFRESH_CAR_LIVE = "com.zhidao.user.action.retry"; - - /** - * 唤醒词:查看前车视频 - */ - public static final String COMMAND_ZHIDAO_V2X_AHEAD_LIVE = "com.zhidao.ahead.live"; - - /** - * 唤醒词:查看周围路口直播 - */ - public static final String COMMAND_ZHIDAO_V2X_CROSSROADS_LIVE = "com.zhidao.crossroads.live"; - - /** - * 应用内免唤醒 - * 发起定向车聊聊 - */ - public static final String COMMAND_V2X_TO_CHAT_MORE_UN_WAKEUP = "COMMAND_V2X_TO_CHAT_MORE_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_CHAT_MORE_UN_WAKEUP_WORDS = {"和他通话", "和他聊天", "聊更多", "拨打电话", "联系他"}; - /** - * 应用内免唤醒 - * 点赞 - */ - public static final String COMMAND_V2X_TO_ZAN_UN_WAKEUP = "COMMAND_V2X_TO_ZAN_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_ZAN_UN_WAKEUP_WORDS = {"感谢他", "感谢分享", "点个赞", "点赞"}; - /** - * 应用内免唤醒 - * 上报路况 - */ - public static final String COMMAND_V2X_TO_REPORT_ROAD_UN_WAKEUP = "COMMAND_V2X_TO_REPORT_ROAD_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_REPORT_ROAD_UN_WAKEUP_WORDS = {"信息纠错", "路况纠错"}; - /** - * 应用内免唤醒 - * 发起车聊聊求助周边车友 - */ - public static final String COMMAND_V2X_TO_SEEK_HELP_UN_WAKEUP = "COMMAND_V2X_TO_SEEK_HELP_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_SEEK_HELP_UN_WAKEUP_WORDS = {"故障求助", "发起故障求助"}; - /** - * 应用内免唤醒 - * 说取消求助,弹框显示 - */ - public static final String COMMAND_V2X_TO_CANCEL_FOR_HELP_UN_WAKEUP = "COMMAND_V2X_TO_CANCEL_FOR_HELP_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_CANCEL_FOR_HELP_WAKEUP_WORDS = {"取消故障求助", "关闭故障求助", "取消求助"}; - /** - * 应用内免唤醒 - * 帮助他,发起车聊聊 - */ - public static final String COMMAND_V2X_TO_HELP_UN_WAKEUP = "COMMAND_V2X_TO_HELP_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_HELP_UN_WAKEUP_WORDS = {"帮助他"}; - /** - * 应用内免唤醒 - * 导航到POI信息点 - */ - public static final String COMMAND_V2X_TO_NAVI_UN_WAKEUP = "COMMAND_V2X_TO_NAVI_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_NAVI_UN_WAKEUP_WORDS = {"导航前往", "开始导航", "开启导航", "好", "开始", "导航", "确定", "确认", "好的"}; - /** - * 应用内免唤醒 - * 取消导航 - */ - public static final String COMMAND_V2X_CANCEL_NAVI_UN_WAKEUP = "COMMAND_V2X_CANCEL_NAVI_UN_WAKEUP"; - public static final String[] COMMAND_V2X_CANCEL_NAVI_UN_WAKEUP_WORDS = {"取消","关闭","不要","不导航"}; - /** - * 应用内免唤醒 - * 调起分享流程 - */ - public static final String COMMAND_V2X_TO_SHARE_UN_WAKEUP = "COMMAND_V2X_TO_SHARE_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_SHARE_UN_WAKEUP_WORDS = {"上报油价", "我要分享"}; - /** - * 应用内免唤醒 - * 确定,打开路况详情,确定放弃求助 - */ - public static final String COMMAND_V2X_TO_CONFIRM_UN_WAKEUP = "COMMAND_V2X_TO_CONFIRM_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_CONFIRM_UN_WAKEUP_WORDS = {"确认", "确定"}; - /** - * 应用内免唤醒 - * 取消,继续求助 - */ - public static final String COMMAND_V2X_TO_CANCEL_UN_WAKEUP = "COMMAND_V2X_TO_CANCEL_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_CANCEL_UN_WAKEUP_WORDS = {"取消", "继续求助"}; - /** - * 应用内免唤醒 - * 关闭路况详情 - */ - public static final String COMMAND_V2X_TO_CLOSE_WINDOW_UN_WAKEUP = "COMMAND_V2X_TO_CLOSE_WINDOW_UN_WAKEUP"; - public static final String[] COMMAND_V2X_TO_CLOSE_WINDOW_UN_WAKEUP_WORDS = {"关闭", "关闭页面"}; - /** - * 应用内免唤醒 - * 反馈"正确"语音回调 - */ - public static final String COMMAND_V2X_TO_FEEDBACK_TRUE = "COMMAND_V2X_TO_FEEDBACK_TRUE"; - public static final String[] COMMAND_V2X_TO_FEEDBACK_TRUE_WORDS = {"正确"}; - /** - * 应用内免唤醒 - * 反馈"错误"语音回调 - */ - public static final String COMMAND_V2X_TO_FEEDBACK_ERROR = "COMMAND_V2X_TO_FEEDBACK_ERROR"; - public static final String[] COMMAND_V2X_TO_FEEDBACK_ERROR_WORDS = {"错误"}; - - /** - * 应用内免唤醒 - * "呼叫前方车辆"语音回调 - */ - public static final String COMMAND_ZHIDAO_V2X_CALL_FRONT_CAR_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_CALL_FRONT_CAR_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_CALL_FRONT_CAR_UN_WAKEUP_WORDS = {"呼叫前方车辆"}; - - /** - * 应用内免唤醒 - * "查看直播","查看实况" - */ - public static final String COMMAND_ZHIDAO_V2X_OPEN_LIVE_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_OPEN_LIVE_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_OPEN_LIVE_UN_WAKEUP_WORDS = {"查看直播", "查看实况"}; - - /** - * 应用内免唤醒 - * "关闭直播","关闭实况" - */ - public static final String COMMAND_ZHIDAO_V2X_CLOSE_LIVE_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_CLOSE_LIVE_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_CLOSE_LIVE_UN_WAKEUP_WORDS = {"关闭直播", "关闭实况"}; - - /** - * 应用内免唤醒 - * "重新尝试","重试" - */ - public static final String COMMAND_ZHIDAO_V2X_REFRESH_LIVE_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_REFRESH_LIVE_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_REFRESH_LIVE_UN_WAKEUP_WORDS = {"重新尝试", "重试"}; - - /** - * 违章停车 - * 有用 - */ - public static final String COMMAND_ZHIDAO_V2X_ILLEGAL_PARKMARKER_FEEDBACK_YOUYONG_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_ILLEGAL_PARKMARKER_FEEDBACK_YOUYONG_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_ILLEGAL_PARKMARKER_FEEDBACK_YOUYONG_UN_WAKEUP_WORDS = {"有用"}; - - /** - * 应用内免唤醒 - * "查看前车视频","查看前车直播","查看前车视角" - */ - public static final String COMMAND_ZHIDAO_V2X_CALL_FRONT_CAR_DEMO_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_CALL_FRONT_CAR_DEMO_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_CALL_FRONT_CAR_DEMO_UN_WAKEUP_WORDS = {"查看前车视频", "查看前车直播", "查看前车视角"}; - - /** - * 应用内免唤醒 - */ - public static final String COMMAND_ZHIDAO_V2X_OPEN_ROAD_CAMERA_LIVE_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_OPEN_ROAD_CAMERA_LIVE_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_OPEN_ROAD_CAMERA_LIVE_UN_WAKEUP_WORDS = {"查看路口实况", "查看路口直播", "查看路口视频"}; - - /** - * 违章停车 - * 没用 - */ - public static final String COMMAND_ZHIDAO_V2X_ILLEGAL_PARKMARKER_FEEDBACK_MEIYONG_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_ILLEGAL_PARKMARKER_FEEDBACK_MEIYONG_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_ILLEGAL_PARKMARKER_FEEDBACK_MEIYONG_UN_WAKEUP_WORDS = {"没用"}; - - /** - * 出行动态 - */ - public static final String COMMAND_ZHIDAO_V2X_OPEN_HISTORY_EVENT_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_OPEN_HISTORY_EVENT_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_OPEN_HISTORY_EVENT_UN_WAKEUP_WORDS = {"出行动态"}; - - /** - * 周边事件 - */ - public static final String COMMAND_ZHIDAO_V2X_OPEN_SURROUNDING_EVENT_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_OPEN_SURROUNDING_EVENT_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_OPEN_SURROUNDING_EVENT_UN_WAKEUP_WORDS = {"周边事件"}; - - /** - * 我的分享 - */ - public static final String COMMAND_ZHIDAO_V2X_OPEN_SHEAR_EVENT_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_OPEN_SHEAR_EVENT_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_OPEN_SHEAR_EVENT_UN_WAKEUP_WORDS = {"我的分享"}; - - /** - * 查看车辆信息 - */ - public static final String COMMAND_ZHIDAO_V2X_OPEN_CAR_INFO_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_OPEN_CAR_INFO_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_OPEN_CAR_INFO_UN_WAKEUP_UN_WAKEUP_WORDS = {"查看车辆信息"}; - - - /** - * 用户UGC反馈免唤醒词语 - */ - // 拥堵 - public static final String COMMAND_ZHIDAO_V2X_FEEDBACK_YONG_DU_YES_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_FEEDBACK_YONG_DU_YES_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_FEEDBACK_YONG_DU_YES_UN_WAKEUP_WORDS = {"拥堵", "很堵", "堵死了", "有点堵", "确定"}; - - public static final String COMMAND_ZHIDAO_V2X_FEEDBACK_YONG_DU_NO_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_FEEDBACK_YONG_DU_NO_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_FEEDBACK_YONG_DU_NO_UN_WAKEUP_WORDS = {"没注意", "不堵", "很畅通", "取消", "关闭"}; - - - // 封路 - public static final String COMMAND_ZHIDAO_V2X_FEEDBACK_FENG_LU_YES_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_FEEDBACK_FENG_LU_YES_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_FEEDBACK_FENG_LU_YES_UN_WAKEUP_WORDS = {"封路了", "封了", "封路", "有封路", "确定"}; - - public static final String COMMAND_ZHIDAO_V2X_FEEDBACK_FENG_LU_NO_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_FEEDBACK_FENG_LU_NO_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_FEEDBACK_FENG_LU_NO_UN_WAKEUP_WORDS = {"不封路", "没注意", "没看到", "没有", "没封路", "无封路", "取消", "关闭"}; - - - // 事故 - public static final String COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GU_YES_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GU_YES_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GU_YES_UN_WAKEUP_WORDS = {"有事故", "存在交通事故", "确定"}; - - public static final String COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GU_NO_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GU_NO_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GU_NO_UN_WAKEUP_WORDS = {"没注意", "没有事故", "无事故", "没看到", "没有", "取消", "关闭"}; - - - // 道路施工 - public static final String COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GONG_YES_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GONG_YES_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GONG_YES_UN_WAKEUP_WORDS = {"有", "在施工", "有施工", "确定"}; - - public static final String COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GONG_NO_UN_WAKEUP = "COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GONG_NO_UN_WAKEUP"; - public static final String[] COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GONG_NO_UN_WAKEUP_WORDS = {"没注意", "没看到", "没有施工", "无施工", "很正常", "取消", "关闭"}; - - //免唤醒词 - public static final String V2X_CONFIRM_ACTION = "V2X_CONFIRM_ACTION"; - public static final String[] UNWAKE_NAVI_CONFIRM = {"开始导航", "开启导航", "好的", "开始", "导航", "确定", "确认", "好"}; - - public static final String V2X_CANCLE_ACTION = "V2X_CANCLE_ACTION"; - public static final String[] UNWAKE_NAVI_CANCLE = {"取消", "关闭", "不要", "不导航"}; - - - static { - // 免唤醒 默认 - sVoiceCmds.put(COMMAND_V2X_TO_CHAT_MORE_UN_WAKEUP, COMMAND_V2X_TO_CHAT_MORE_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_V2X_TO_NAVI_UN_WAKEUP, COMMAND_V2X_TO_NAVI_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_V2X_CANCEL_NAVI_UN_WAKEUP, COMMAND_V2X_CANCEL_NAVI_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_V2X_TO_CONFIRM_UN_WAKEUP, COMMAND_V2X_TO_CONFIRM_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_V2X_TO_CANCEL_UN_WAKEUP, COMMAND_V2X_TO_CANCEL_UN_WAKEUP_WORDS); - - sVoiceCmds.put(COMMAND_V2X_TO_ZAN_UN_WAKEUP, COMMAND_V2X_TO_ZAN_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_V2X_TO_REPORT_ROAD_UN_WAKEUP, COMMAND_V2X_TO_REPORT_ROAD_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_V2X_TO_CLOSE_WINDOW_UN_WAKEUP, COMMAND_V2X_TO_CLOSE_WINDOW_UN_WAKEUP_WORDS); - - sVoiceCmds.put(COMMAND_V2X_TO_SEEK_HELP_UN_WAKEUP, COMMAND_V2X_TO_SEEK_HELP_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_V2X_TO_CANCEL_FOR_HELP_UN_WAKEUP, COMMAND_V2X_TO_CANCEL_FOR_HELP_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_V2X_TO_HELP_UN_WAKEUP, COMMAND_V2X_TO_HELP_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_V2X_TO_FEEDBACK_TRUE, COMMAND_V2X_TO_FEEDBACK_TRUE_WORDS); - sVoiceCmds.put(COMMAND_V2X_TO_FEEDBACK_ERROR, COMMAND_V2X_TO_FEEDBACK_ERROR_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_OPEN_LIVE_UN_WAKEUP, COMMAND_ZHIDAO_V2X_OPEN_LIVE_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_CLOSE_LIVE_UN_WAKEUP, COMMAND_ZHIDAO_V2X_CLOSE_LIVE_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_REFRESH_LIVE_UN_WAKEUP, COMMAND_ZHIDAO_V2X_REFRESH_LIVE_UN_WAKEUP_WORDS); - - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_ILLEGAL_PARKMARKER_FEEDBACK_YOUYONG_UN_WAKEUP, COMMAND_ZHIDAO_V2X_ILLEGAL_PARKMARKER_FEEDBACK_YOUYONG_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_ILLEGAL_PARKMARKER_FEEDBACK_MEIYONG_UN_WAKEUP, COMMAND_ZHIDAO_V2X_ILLEGAL_PARKMARKER_FEEDBACK_MEIYONG_UN_WAKEUP_WORDS); - - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_OPEN_HISTORY_EVENT_UN_WAKEUP, COMMAND_ZHIDAO_V2X_OPEN_HISTORY_EVENT_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_OPEN_SURROUNDING_EVENT_UN_WAKEUP, COMMAND_ZHIDAO_V2X_OPEN_SURROUNDING_EVENT_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_OPEN_SHEAR_EVENT_UN_WAKEUP, COMMAND_ZHIDAO_V2X_OPEN_SHEAR_EVENT_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_OPEN_CAR_INFO_UN_WAKEUP, COMMAND_ZHIDAO_V2X_OPEN_CAR_INFO_UN_WAKEUP_UN_WAKEUP_WORDS); - - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_FEEDBACK_YONG_DU_YES_UN_WAKEUP, COMMAND_ZHIDAO_V2X_FEEDBACK_YONG_DU_YES_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_FEEDBACK_YONG_DU_NO_UN_WAKEUP, COMMAND_ZHIDAO_V2X_FEEDBACK_YONG_DU_NO_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_FEEDBACK_FENG_LU_YES_UN_WAKEUP, COMMAND_ZHIDAO_V2X_FEEDBACK_FENG_LU_YES_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_FEEDBACK_FENG_LU_NO_UN_WAKEUP, COMMAND_ZHIDAO_V2X_FEEDBACK_FENG_LU_NO_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GU_YES_UN_WAKEUP, COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GU_YES_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GU_NO_UN_WAKEUP, COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GU_NO_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GONG_YES_UN_WAKEUP, COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GONG_YES_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GONG_NO_UN_WAKEUP, COMMAND_ZHIDAO_V2X_FEEDBACK_SHI_GONG_NO_UN_WAKEUP_WORDS); - - sVoiceCmds.put(V2X_CONFIRM_ACTION, UNWAKE_NAVI_CONFIRM); - sVoiceCmds.put(V2X_CANCLE_ACTION, UNWAKE_NAVI_CANCLE); - - - //2020-6-24 顺义演示需求添加,现合并至launcher 更新时间:2020-08-25 - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_CALL_FRONT_CAR_DEMO_UN_WAKEUP, COMMAND_ZHIDAO_V2X_CALL_FRONT_CAR_DEMO_UN_WAKEUP_WORDS); - sVoiceCmds.put(COMMAND_ZHIDAO_V2X_OPEN_ROAD_CAMERA_LIVE_UN_WAKEUP, COMMAND_ZHIDAO_V2X_OPEN_ROAD_CAMERA_LIVE_UN_WAKEUP_WORDS); - - } -} diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/voice/V2XVoiceManager.kt b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/voice/V2XVoiceManager.kt deleted file mode 100644 index 577567cd72..0000000000 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/voice/V2XVoiceManager.kt +++ /dev/null @@ -1,136 +0,0 @@ -package com.mogo.eagle.core.function.v2x.events.voice - -import android.content.Context -import android.content.Intent -import android.text.TextUtils -import com.mogo.commons.module.intent.IMogoIntentListener -import com.mogo.commons.module.intent.IntentManager -import com.mogo.commons.voice.AIAssist -import com.mogo.commons.voice.IMogoVoiceCmdCallBack -import java.lang.ref.WeakReference -import java.util.concurrent.ConcurrentHashMap - -/** - * - * @ProjectName: MoGoModulSafeDriving - * @Package: com.mogo.module.v2x.window - * @ClassName: V2XVoiceManager - * @Description: java类作用描述 - * @Author: fenghl - * @CreateDate: 2020/3/23 13:08 - * @UpdateUser: 更新者: - * @UpdateDate: 2020/3/23 13:08 - * @UpdateRemark: 更新说明: - * @Version: 1.0 - */ -object V2XVoiceManager : IMogoVoiceCmdCallBack, IMogoIntentListener { - private val TAG = V2XVoiceManager.javaClass.simpleName - private lateinit var mContext: WeakReference - - // 记录,免唤醒和唤醒词及对应的回调 - private val voiceCallbackMap = ConcurrentHashMap() - - fun init(context: Context) { - mContext = WeakReference(context) - } - - @Synchronized - fun removeAllOnVoiceReceiveListener() { - try { - for (mutableEntry in voiceCallbackMap) { - unRegisterWakeCmd(mutableEntry.key) - } - } catch (e: Exception) { - e.printStackTrace() - } - } - - // 注册唤醒词 - @Synchronized - fun registerWakeCmd(cmd: String, callbackListener: V2XVoiceCallbackListener): V2XVoiceManager { - try { - unRegisterWakeCmd(cmd) - voiceCallbackMap[cmd] = callbackListener - IntentManager.getInstance().registerIntentListener(cmd, this) - } catch (e: Exception) { - e.printStackTrace() - } - return this - } - - // 反注册唤醒词 - @Synchronized - fun unRegisterWakeCmd(cmd: String): V2XVoiceManager { - try { - voiceCallbackMap.remove(cmd) - IntentManager.getInstance().unregisterIntentListener(cmd, this) - } catch (e: Exception) { - e.printStackTrace() - } - return this - } - - // 注册免唤醒词 - @Synchronized - fun registerUnWakeVoice( - cmd: String, - callbackListener: V2XVoiceCallbackListener - ): V2XVoiceManager { - try { - if (!TextUtils.isEmpty(cmd)) { - try { - unRegisterUnWakeVoice(cmd) - mContext.get()?.let { - voiceCallbackMap[cmd] = callbackListener - AIAssist.getInstance(it) - .registerUnWakeupCommand(cmd, V2XVoiceConstants.sVoiceCmds[cmd], this) - } - } catch (e: Exception) { - e.printStackTrace() - } - } - } catch (e: Exception) { - e.printStackTrace() - } - return this - } - - // 反注册面唤醒词 - @Synchronized - fun unRegisterUnWakeVoice(cmd: String): V2XVoiceManager { - try { - if (!TextUtils.isEmpty(cmd)) { - try { - mContext.get()?.let { - voiceCallbackMap.remove(cmd) - AIAssist.getInstance(it).unregisterUnWakeupCommand(cmd, this) - } - } catch (e: Exception) { - e.printStackTrace() - } - } - } catch (e: Exception) { - e.printStackTrace() - } - return this - } - - override fun onIntentReceived(command: String?, intent: Intent?) { - voiceCallbackMap[command]?.onCallback(command, intent) - } - - override fun onCmdSelected(cmd: String?) { - voiceCallbackMap[cmd]?.onCallback(cmd, null) - } - - override fun onSpeakEnd(speakText: String?) { - - } - - override fun onCmdAction(speakText: String?) {} - - override fun onCmdCancel(speakText: String?) {} - - override fun onSpeakSelectTimeOut(speakText: String?) {} - -} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/socket.txt b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/socket.txt new file mode 100644 index 0000000000..fd90c72dab --- /dev/null +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/socket.txt @@ -0,0 +1,70 @@ +2023-01-14 12:03:02.263 24403-24598/com.mogo.launcher.f D/com.zhidao.socket--->: start socket +2023-01-14 12:03:02.754 24403-24403/com.mogo.launcher.f D/com.zhidao.socket--->: requestSocketAddress onGetSocketAddressSuccess 0:OK +2023-01-14 12:03:02.754 24403-24403/com.mogo.launcher.f D/com.zhidao.socket--->: internalStart-->host: 119.45.249.167 & port: 11000 +2023-01-14 12:03:02.773 24403-24403/com.mogo.launcher.f D/com.zhidao.socket--->: start connect 119.45.249.167:11000 +2023-01-14 12:03:02.773 24403-24403/com.mogo.launcher.f D/com.zhidao.socket--->: doConnection +2023-01-14 12:03:03.934 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: Client---connecting server succeeds +2023-01-14 12:03:03.937 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: call login +2023-01-14 12:03:03.938 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: checkNotNull(channel), channel is not null. +2023-01-14 12:03:03.938 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: socket connected is :false +2023-01-14 12:03:03.944 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: socket app id is dataCrawler, msg type is 531 +2023-01-14 12:03:03.960 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: login +2023-01-14 12:03:03.960 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: ---onConnectSuccess +2023-01-14 12:03:03.962 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: channel is active +2023-01-14 12:03:03.994 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: Client---client receive server---MogoConnsvrPacket{magicCode=28007, payloadOffset=11, packetLength=270, header=UnpooledSlicedByteBuf(ridx: 0, widx: 3, cap: 3/3, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 270, widx: 270, cap: 1024)), payload=UnpooledSlicedByteBuf(ridx: 0, widx: 259, cap: 259/259, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 270, widx: 270, cap: 1024))} +2023-01-14 12:03:03.995 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: receive server---msgTypemogoMsgTypeConnSvrAuthMidRsp +2023-01-14 12:03:04.001 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: call checkAuth +2023-01-14 12:03:04.001 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: checkNotNull(channel), channel is not null. +2023-01-14 12:03:04.001 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: socket connected is :false +2023-01-14 12:03:04.002 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: socket app id is dataCrawler, msg type is 533 +2023-01-14 12:03:04.004 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: checkAuth +2023-01-14 12:03:04.038 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: Client---client receive server---MogoConnsvrPacket{magicCode=28007, payloadOffset=11, packetLength=11, header=UnpooledSlicedByteBuf(ridx: 0, widx: 3, cap: 3/3, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 11, widx: 11, cap: 1024)), payload=UnpooledSlicedByteBuf(ridx: 0, widx: 0, cap: 0/0, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 11, widx: 11, cap: 1024))} +2023-01-14 12:03:04.038 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: receive server---msgTypemogoMsgTypeConnSvrAuthRsp +2023-01-14 12:03:04.040 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: Client authority check succeeded +2023-01-14 12:03:04.044 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: setExact(...) +2023-01-14 12:03:04.044 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: call send user info +2023-01-14 12:03:04.044 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: checkNotNull(channel), channel is not null. +2023-01-14 12:03:04.044 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: socket connected is :false +2023-01-14 12:03:04.048 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: socket app id is dataCrawler, msg type is 529 +2023-01-14 12:03:04.050 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: send user info +2023-01-14 12:03:04.082 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: Client---client receive server---MogoConnsvrPacket{magicCode=28007, payloadOffset=11, packetLength=13, header=UnpooledSlicedByteBuf(ridx: 0, widx: 3, cap: 3/3, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 13, widx: 13, cap: 512)), payload=UnpooledSlicedByteBuf(ridx: 0, widx: 2, cap: 2/2, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 13, widx: 13, cap: 512))} +2023-01-14 12:03:04.082 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: receive server---msgTypemogoMsgTypeConnSvrAgentInfoRsp +2023-01-14 12:03:04.084 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: Client receives server's user info response, result is true. +2023-01-14 12:04:44.088 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: channel is inactive, it depends on client's choice whether to reconnect or not. +2023-01-14 12:04:44.089 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: close allowReconnect=true +2023-01-14 12:04:44.089 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: channel is null +2023-01-14 12:04:44.090 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: heartbeat alarm is cancelled +2023-01-14 12:04:44.090 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: ---onConnectLost +2023-01-14 12:04:44.092 24403-24641/com.mogo.launcher.f D/com.zhidao.socket--->: retryGetAddress 1000 +2023-01-14 12:04:45.092 24403-24403/com.mogo.launcher.f D/com.zhidao.socket--->: get socket address +2023-01-14 12:04:50.321 24403-24403/com.mogo.launcher.f D/com.zhidao.socket--->: requestSocketAddress onGetSocketAddressSuccess 0:OK +2023-01-14 12:04:50.321 24403-24403/com.mogo.launcher.f D/com.zhidao.socket--->: internalStart-->host: 119.45.249.167 & port: 11000 +2023-01-14 12:04:50.324 24403-24403/com.mogo.launcher.f D/com.zhidao.socket--->: start connect 119.45.249.167:11000 +2023-01-14 12:04:50.324 24403-24403/com.mogo.launcher.f D/com.zhidao.socket--->: doConnection +2023-01-14 12:04:51.413 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: Client---connecting server succeeds +2023-01-14 12:04:51.414 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: call login +2023-01-14 12:04:51.416 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: checkNotNull(channel), channel is not null. +2023-01-14 12:04:51.416 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: socket connected is :false +2023-01-14 12:04:51.416 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: socket app id is dataCrawler, msg type is 531 +2023-01-14 12:04:51.419 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: login +2023-01-14 12:04:51.419 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: ---onConnectSuccess +2023-01-14 12:04:51.420 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: channel is active +2023-01-14 12:04:51.443 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: Client---client receive server---MogoConnsvrPacket{magicCode=28007, payloadOffset=11, packetLength=270, header=UnpooledSlicedByteBuf(ridx: 0, widx: 3, cap: 3/3, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 270, widx: 270, cap: 1024)), payload=UnpooledSlicedByteBuf(ridx: 0, widx: 259, cap: 259/259, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 270, widx: 270, cap: 1024))} +2023-01-14 12:04:51.443 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: receive server---msgTypemogoMsgTypeConnSvrAuthMidRsp +2023-01-14 12:04:51.445 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: call checkAuth +2023-01-14 12:04:51.445 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: checkNotNull(channel), channel is not null. +2023-01-14 12:04:51.445 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: socket connected is :false +2023-01-14 12:04:51.446 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: socket app id is dataCrawler, msg type is 533 +2023-01-14 12:04:51.451 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: checkAuth +2023-01-14 12:04:51.477 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: Client---client receive server---MogoConnsvrPacket{magicCode=28007, payloadOffset=11, packetLength=11, header=UnpooledSlicedByteBuf(ridx: 0, widx: 3, cap: 3/3, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 11, widx: 11, cap: 1024)), payload=UnpooledSlicedByteBuf(ridx: 0, widx: 0, cap: 0/0, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 11, widx: 11, cap: 1024))} +2023-01-14 12:04:51.477 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: receive server---msgTypemogoMsgTypeConnSvrAuthRsp +2023-01-14 12:04:51.477 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: Client authority check succeeded +2023-01-14 12:04:51.480 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: setExact(...) +2023-01-14 12:04:51.480 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: call send user info +2023-01-14 12:04:51.480 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: checkNotNull(channel), channel is not null. +2023-01-14 12:04:51.480 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: socket connected is :false +2023-01-14 12:04:51.481 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: socket app id is dataCrawler, msg type is 529 +2023-01-14 12:04:51.482 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: send user info +2023-01-14 12:04:51.509 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: Client---client receive server---MogoConnsvrPacket{magicCode=28007, payloadOffset=11, packetLength=13, header=UnpooledSlicedByteBuf(ridx: 0, widx: 3, cap: 3/3, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 13, widx: 13, cap: 512)), payload=UnpooledSlicedByteBuf(ridx: 0, widx: 2, cap: 2/2, unwrapped: UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf(ridx: 13, widx: 13, cap: 512))} +2023-01-14 12:04:51.509 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: receive server---msgTypemogoMsgTypeConnSvrAgentInfoRsp +2023-01-14 12:04:51.509 24403-24852/com.mogo.launcher.f D/com.zhidao.socket--->: Client receives server's user info response, result is true. diff --git a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingcarInfo.java b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingCarInfo.java similarity index 86% rename from core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingcarInfo.java rename to core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingCarInfo.java index 7c5aea6afe..b8f751ea86 100644 --- a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingcarInfo.java +++ b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingCarInfo.java @@ -2,14 +2,12 @@ package com.mogo.eagle.core.data.bindingcar; import com.mogo.eagle.core.data.BaseData; -import java.io.Serializable; - /** * @author lixiaopeng * @description 绑定的车辆信息 * @since: 3/16/22 */ -public class BindingcarInfo extends BaseData { +public class BindingCarInfo extends BaseData { public CarInfo data; public CarInfo getData() { diff --git a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingcarRequest.java b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingCarRequest.java similarity index 89% rename from core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingcarRequest.java rename to core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingCarRequest.java index be28cb5431..1a19d4f5dc 100644 --- a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingcarRequest.java +++ b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/BindingCarRequest.java @@ -5,12 +5,12 @@ package com.mogo.eagle.core.data.bindingcar; * @description * @since: 11/15/21 */ -public class BindingcarRequest { +public class BindingCarRequest { private String mac; private String sn; private int type; - public BindingcarRequest(String mac, String sn, int type) { + public BindingCarRequest(String mac, String sn, int type) { this.mac = mac; this.sn = sn; this.type = type; diff --git a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/IdInfo.java b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/IdInfo.java deleted file mode 100644 index 44ed8484a0..0000000000 --- a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/bindingcar/IdInfo.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.mogo.eagle.core.data.bindingcar; - -import java.io.Serializable; -import java.util.List; - -/** - * @author lixiaopeng - * @description - * @since 6/21/22 - */ -public class IdInfo implements Serializable { - private long timestamp; - private String date; - -} diff --git a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/AdvanceWarningBean.kt b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/AdvanceWarningBean.kt deleted file mode 100644 index f82ea8fbfe..0000000000 --- a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/AdvanceWarningBean.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.mogo.eagle.core.data.v2x - -import androidx.annotation.Keep - -/** - * 路口碰撞预警、盲区预警等通用Bean - */ -@Keep -data class AdvanceWarningBean( - var objectId: String,// 物体唯一标识 - var objectType: Int,// 物体类型 1-人 2-自行车 3-小轿车 4-摩托车 5-红绿灯 6-bus 8-truck 9-路边摄像头 - var status: Int,// 1.add 2.update 3.delete - var typeId: Int,// 首位大类标识 1预警 2规划 3拥堵 4事故 - var time: Long, - var level: Int,// 预警等级 - var threatLevel: Int,// 危险等级:0保留,1模型原始颜色,2通知--黄,3警告--红 - var position: Position, - var heading: Double, - var speed: Double, - var distance: Double, - var roadId: String,// 道路id - var laneId: String,// 车道id - var laneNum: Int,// 车道号:中心线编号为0, 中心线右侧编号为负数,3车道通行Road的车道编号,0,-1,-2,-3 - var gdLocusList: List,// 线性经纬度轨迹列表(高德) - var locusList: List// 轨迹列表(Wgs84坐标系) -) - -@Keep -data class Position(var lat: Double, var lon: Double) diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/model/DrawLineInfo.java b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/DrawLineInfo.java similarity index 96% rename from core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/model/DrawLineInfo.java rename to core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/DrawLineInfo.java index 8b4c5be3c3..0cfc163353 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/model/DrawLineInfo.java +++ b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/DrawLineInfo.java @@ -1,4 +1,4 @@ -package com.mogo.eagle.core.function.v2x.events.entity.model; +package com.mogo.eagle.core.data.v2x; import com.mogo.eagle.core.data.map.MogoLatLng; diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XAlarmEventRes.java b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/V2XAlarmEventRes.java similarity index 99% rename from core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XAlarmEventRes.java rename to core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/V2XAlarmEventRes.java index 1d242de50b..fd2eb39f19 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XAlarmEventRes.java +++ b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/V2XAlarmEventRes.java @@ -1,5 +1,5 @@ -package com.mogo.eagle.core.function.v2x.events.entity.net; +package com.mogo.eagle.core.data.v2x; import android.text.TextUtils; diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XOptimalRouteDataRes.java b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/V2XOptimalRouteDataRes.java similarity index 97% rename from core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XOptimalRouteDataRes.java rename to core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/V2XOptimalRouteDataRes.java index ac2a8a2dd0..3ff751bbf5 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/entity/net/V2XOptimalRouteDataRes.java +++ b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/v2x/V2XOptimalRouteDataRes.java @@ -1,4 +1,4 @@ -package com.mogo.eagle.core.function.v2x.events.entity.net; +package com.mogo.eagle.core.data.v2x; import com.mogo.eagle.core.data.map.MogoLatLng; diff --git a/gradle.properties b/gradle.properties index ea36cc491a..ec874f826f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -93,8 +93,8 @@ WEBSOCKET_VERSION=1.1.7 applicationId=com.mogo.launcer applicationName=IntelligentPilot # RoboBus司机端:2.5.1;RoboTaxi司机端:2.5.1;RoboTaxi乘客端:1.0.0 -versionCode=2130000 -versionName=2.13.0 +versionCode=3000000 +versionName=3.0.0 ################# 新架构模块Maven版本管理 ################# MOGO_CORE_FUNCTION_HMI_VERSION=0.0.58.10