xref: /expo/docs/pages/submit/introduction.mdx (revision c615fa2e)
1---
2title: EAS Submit
3sidebar_title: Introduction
4hideTOC: true
5description: EAS Submit is a hosted service for uploading and submitting an app binary to the app stores.
6---
7
8import { CODE } from '~/ui/components/Text';
9import { BoxLink } from '~/ui/components/BoxLink';
10import { AppleAppStoreIcon, GoogleAppStoreIcon } from '@expo/styleguide';
11
12**EAS Submit** is a hosted service for uploading and submitting your app binaries to the app stores. Since it's a hosted service, you can submit your app to both stores as long as you can run EAS CLI on your machine. This means you can easily submit your iOS and Android apps from your macOS, Windows, or Linux workstation or from CI.
13
14### Get started
15
16<BoxLink
17  title="Submitting to the Apple App Store"
18  description="Learn how to submit an iOS/iPadOS app to the Apple App Store from any operating system."
19  href="/submit/ios"
20  Icon={AppleAppStoreIcon}
21/>
22
23<BoxLink
24  title="Submitting to the Google Play Store"
25  description="Learn how to submit an Android app to the Google Play Store."
26  href="/submit/android"
27  Icon={GoogleAppStoreIcon}
28/>
29
30<BoxLink
31  title={'Learn how to use EAS Submit with "expo build"'}
32  description="EAS Submit works with EAS Build projects by default, but it's easy to use EAS Submit to submit apps built with Classic Builds too."
33  href="/submit/classic-builds"
34/>
35
36<BoxLink
37  title="Configuration with eas.json"
38  description={
39    <>
40      See how to configure your submissions with <CODE>eas.json</CODE>.
41    </>
42  }
43  href="/submit/eas-json"
44/>
45