package com.android.compatibility.common.deviceinfo;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class RolesUtil {
    public final static List<String> ROLE_NAMES = new ArrayList<>(Arrays.asList(new String[] {
        "android.app.role.ASSISTANT",
        "android.app.role.AUTOMOTIVE_NAVIGATION",
        "android.app.role.BROWSER",
        "android.app.role.CALL_REDIRECTION",
        "android.app.role.CALL_SCREENING",
        "android.app.role.COMPANION_DEVICE_APP_STREAMING",
        "android.app.role.COMPANION_DEVICE_COMPUTER",
        "android.app.role.COMPANION_DEVICE_WATCH",
        "android.app.role.DEVICE_POLICY_MANAGEMENT",
        "android.app.role.DIALER",
        "android.app.role.EMERGENCY",
        "android.app.role.HOME",
        "android.app.role.SMS",
        "android.app.role.SYSTEM_ACTIVITY_RECOGNIZER",
        "android.app.role.SYSTEM_AMBIENT_AUDIO_INTELLIGENCE",
        "android.app.role.SYSTEM_APP_PROTECTION_SERVICE",
        "android.app.role.SYSTEM_AUDIO_INTELLIGENCE",
        "android.app.role.SYSTEM_AUTOMOTIVE_CALENDAR_SYNC_MANAGER",
        "android.app.role.SYSTEM_AUTOMOTIVE_CLUSTER",
        "android.app.role.SYSTEM_AUTOMOTIVE_PROJECTION",
        "android.app.role.SYSTEM_COMPANION_DEVICE_PROVIDER",
        "android.app.role.SYSTEM_CONTACTS",
        "android.app.role.SYSTEM_DOCUMENT_MANAGER",
        "android.app.role.SYSTEM_GALLERY",
        "android.app.role.SYSTEM_NOTIFICATION_INTELLIGENCE",
        "android.app.role.SYSTEM_SETTINGS_INTELLIGENCE",
        "android.app.role.SYSTEM_SHELL",
        "android.app.role.SYSTEM_SPEECH_RECOGNIZER",
        "android.app.role.SYSTEM_SUPERVISION",
        "android.app.role.SYSTEM_TELEVISION_NOTIFICATION_HANDLER",
        "android.app.role.SYSTEM_TELEVISION_REMOTE_SERVICE",
        "android.app.role.SYSTEM_TEXT_INTELLIGENCE",
        "android.app.role.SYSTEM_UI",
        "android.app.role.SYSTEM_UI_INTELLIGENCE",
        "android.app.role.SYSTEM_VISUAL_INTELLIGENCE",
        "android.app.role.SYSTEM_WELLBEING",
        "android.app.role.SYSTEM_WIFI_COEX_MANAGER",
    }));
}
