1--- 2title: Next steps 3description: 4--- 5 6import { BoxLink } from '~/ui/components/BoxLink'; 7import { BuildIcon, BookOpen02Icon } from '@expo/styleguide-icons'; 8 9The following resources are useful when learning more about development builds or EAS Build: 10 11<BoxLink 12 title="Configuring EAS Build with eas.json" 13 description="Learn how a project using EAS services is configured with eas.json." 14 href="/build/eas-json/" 15 Icon={BuildIcon} 16/> 17 18<BoxLink 19 title="Environment variables" 20 description="Learn about different ways to use environment variables in an Expo project." 21 href="/guides/environment-variables/" 22 Icon={BookOpen02Icon} 23/> 24 25<BoxLink 26 title="Android build process" 27 description="Learn how an Android project is built on EAS Build." 28 href="/build-reference/android-builds/" 29 Icon={BuildIcon} 30/> 31 32<BoxLink 33 title="iOS build process" 34 description="Learn how an iOS project is built on EAS Build." 35 href="/build-reference/ios-builds/" 36 Icon={BuildIcon} 37/> 38 39<BoxLink 40 title="Set up EAS Build with a monorepo " 41 description="Learn how to set up EAS Build with a monorepo." 42 href="/build-reference/build-with-monorepos/" 43 Icon={BuildIcon} 44/> 45