File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
packages/platform-ios/src Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -92,14 +92,18 @@ export const getApplePhysicalDevicePlatformInstance = async (
9292 await devicectl . startApp ( deviceId , config . bundleId ) ;
9393 } ,
9494 restartApp : async ( ) => {
95+ console . log ( 'restart app' ) ;
9596 await devicectl . stopApp ( deviceId , config . bundleId ) ;
97+ console . log ( 'after stop' ) ;
9698 await devicectl . startApp ( deviceId , config . bundleId ) ;
99+ console . log ( 'after start' ) ;
97100 } ,
98101 stopApp : async ( ) => {
99- await devicectl . stopApp ( deviceId , config . bundleId ) ;
102+ // await devicectl.stopApp(deviceId, config.bundleId);
100103 } ,
101104 dispose : async ( ) => {
102- await devicectl . stopApp ( deviceId , config . bundleId ) ;
105+ console . log ( 'dispose' ) ;
106+ // await devicectl.stopApp(deviceId, config.bundleId);
103107 } ,
104108 } ;
105109} ;
You can’t perform that action at this time.
0 commit comments