1 /* 2 * Copyright (C) 2025 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package com.google.android.angleallowlists.vts; 17 18 import java.util.HashMap; 19 import java.util.Map; 20 21 // allowlist apps are defined per GMS requirement: b/369880861 22 public class AngleAllowlist { 23 public static final Map<String, String> apps = new HashMap<>(); 24 static { 25 apps.put("com.dreamgames.royalmatch", "royal_match"); 26 apps.put("com.dts.freefiremax", "free_fire_max"); 27 apps.put("com.dxx.firenow", "survivor_io"); 28 apps.put("com.gramgames.mergedragons", "merge_dragons"); 29 apps.put("com.ludo.king", "ludo_king"); 30 apps.put("com.mojang.minecraftpe", "minecraft_bedrock"); 31 apps.put("com.my.defense", "rush_royale"); 32 apps.put("com.nintendo.zaka", "mario_kart_tour"); 33 apps.put("com.os.airforce", "1945_air_force"); 34 apps.put("com.playrix.fishdomdd.gplay", "fishdom"); 35 apps.put("io.teslatech.callbreak", "callbreak"); 36 apps.put("jp.konami.prospia", "professional_baseball_spirits"); 37 apps.put("net.peakgames.toonblast", "toon_blast"); 38 } 39 } 40