@@ -118,7 +118,7 @@ export class IOSDebugService extends DebugServiceBase implements IPlatformDebugS
118
118
waitForDebugger : true ,
119
119
captureStdin : true ,
120
120
args : args ,
121
- appId : debugData . applicationIdentifier . ios ,
121
+ appId : debugData . applicationIdentifier ,
122
122
skipInstall : true
123
123
} ) ;
124
124
@@ -127,8 +127,8 @@ export class IOSDebugService extends DebugServiceBase implements IPlatformDebugS
127
127
128
128
lineStream . on ( 'data' , ( line : NodeBuffer ) => {
129
129
const lineText = line . toString ( ) ;
130
- if ( lineText && _ . startsWith ( lineText , debugData . applicationIdentifier . ios ) ) {
131
- const pid = getPidFromiOSSimulatorLogs ( debugData . applicationIdentifier . ios , lineText ) ;
130
+ if ( lineText && _ . startsWith ( lineText , debugData . applicationIdentifier ) ) {
131
+ const pid = getPidFromiOSSimulatorLogs ( debugData . applicationIdentifier , lineText ) ;
132
132
if ( ! pid ) {
133
133
this . $logger . trace ( `Line ${ lineText } does not contain PID of the application ${ debugData . applicationIdentifier } .` ) ;
134
134
return ;
@@ -151,7 +151,7 @@ export class IOSDebugService extends DebugServiceBase implements IPlatformDebugS
151
151
private async emulatorStart ( debugData : IDebugData , debugOptions : IDebugOptions ) : Promise < string > {
152
152
const result = await this . wireDebuggerClient ( debugData , debugOptions ) ;
153
153
154
- const attachRequestMessage = this . $iOSNotification . getAttachRequest ( debugData . applicationIdentifier . ios ) ;
154
+ const attachRequestMessage = this . $iOSNotification . getAttachRequest ( debugData . applicationIdentifier ) ;
155
155
156
156
const iOSEmulator = < Mobile . IiOSSimulatorService > this . $iOSEmulatorServices ;
157
157
await iOSEmulator . postDarwinNotification ( attachRequestMessage ) ;
@@ -172,7 +172,7 @@ export class IOSDebugService extends DebugServiceBase implements IPlatformDebugS
172
172
} ;
173
173
174
174
const promisesResults = await Promise . all < any > ( [
175
- this . $platformService . startApplication ( this . platform , runOptions , debugData . applicationIdentifier . ios ) ,
175
+ this . $platformService . startApplication ( this . platform , runOptions , debugData . applicationIdentifier ) ,
176
176
this . debugBrkCore ( device , debugData , debugOptions )
177
177
] ) ;
178
178
@@ -184,7 +184,7 @@ export class IOSDebugService extends DebugServiceBase implements IPlatformDebugS
184
184
}
185
185
186
186
private async debugBrkCore ( device : Mobile . IiOSDevice , debugData : IDebugData , debugOptions : IDebugOptions ) : Promise < string > {
187
- await this . $iOSSocketRequestExecutor . executeLaunchRequest ( device . deviceInfo . identifier , AWAIT_NOTIFICATION_TIMEOUT_SECONDS , AWAIT_NOTIFICATION_TIMEOUT_SECONDS , debugData . applicationIdentifier . ios , debugOptions . debugBrk ) ;
187
+ await this . $iOSSocketRequestExecutor . executeLaunchRequest ( device . deviceInfo . identifier , AWAIT_NOTIFICATION_TIMEOUT_SECONDS , AWAIT_NOTIFICATION_TIMEOUT_SECONDS , debugData . applicationIdentifier , debugOptions . debugBrk ) ;
188
188
return this . wireDebuggerClient ( debugData , debugOptions , device ) ;
189
189
}
190
190
@@ -196,7 +196,7 @@ export class IOSDebugService extends DebugServiceBase implements IPlatformDebugS
196
196
}
197
197
198
198
private async deviceStartCore ( device : Mobile . IiOSDevice , debugData : IDebugData , debugOptions : IDebugOptions ) : Promise < string > {
199
- await this . $iOSSocketRequestExecutor . executeAttachRequest ( device , AWAIT_NOTIFICATION_TIMEOUT_SECONDS , debugData . applicationIdentifier . ios ) ;
199
+ await this . $iOSSocketRequestExecutor . executeAttachRequest ( device , AWAIT_NOTIFICATION_TIMEOUT_SECONDS , debugData . applicationIdentifier ) ;
200
200
return this . wireDebuggerClient ( debugData , debugOptions , device ) ;
201
201
}
202
202
0 commit comments