File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ const iosBundleId =
3232 process . env . HARNESS_IOS_BUNDLE_ID ?? 'com.margelo.nitro.camera.example.simple'
3333const iosSimulatorName = process . env . HARNESS_IOS_SIMULATOR ?? 'iPhone 16 Pro'
3434const iosSimulatorVersion = process . env . HARNESS_IOS_SIMULATOR_VERSION ?? '18.5'
35- const iosPhysicalDeviceName = process . env . HARNESS_IOS_DEVICE_NAME ?? 'iPhone'
35+ const iosPhysicalDeviceIdentifier =
36+ process . env . HARNESS_IOS_DEVICE_ID ?. trim ( ) || 'iPhone'
3637const iosMetroHostInput = process . env . HARNESS_IOS_METRO_HOST ?. trim ( ) ?? ''
3738const iosMetroPort = process . env . HARNESS_IOS_METRO_PORT ?? '8081'
3839
@@ -88,11 +89,11 @@ const androidDevice = useEmulator
8889 : physicalAndroidDevice ( androidPhysicalManufacturer , androidPhysicalModel )
8990
9091const iosDevice = isCI
91- ? applePhysicalDevice ( iosPhysicalDeviceName , {
92- codeSign : {
93- teamId : 'LC6XSNN25D'
94- }
95- } )
92+ ? applePhysicalDevice ( iosPhysicalDeviceIdentifier , {
93+ codeSign : {
94+ teamId : 'TheTeamHereDoesntMatterOnCiButWeHaveToPassItStillIthink' ,
95+ } ,
96+ } )
9697 : appleSimulator ( iosSimulatorName , iosSimulatorVersion )
9798
9899const config = {
You can’t perform that action at this time.
0 commit comments