xref: /expo/docs/pages/submit/introduction.mdx (revision dfd15ebd)
1---
2title: EAS Submit
3sidebar_title: Introduction
4hideTOC: true
5---
6
7import { InlineCode } from '~/components/base/code';
8import { BoxLink } from '~/ui/components/BoxLink';
9import { AppleAppStoreIcon, GoogleAppStoreIcon } from '@expo/styleguide';
10
11**EAS Submit** is a hosted service for uploading and submitting your app binaries to the Apple App Store and Google Play Store. 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.
12
13### Get started
14
15<BoxLink
16  title="Submitting to the Apple App Store"
17  description="Learn how to submit an iOS/iPadOS app to the Apple App Store from any operating system."
18  href="/submit/ios"
19  Icon={AppleAppStoreIcon}
20/>
21
22<BoxLink
23  title="Submitting to the Google Play Store"
24  description="Learn how to submit an Android app to the Google Play Store."
25  href="/submit/android"
26  Icon={GoogleAppStoreIcon}
27/>
28
29<BoxLink
30  title={'Learn how to use EAS Submit with "expo build"'}
31  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."
32  href="/submit/classic-builds"
33/>
34
35<BoxLink
36  title="Configuration with eas.json"
37  description={
38    <>
39      See how to configure your submissions with <InlineCode>eas.json</InlineCode>.
40    </>
41  }
42  href="/submit/eas-json"
43/>
44