-
-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added logcat feature #111
added logcat feature #111
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for opening the PR! I've left few comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Few minor things and we are good to merge
enum TerminalType: String { | ||
case terminal = "Terminal" | ||
case iterm = "iTerm" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's name this just Terminal
and move it to TerminalApps.swift
so its in one place
static func launchTerminal(terminal: TerminalApp, deviceId: String) throws | ||
} | ||
|
||
class TerminalService: TerminalServiceProtocol { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's leave tests for this module for now - I will add them later
Thanks for contributing @gokul1099! |
Added logcat feature. Now user can view logcat for every single android device. closes #106