gbox-sdk
    Preparing search index...

    Configuration for a Android box instance

    interface Config {
        deviceType?: "virtual" | "physical";
        envs?: { [key: string]: string };
        expiresIn?: string;
        labels?: { [key: string]: string };
    }
    Index

    Properties

    deviceType?: "virtual" | "physical"

    Device type - virtual or physical Android device

    envs?: { [key: string]: string }

    Environment variables for the box. These variables will be available in all operations including command execution, code running, and other box behaviors

    expiresIn?: string

    The box will be alive for the given duration

    Supported time units: ms (milliseconds), s (seconds), m (minutes), h (hours) Example formats: "500ms", "30s", "5m", "1h" Default: 60m

    labels?: { [key: string]: string }

    Key-value pairs of labels for the box. Labels are used to add custom metadata to help identify, categorize, and manage boxes. Common use cases include project names, environments, teams, applications, or any other organizational tags that help you organize and filter your boxes.