메뉴로 바로가기

Getting Started

GitHub

설치

설치

설치 플러그인을 설치하기 위해 우리의 AI-Assisted Setup을 사용할 수 있습니다. 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-awake
bunx cap sync
import { KeepAwake } from '@capgo/capacitor-keep-awake';

__CAPGO_KEEP_0__을 사용하지 않도록 장치의 화면을 어둡게 하기.

import { KeepAwake } from '@capgo/capacitor-keep-awake';
await KeepAwake.keepAwake();
console.log('Screen will stay awake');

allowSleep

allowSleep

__CAPGO_KEEP_0__을 사용하지 않도록 장치의 화면을 어둡게 하기 (장치 유지 활성화 비활성화).

import { KeepAwake } from '@capgo/capacitor-keep-awake';
await KeepAwake.allowSleep();
console.log('Screen can now dim');

isSupported

isSupported

__CAPGO_KEEP_0__이 현재 플랫폼에서 지원되는지 확인.

import { KeepAwake } from '@capgo/capacitor-keep-awake';
const { isSupported } = await KeepAwake.isSupported();
if (isSupported) {
console.log('Keep awake is supported');
}

isKeptAwake

isKeptAwake

__CAPGO_KEEP_0__이 현재 장치에서 장치 유지 기능이 활성화되어 있는지 확인.

import { KeepAwake } from '@capgo/capacitor-keep-awake';
const { isKeptAwake } = await KeepAwake.isKeptAwake();
console.log('Is kept awake:', isKeptAwake);

Type Reference

타입 참조

IsSupportedResult

지원 여부 결과

isSupported() 메서드의 결과입니다.

export interface IsSupportedResult {
/**
* Whether keep awake is supported on the current platform.
*
* @since 1.0.0
*/
isSupported: boolean;
}

isKeptAwake() 메서드의 결과입니다.

export interface IsKeptAwakeResult {
/**
* Whether the device is currently being kept awake.
*
* @since 1.0.0
*/
isKeptAwake: boolean;
}

진실의 근원

진실의 근원

이 페이지는 플러그인의 src/definitions.ts공개된 API이 업스트림에서 변경될 때 다시 싱크를 실행하세요.

Getting Started에서 계속 진행하세요

Getting Started에서 시작된 다음 계속하기

__CAPGO_KEEP_0__을 사용하는 경우 Getting Started API과 API 연동을 위해 @capgo/capacitor-keep-awake를 사용하세요. @capgo/capacitor-keep-awake의 네이티브 기능을 위해 API 개요 API 개요의 구현 세부 정보를 위해 소개 소개의 구현 세부 정보를 위해 API 키 API 키의 구현 세부 정보를 위해 기기 기기 구현 세부 사항에 대한 정보.