Iniziare
Copiare un prompt di configurazione con i passaggi di installazione e la guida markdown completa per questo plugin.
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.
Installare
Sezione intitolata “Installare”Puoi utilizzare la nostra configurazione assistita da AI per installare il plugin. Aggiungi le Capgo competenze al tuo strumento AI utilizzando il seguente comando:
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-pluginsPoi utilizza la seguente richiesta:
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-keep-awake` plugin in my project.Se preferisci la configurazione manuale, installa il plugin eseguendo i seguenti comandi e segui le istruzioni specifiche per la piattaforma riportate di seguito:
bun add @capgo/capacitor-keep-awakebunx cap syncImporta
Sezione intitolata “Importa”import { KeepAwake } from '@capgo/capacitor-keep-awake';API Panoramica
Sezione intitolata “API Overview”keepAwake
Sezione intitolata “keepAwake”Prevenire che il dispositivo abbassi la luminosità dello schermo.
import { KeepAwake } from '@capgo/capacitor-keep-awake';
await KeepAwake.keepAwake();console.log('Screen will stay awake');allowSleep
Sezione intitolata “allowSleep”Consentire al dispositivo di abbassare la luminosità dello schermo (disabilitare il keep awake).
import { KeepAwake } from '@capgo/capacitor-keep-awake';
await KeepAwake.allowSleep();console.log('Screen can now dim');isSupported
Sezione intitolata “isSupported”Verificare se il keep awake è supportato sul dispositivo corrente.
import { KeepAwake } from '@capgo/capacitor-keep-awake';
const { isSupported } = await KeepAwake.isSupported();if (isSupported) { console.log('Keep awake is supported');}isKeptAwake
Sezione intitolata “isKeptAwake”Verificare se il dispositivo è attualmente tenuto sveglio.
import { KeepAwake } from '@capgo/capacitor-keep-awake';
const { isKeptAwake } = await KeepAwake.isKeptAwake();console.log('Is kept awake:', isKeptAwake);Riferimento di tipo
Sezione intitolata “Riferimento di tipo”IsSupportedResult
Sezione intitolata “IsSupportedResult”Risultato del metodo isSupported().
export interface IsSupportedResult { /** * Whether keep awake is supported on the current platform. * * @since 1.0.0 */ isSupported: boolean;}IsKeptAwakeResult
Sezione intitolata “IsKeptAwakeResult”Risultato del metodo isKeptAwake().
export interface IsKeptAwakeResult { /** * Whether the device is currently being kept awake. * * @since 1.0.0 */ isKeptAwake: boolean;}Fonte di verità
Sezione intitolata “Fonte di verità”Questa pagina è generata dal plugin’s src/definitions.ts. Risciacqua la sincronizzazione quando le informazioni pubbliche API cambiano in alto.
Continua da Iniziare
Sezione intitolata “Continua da Iniziare”Se stai utilizzando Iniziare per pianificare il dashboard e le operazioni API, connettilo con Utilizzando @capgo/capacitor-keep-awake per la capacità nativa in Utilizzando @capgo/capacitor-keep-awake API Overview per la dettaglio di implementazione in API Overview Introduzione per la dettaglio di implementazione in Introduzione, API Chiavi per la dettagliata implementazione in API Chiavi, e Dispositivi per la dettagliata implementazione in Dispositivi.