INNER CODE UNIT · Python

AppArchitecture

efroemling/ballistica · tools/bacommon/app.py:111

class AppArchitecture(Enum):
    """Processor architecture an app can be running on."""

    UNKNOWN = 'unknown'
    ARM = 'arm'
    ARM64 = 'arm64'
    X86 = 'x86'
    X86_64 = 'x86_64'


class AppPlatform(Enum):
    """Overall platform a build can target.

    Each distinct flavor of an app has a unique combination of
    AppPlatform and AppVariant. Generally platform describes a set of
    hardware, while variant describes a destination or purpose for the
    build.
    """

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…