Getting Started
설치 단계와 이 플러그인의 전체 마크다운 가이드를 포함한 설정 명령어를 복사하세요.
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-keep-awake`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/keep-awake/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
설치
설치AI-assisted 설치를 사용하여 플러그인을 설치할 수 있습니다. AI 도구에 Capgo 기능을 추가하려면 다음 명령어를 사용하세요:
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins그다음에 다음 명령어를 사용하세요:
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-keep-awake` plugin in my project.만약 Manual Setup을 선호한다면, 플러그인을 설치하기 위해 다음 명령어를 실행하고 아래의 플랫폼별 지침을 따르세요:
bun add @capgo/capacitor-keep-awakebunx cap syncImport
Import 섹션import { KeepAwake } from '@capgo/capacitor-keep-awake';API 개요
API 개요keepAwake
keepAwake화면을 어둡게 하지 않도록 막습니다.
import { KeepAwake } from '@capgo/capacitor-keep-awake';
await KeepAwake.keepAwake();console.log('Screen will stay awake');allowSleep
allowSleep화면을 어둡게 하거나 keep awake를 비활성화합니다.
import { KeepAwake } from '@capgo/capacitor-keep-awake';
await KeepAwake.allowSleep();console.log('Screen can now dim');isSupported
isSupported현재 플랫폼에서 keep awake 기능이 지원되는지 확인합니다.
import { KeepAwake } from '@capgo/capacitor-keep-awake';
const { isSupported } = await KeepAwake.isSupported();if (isSupported) { console.log('Keep awake is supported');}isKeptAwake
isKeptAwake현재 장치가 keep awake 상태인지 확인합니다.
import { KeepAwake } from '@capgo/capacitor-keep-awake';
const { isKeptAwake } = await KeepAwake.isKeptAwake();console.log('Is kept awake:', isKeptAwake);타입 참조
타입 참조 섹션IsSupportedResult
지원 여부 결과 섹션지원 여부 메서드의 결과입니다.
export interface IsSupportedResult { /** * Whether keep awake is supported on the current platform. * * @since 1.0.0 */ isSupported: boolean;}IsKeptAwakeResult
잠금 해제 여부 결과 섹션잠금 해제 여부 메서드의 결과입니다.
export interface IsKeptAwakeResult { /** * Whether the device is currently being kept awake. * * @since 1.0.0 */ isKeptAwake: boolean;}진실의 근원
진실의 근원 섹션이 페이지는 플러그인의 src/definitions.ts. API을 업스트림에서 변경하면 다시 싱크를 실행하세요.
시작하기에서 계속
시작하기에서 계속시작하기에서 계속 시작하기 API를 사용하여 대시보드와 API를 계획하고 운영하세요. API를 __CAPGO_KEEP_1__-keep-awake와 연결하세요. native 기능을 사용하기 위해 @capgo/capacitor-keep-awake native 기능을 사용하기 위해 @capgo/capacitor-keep-awake API 개요 API 개요 __CAPGO_KEEP_0__ __CAPGO_KEEP_0__ API 키 API 키의 구현 세부 정보에 대해 장치 장치의 구현 세부 정보에 대해