src/domain/adb-wrapper/adb-messages.ts
/* istanbul ignore file */
export default {
DEVICES_IN_TCP_MODE: (port = 5555) => `Devices in TCP mode port: ${port}`,
NO_DEVICES_FOUND: () => 'No devices found or conected to reset',
ADB_DEVICE_NOT_FOUND: () => 'ADB Device not found in this machine',
ADB_INTERFACE_EXCEPTION_DEFAULT: () => 'Exception during ADB connection.',
ADB_INTERFACE_ERROR_DEFAULT: () => 'Error during ADB connection.'
}