Skip to content

Commit

Permalink
Merge pull request #1469 from flexn-io/fix_disabled_plugin_android
Browse files Browse the repository at this point in the history
add RNV_SKIP_LINKING env to androidRunner
  • Loading branch information
pavjacko committed Mar 15, 2024
2 parents f9d335d + 52f6abb commit 10cd91b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/sdk-react-native/src/androidRunner.ts
Expand Up @@ -74,6 +74,7 @@ export const packageReactNativeAndroid = async () => {
...CoreEnvVars.RNV_EXTENSIONS(),
...EnvVars.RNV_REACT_NATIVE_PATH(),
...EnvVars.RNV_APP_ID(),
...EnvVars.RNV_SKIP_LINKING(),
},
});

Expand Down Expand Up @@ -110,6 +111,7 @@ export const runReactNativeAndroid = async (device: { udid?: string } | undefine
...EnvVars.RCT_METRO_PORT(),
...EnvVars.RNV_REACT_NATIVE_PATH(),
...EnvVars.RNV_APP_ID(),
...EnvVars.RNV_SKIP_LINKING(),
},
cwd: appFolder,
//This is required to make rn cli logs visible in rnv executed terminal
Expand Down Expand Up @@ -141,6 +143,7 @@ export const buildReactNativeAndroid = async () => {
...CoreEnvVars.RNV_EXTENSIONS(),
...EnvVars.RNV_REACT_NATIVE_PATH(),
...EnvVars.RNV_APP_ID(),
...EnvVars.RNV_SKIP_LINKING(),
},
});

Expand Down

0 comments on commit 10cd91b

Please sign in to comment.