> ## Documentation Index
> Fetch the complete documentation index at: https://docs.replit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# App Store 스크린샷 생성하기

> Replit의 내장 이미지 생성 기능을 사용해 PixelGames의 스토어 스크린샷을 만들어보세요.

export const AiPrompt = ({children}) => {
  return <CodeBlock className="relative block font-sans whitespace-pre-wrap break-words">
      <div className="pr-7">
        {children}
      </div>
    </CodeBlock>;
};

export const appStoreScreenshotsPrompt = "Create 5 beautiful, engaging App Store screenshots at 1284x2778 px that make users want to download the app.";
export const featureGraphicPrompt = "Generate a 1024x500 feature graphic for PixelGames' Google Play listing, using the same Game Boy theme as the app icon.";

두 스토어 모두 스크린샷을 요구하며, Google Play는 피처 그래픽도 필요합니다. 이것들이 없으면
제출을 받아들이지 않습니다. Replit은 PixelGames의 실제 스크린샷을 바로 세련된 마케팅 이미지로
변환할 수 있습니다.

## 각 스토어가 필요로 하는 것

* **App Store:** 6.5인치 iPhone 크기인 **1284×2778 px** 스크린샷 최소 1장.
* **Google Play:** 폰 스크린샷 최소 2장과, 리스팅 상단에 표시되는 1024×500 피처 그래픽.

## 마케팅 스크린샷 생성하기

<AiPrompt>
  {appStoreScreenshotsPrompt}
</AiPrompt>

<Frame caption="Agent가 PixelGames를 위해 생성한 다섯 장의 App Store 마케팅 스크린샷. 각각 고유한 헤드라인과 색상 테마를 가지고 있습니다.">
  <img src="https://mintcdn.com/replit/WuaQIOfW5oxRlxex/images/pixelgames/mobile/appstore-screenshot.png?fit=max&auto=format&n=WuaQIOfW5oxRlxex&q=85&s=ef52c550538e76ec81d8dd6ad2a1f8f6" alt="헤드라인과 폰 프레임이 포함된 다섯 장의 생성된 PixelGames App Store 마케팅 스크린샷" data-path="images/pixelgames/mobile/appstore-screenshot.png" width="1917" height="990" data-path="images/pixelgames/mobile/appstore-screenshot.png" />
</Frame>

## 피처 그래픽 생성하기(Google Play)

<AiPrompt>
  {featureGraphicPrompt}
</AiPrompt>

## 다음 단계

<CardGroup cols={2}>
  <Card title="앱 아이콘 생성하기" icon="image" href="/ko/build/mobile-app-icon">
    각 스토어가 필요로 하는 아이콘을 만들어보세요.
  </Card>

  <Card title="Google Play에 제출하기" icon="android" href="/build/mobile-publish-android">
    이 에셋들을 Play Console 리스팅에서 사용해보세요.
  </Card>
</CardGroup>

## 관련 항목

* [폰에서 프리뷰 및 테스트하기](/build/mobile-preview-testing)
