├── .eas └── build │ ├── android-build-with-credentials.yml │ ├── android-build-without-credentials.yml │ ├── build-and-maestro-test.yml │ ├── common │ └── functions.yml │ ├── custom-functions.yml │ ├── demo.yml │ ├── functions.yml │ ├── import.yml │ ├── ios-build-with-credentials.yml │ ├── ios-simulator-build.yml │ ├── my-custom-js-function │ ├── .babelrc │ ├── README.md │ ├── babel │ │ └── index.js │ ├── build │ │ └── index.js │ ├── package.json │ ├── src │ │ └── index.js │ └── yarn.lock │ ├── my-custom-ts-function │ ├── README.md │ ├── build │ │ └── index.js │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── yarn.lock │ ├── production-and-development-builds-together-android.yml │ ├── production-and-development-builds-together-ios.yml │ ├── send-slack-message.yml │ ├── test.yml │ ├── upload.yml │ └── vars.yml ├── .envrc ├── .gitignore ├── App.js ├── App.test.js ├── README.md ├── app.config.js ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── eas.json ├── fixtures └── app-debug.apk ├── maestro ├── expand_test.yaml └── home.yaml └── package.json /.eas/build/android-build-with-credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/android-build-with-credentials.yml -------------------------------------------------------------------------------- /.eas/build/android-build-without-credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/android-build-without-credentials.yml -------------------------------------------------------------------------------- /.eas/build/build-and-maestro-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/build-and-maestro-test.yml -------------------------------------------------------------------------------- /.eas/build/common/functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/common/functions.yml -------------------------------------------------------------------------------- /.eas/build/custom-functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/custom-functions.yml -------------------------------------------------------------------------------- /.eas/build/demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/demo.yml -------------------------------------------------------------------------------- /.eas/build/functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/functions.yml -------------------------------------------------------------------------------- /.eas/build/import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/import.yml -------------------------------------------------------------------------------- /.eas/build/ios-build-with-credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/ios-build-with-credentials.yml -------------------------------------------------------------------------------- /.eas/build/ios-simulator-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/ios-simulator-build.yml -------------------------------------------------------------------------------- /.eas/build/my-custom-js-function/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-js-function/.babelrc -------------------------------------------------------------------------------- /.eas/build/my-custom-js-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-js-function/README.md -------------------------------------------------------------------------------- /.eas/build/my-custom-js-function/babel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-js-function/babel/index.js -------------------------------------------------------------------------------- /.eas/build/my-custom-js-function/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-js-function/build/index.js -------------------------------------------------------------------------------- /.eas/build/my-custom-js-function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-js-function/package.json -------------------------------------------------------------------------------- /.eas/build/my-custom-js-function/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-js-function/src/index.js -------------------------------------------------------------------------------- /.eas/build/my-custom-js-function/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-js-function/yarn.lock -------------------------------------------------------------------------------- /.eas/build/my-custom-ts-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-ts-function/README.md -------------------------------------------------------------------------------- /.eas/build/my-custom-ts-function/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-ts-function/build/index.js -------------------------------------------------------------------------------- /.eas/build/my-custom-ts-function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-ts-function/package.json -------------------------------------------------------------------------------- /.eas/build/my-custom-ts-function/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-ts-function/src/index.ts -------------------------------------------------------------------------------- /.eas/build/my-custom-ts-function/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-ts-function/tsconfig.json -------------------------------------------------------------------------------- /.eas/build/my-custom-ts-function/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/my-custom-ts-function/yarn.lock -------------------------------------------------------------------------------- /.eas/build/production-and-development-builds-together-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/production-and-development-builds-together-android.yml -------------------------------------------------------------------------------- /.eas/build/production-and-development-builds-together-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/production-and-development-builds-together-ios.yml -------------------------------------------------------------------------------- /.eas/build/send-slack-message.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/send-slack-message.yml -------------------------------------------------------------------------------- /.eas/build/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/test.yml -------------------------------------------------------------------------------- /.eas/build/upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/upload.yml -------------------------------------------------------------------------------- /.eas/build/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.eas/build/vars.yml -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | source_env_if_exists .envrc.local 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/App.js -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/App.test.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/README.md -------------------------------------------------------------------------------- /app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/app.config.js -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/babel.config.js -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/eas.json -------------------------------------------------------------------------------- /fixtures/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/fixtures/app-debug.apk -------------------------------------------------------------------------------- /maestro/expand_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/maestro/expand_test.yaml -------------------------------------------------------------------------------- /maestro/home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/maestro/home.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/eas-custom-builds-example/HEAD/package.json --------------------------------------------------------------------------------