xref: /expo/docs/pages/submit/introduction.mdx (revision afd513e4)
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, Settings01Icon } from '@expo/styleguide-icons';
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 Android and iOS apps from your macOS, Windows, or Linux workstation or from CI.
13
14### Get started
15
16<BoxLink
17  title="Configuration with eas.json"
18  description={
19    <>
20      See how to configure your submissions with <CODE>eas.json</CODE>.
21    </>
22  }
23  href="/submit/eas-json"
24  Icon={Settings01Icon}
25/>
26
27<BoxLink
28  title="Submit to the Google Play Store"
29  description="Learn how to submit an Android app to the Google Play Store."
30  href="/submit/android"
31  Icon={GoogleAppStoreIcon}
32/>
33
34<BoxLink
35  title="Submit to the Apple App Store"
36  description="Learn how to submit an iOS/iPadOS app to the Apple App Store from any operating system."
37  href="/submit/ios"
38  Icon={AppleAppStoreIcon}
39/>
40