인스턴트 앱 일반 인텐트
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
경고: Google Play 인스턴트를 더 이상 사용할 수 없습니다. 2025년 12월부터 Google Play를 통해 인스턴트 앱을 게시할 수 없으며 모든 Google Play 서비스 인스턴트 API가 더 이상 작동하지 않습니다. 사용자에게 더 이상 어떤 메커니즘을 통해서도 Play에서 인스턴트 앱이 제공되지 않습니다.
이 변경사항은 개발자 의견과 Google Play 인스턴트 도입 이후 생태계를 개선하기 위한 Google의 지속적인 투자를 기반으로 이루어집니다.
사용자 증가를 목표로 계속 최적화하려면 개발자가 딥 링크를 사용하여 사용자를 일반 앱 또는 게임으로 안내하는 것이 좋습니다. 이렇게 하면 관련이 있는 경우 사용자를 특정 여정이나 기능으로 리디렉션할 수 있습니다.
인스턴트 앱은 선택도구와 다른 시스템 정의 구성요소를 사용하여 작동됩니다.
인스턴트 앱의 기본 기능 세트를 보장하기 위해 Android CDD에서는 호환되는 기기에 있어야 하며 인텐트 핸들러를 통해 인스턴트 앱에 기능을 제공하는 핵심 앱 세트를 지정합니다. 인스턴트 앱은 이러한 인텐트를 통해 안전하게 기능을 요청할 수 있으며 인텐트가 제대로 처리되는 것을 확신할 수 있습니다.
아래 표에는 호환되는 Android 기기에서 인스턴트 앱의 일반적인 인텐트와 인스턴트 앱을 지원하는 기기에서 CTS 요구사항으로 소개된 API 수준이 나열되어 있습니다.
인텐트 또는 인텐트 전송 방법에 관한 자세한 내용은 문서를 참조하세요.
- FEATURE_CAMERA 또는 FEATURE_CAMERA_ANY를 지원하는 기기에서만 사용할 수 있습니다.
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 OpenJDK는 Oracle 및 Oracle 계열사의 상표 또는 등록 상표입니다.
최종 업데이트: 2025-07-27(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-07-27(UTC)"],[],[],null,["# Instant App Common Intents\n\n**Warning:** Google Play Instant will no longer be available. Starting December 2025,\nInstant Apps cannot be published through Google Play, and all\n[Google Play services Instant APIs](https://developers.google.com/android/reference/com/google/android/gms/instantapps/package-summary)\nwill no longer work. Users will no longer be served Instant Apps by Play using any\nmechanism.\n\nWe're making this change based on developer feedback and our continuous investments\nto improve the ecosystem since the introduction of Google Play Instant.\n\nTo continue optimizing for user growth, we encourage developers to refer users to\ntheir regular app or game, using [deeplinks](https://support.google.com/googleplay/android-developer/answer/12463044)\nto redirect them to specific journeys or features when relevant.\n\nInstant apps rely on pickers and other system-defined components to do work.\nTo ensure a basic set of functionality for Instant Apps,\nthe Android CDD specifies a set of core apps that must be present on\ncompatible devices and provide their functionality to Instant Apps\nthrough Intent handlers. Instant apps can safely request the functionality\nthrough these Intents and be assured that the Intent is handled properly.\n\nThe table below lists the common Intents for Instant Apps on\ncompatible Android devices, along with the API level in which they\nwere introduced as CTS requirements on devices that support Instant Apps.\nTo learn more about Intents or how to send them, see the\n[documentation](/guide/components/intents-filters).\n\n| Intent action | Intent category | Intent MIME type | API introduced (for Instant Apps) |\n|---------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------|------------------------------------------|-----------------------------------|\n| [android.intent.action.CHOOSER](/reference/android/content/Intent#CHOOSER) | none | none | Android 8 (API 26) |\n| [android.intent.action.PICK](/reference/android/content/Intent#ACTION_PICK) | none | vnd.android.cursor.dir/contact | Android 8 (API 26) |\n| [android.intent.action.PICK](/reference/android/content/Intent#ACTION_PICK) | none | vnd.android.cursor.dir/phone_v2 | Android 8 (API 26) |\n| [android.intent.action.PICK](/reference/android/content/Intent#ACTION_PICK) | none | vnd.android.cursor.dir/email_v2 | Android 8 (API 26) |\n| [android.intent.action.PICK](/reference/android/content/Intent#ACTION_PICK) | none | vnd.android.cursor.dir/postal-address_v2 | Android 8 (API 26) |\n| [android.intent.action.OPEN_DOCUMENT](/reference/android/content/Intent#ACTION_OPEN_DOCUMENT) | [CATEGORY_OPENABLE](/reference/android/content/Intent#CATEGORY_OPENABLE) | \\*/\\* | Android 8 (API 26) |\n| [android.intent.action.OPEN_DOCUMENT](/reference/android/content/Intent#ACTION_OPEN_DOCUMENT) | none | \\*/\\* | Android 8 (API 26) |\n| [android.intent.action.GET_CONTENT](/reference/android/content/Intent#ACTION_GET_CONTENT) | [CATEGORY_OPENABLE](/reference/android/content/Intent#CATEGORY_OPENABLE) | \\*/\\* | Android 8 (API 26) |\n| [android.intent.action.GET_CONTENT](/reference/android/content/Intent#ACTION_GET_CONTENT) | none | \\*/\\* | Android 8 (API 26) |\n| [android.intent.action.OPEN_DOCUMENT_TREE](/reference/android/content/Intent#ACTION_OPEN_DOCUMENT_TREE) | none | none | Android 8 (API 26) |\n| [android.intent.action.CREATE_DOCUMENT](/reference/android/content/Intent#ACTION_CREATE_DOCUMENT) | [CATEGORY_OPENABLE](/reference/android/content/Intent#CATEGORY_OPENABLE) | text/plain | Android 8 (API 26) |\n| [android.intent.action.CREATE_DOCUMENT](/reference/android/content/Intent#ACTION_CREATE_DOCUMENT) | none | text/plain | Android 8 (API 26) |\n| [android.media.action.IMAGE_CAPTURE](/reference/android/provider/MediaStore#ACTION_IMAGE_CAPTURE)^1^ | none | none | Android 8 (API 26) |\n| [android.media.action.VIDEO_CAPTURE](/reference/android/provider/MediaStore#ACTION_VIDEO_CAPTURE) ^1^ | none | none | Android 8 (API 26) |\n\n1. Available only on devices that support [FEATURE_CAMERA](/reference/android/content/pm/PackageManager#FEATURE_CAMERA) or [FEATURE_CAMERA_ANY](/reference/android/content/pm/PackageManager#FEATURE_CAMERA_ANY)"]]