File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ class AndroidDebugService implements IDebugService {
2525 private $errors : IErrors ,
2626 private $opener : IOpener ,
2727 private $staticConfig : IStaticConfig ,
28- private $utils : IUtils ) { }
28+ private $utils : IUtils ,
29+ private $config : IConfiguration ) { }
2930
3031 private get platform ( ) { return "android" ; }
3132
@@ -169,7 +170,7 @@ class AndroidDebugService implements IDebugService {
169170 }
170171
171172 private openDebuggerClient ( url : string ) : void {
172- let chrome = this . $hostInfo . isDarwin ? "Google\ Chrome" : "chrome" ;
173+ let chrome = this . $hostInfo . isDarwin ? this . $config . ANDROID_DEBUG_UI_MAC : "chrome" ;
173174 let child = this . $opener . open ( url , chrome ) ;
174175 if ( ! child ) {
175176 this . $errors . fail ( `Unable to open ${ chrome } .` ) ;
You can’t perform that action at this time.
0 commit comments