시작하기
이 플러그인의 설치 단계와 전체 마크다운 가이드를 포함한 설정 지시를 복사하세요.
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.
설치
설치 제목bun add @capgo/capacitor-keep-awakebunx cap sync수입
수입 제목import { KeepAwake } from '@capgo/capacitor-keep-awake';API Overview
API 개요keepAwake
__CAPGO_KEEP_0__화면을 어둡게 하지 않도록 장치로부터 방지합니다.
import { KeepAwake } from '@capgo/capacitor-keep-awake';
await KeepAwake.keepAwake();console.log('Screen will stay awake');allowSleep
__CAPGO_KEEP_0__화면을 어둡게 하도록 장치에 허용합니다 (keep awake 비활성화).
import { KeepAwake } from '@capgo/capacitor-keep-awake';
await KeepAwake.allowSleep();console.log('Screen can now dim');isSupported
__CAPGO_KEEP_0__현재 플랫폼에서 keep awake 기능이 지원되는지 확인합니다.
import { KeepAwake } from '@capgo/capacitor-keep-awake';
const { isSupported } = await KeepAwake.isSupported();if (isSupported) { console.log('Keep awake is supported');}isKeptAwake
__CAPGO_KEEP_0__장치가 현재 keep awake 상태인지 확인합니다.
import { KeepAwake } from '@capgo/capacitor-keep-awake';
const { isKeptAwake } = await KeepAwake.isKeptAwake();console.log('Is kept awake:', isKeptAwake);타입 참조
타입 참조 섹션IsSupportedResult
isSupported() 메서드의 결과isSupported() 메서드의 결과
export interface IsSupportedResult { /** * Whether keep awake is supported on the current platform. * * @since 1.0.0 */ isSupported: boolean;}IsKeptAwakeResult
isKeptAwake() 메서드의 결과isKeptAwake() 메서드의 결과
export interface IsKeptAwakeResult { /** * Whether the device is currently being kept awake. * * @since 1.0.0 */ isKeptAwake: boolean;}진실의 근원
진실의 근원 섹션이 페이지는 플러그인의 소스에서 생성되었습니다. src/definitions.ts. upstream API이 변경될 때 다시 동기화 하세요.