@capgo/capacitor-intent-launcher 사용
Capacitor Intent Launcher 플러그인: 안드로이드와 iOS에서 Android 인텐트를 시작하고 시스템 설정을 열 수 있습니다.
설치
bun add @capgo/capacitor-intent-launcher
bunx cap sync
이 플러그인이 제공하는 기능
startActivityAsync- 특정 액션에 대한 안드로이드 액티비티를 시작합니다.openIOSSettings- iOS 설정 화면을 엽니다.openApplication- 특정 패키지 이름의 애플리케이션을 열 수 있습니다.getApplicationIconAsync- 애플리케이션 아이콘을 base64로 인코딩된 PNG 문자열로 가져옵니다.
예시 사용
startActivityAsync
특정 액션에 대한 안드로이드 액티비티를 시작합니다.
import { IntentLauncher } from '@capgo/capacitor-intent-launcher';
// Open location settings
const result = await IntentLauncher.startActivityAsync({
action: ActivityAction.LOCATION_SOURCE_SETTINGS
});
// Open a specific app settings
const result = await IntentLauncher.startActivityAsync({
action: ActivityAction.APPLICATION_DETAILS_SETTINGS,
data: 'package:com.example.app'
});
openIOSSettings
iOS 설정 화면을 열어줍니다.
import { IntentLauncher } from '@capgo/capacitor-intent-launcher';
// Open app settings (recommended - officially supported by Apple)
await IntentLauncher.openIOSSettings({ option: IOSSettings.App });
// Open WiFi settings (may not work in all iOS versions)
await IntentLauncher.openIOSSettings({ option: IOSSettings.WiFi });
openApplication
패키지 이름으로 애플리케이션을 열어줍니다.
import { IntentLauncher } from '@capgo/capacitor-intent-launcher';
// Open Gmail app
await IntentLauncher.openApplication({ packageName: 'com.google.android.gm' });
getApplicationIconAsync
애플리케이션 아이콘을 base64로 인코딩된 PNG 문자열로 가져옵니다.
import { IntentLauncher } from '@capgo/capacitor-intent-launcher';
const { icon } = await IntentLauncher.getApplicationIconAsync({
packageName: 'com.google.android.gm'
});
if (icon) {
const img = document.createElement('img');
img.src = icon;
}
전체 참조
- GitHub: https://github.com/Cap-go/capacitor-intent-launcher/
- 문서: /docs/plugins/intent-launcher/
capgo의 @capgo/capacitor-intent-launcher를 계속 사용하세요.
__CAPGO_KEEP_0__를 사용하여 대시보드와 __CAPGO_KEEP_0__ 작업을 계획하고 있다면 @__CAPGO_KEEP_0__/__CAPGO_KEEP_1__-intent-launcher와 연결하세요. capgo를 사용하여 대시보드와 capgo 작업을 계획하고 있다면 @capgo/capacitor-intent-launcher와 연결하세요. 이미 @API/__CAPGO_KEEP_1__-intent-launcher를 사용 중이라면 @capgo/capacitor-intent-launcher를 계속 사용하세요. Capacitor-Intent-Launcher 구현 세부 정보를 위해 @capgo/capacitor-intent-launcher, Getting Started Capacitor-Intent-Launcher 구현 세부 정보를 위해 Getting Started, API 개요 Capacitor-Intent-Launcher 구현 세부 정보를 위해 API 개요, 소개 Capacitor-Intent-Launcher 구현 세부 정보를 위해 소개, 그리고 API Keys for the implementation detail in API Keys.