Skip to content

Commit b658901

Browse files
authored
Merge pull request #2077 from dennistang/change-sandbox-pod-default
Set default for using sandbox-pod to false
2 parents e12fe8c + 9e440dc commit b658901

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"TYPESCRIPT_COMPILER_OPTIONS": {},
77
"CI_LOGGER": false,
88
"ANDROID_DEBUG_UI_MAC": "Google Chrome",
9-
"USE_POD_SANDBOX": true,
9+
"USE_POD_SANDBOX": false,
1010
"DISABLE_HOOKS": false
1111
}

lib/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export class Configuration extends ConfigBase implements IConfiguration { // Use
88
TYPESCRIPT_COMPILER_OPTIONS = {};
99
USE_PROXY = false;
1010
ANDROID_DEBUG_UI: string = null;
11-
USE_POD_SANDBOX: boolean = true;
11+
USE_POD_SANDBOX: boolean = false;
1212
debugLivesync: boolean = false;
1313

1414
/*don't require logger and everything that has logger as dependency in config.js due to cyclic dependency*/

0 commit comments

Comments
 (0)