diff --git a/.circleci/config.yml b/.circleci/config.yml index ac3cbfaa9a0..dd019ade62f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -64,7 +64,7 @@ jobs: - run: name: Check for missing index.html (build errors) command: | - if [ ! -f build/react-native/index.html ]; then + if [ ! -f build/index.html ]; then exit 1; fi # -------------------------------------------------- @@ -98,6 +98,7 @@ jobs: git config --global user.name "Website Deployment Script" echo "machine github.com login reactjs-bot password $GITHUB_TOKEN" > ~/.netrc echo "Deploying website..." + export NODE_OPTIONS=--max_old_space_size=4096 GIT_USER=reactjs-bot CIRCLE_PROJECT_REPONAME=react-native yarn run publish-gh-pages else echo "Skipping deploy." diff --git a/.gitignore b/.gitignore index 5d4acae64f8..e4401005a3f 100644 --- a/.gitignore +++ b/.gitignore @@ -13,5 +13,6 @@ website/i18n/* !website/i18n/en.json .nvmrc +.docusaurus website/scripts/sync-api-docs/generatedComponentApiDocs.js website/scripts/sync-api-docs/extracted.json diff --git a/docs/_getting-started-linux-android.md b/docs/_getting-started-linux-android.md new file mode 100644 index 00000000000..0386f23aef8 --- /dev/null +++ b/docs/_getting-started-linux-android.md @@ -0,0 +1,177 @@ +## Installing dependencies + +You will need Node, the React Native command line interface, a JDK, and Android Studio. + +While you can use any editor of your choice to develop your app, you will need to install Android Studio in order to set up the necessary tooling to build your React Native app for Android. + +