Skip to content

Commit cacbceb

Browse files
committed
fix: try another port
1 parent 14a8bca commit cacbceb

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.circleci/config.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -387,9 +387,9 @@ commands:
387387
adb shell ls -l /data/local/tmp/certs/$HASH.0
388388
389389
# Configure proxy settings
390-
adb shell settings put global http_proxy "localhost:8080"
390+
adb shell settings put global http_proxy "localhost:8082"
391391
adb shell settings put global global_http_proxy_host "localhost"
392-
adb shell settings put global global_http_proxy_port 8080
392+
adb shell settings put global global_http_proxy_port 8082
393393
394394
# Verify proxy settings
395395
echo "Verifying proxy settings..."
@@ -401,7 +401,7 @@ commands:
401401
name: Start MITM Proxy with Verbose Logging
402402
background: true
403403
command: |
404-
mitmdump -p 8080 --set block_global=false --verbose &
404+
mitmdump -p 8082 --set block_global=false --verbose &
405405
sleep 5
406406
407407
# Verify proxy is running
@@ -417,8 +417,6 @@ commands:
417417
- run:
418418
name: Install iOS Simulator
419419
command: |
420-
xcversion simulators --install='iOS 15.5'
421-
422420
# Create simulator
423421
UDID=$(xcrun simctl create "iPhone 11 Pro Max" com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max com.apple.CoreSimulator.SimRuntime.iOS-15-5)
424422
@@ -864,7 +862,7 @@ jobs:
864862
name: Start MITM Proxy
865863
background: true
866864
command: |
867-
mitmdump -p 8080 --set block_global=false &
865+
mitmdump -p 8082 --set block_global=false &
868866
sleep 5
869867
870868
# Run tests

examples/hybrid/appiumTests/e2e-config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ const android = {
1313
'appium:automationName': 'UiAutomator2',
1414
'appium:proxy': {
1515
proxyType: 'manual',
16-
httpProxy: 'localhost:8080',
17-
sslProxy: 'localhost:8080',
16+
httpProxy: 'localhost:8082',
17+
sslProxy: 'localhost:8082',
1818
},
1919
};
2020

0 commit comments

Comments
 (0)