Skip to content

Commit a37727a

Browse files
authored
Phenotype: New configuration parameters (#2880)
1 parent 5cc4cd9 commit a37727a

1 file changed

Lines changed: 31 additions & 1 deletion

File tree

play-services-core/src/main/kotlin/org/microg/gms/phenotype/PhenotypeService.kt

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,37 @@ class PhenotypeService : BaseService(TAG, GmsService.PHENOTYPE) {
3131
private val CONFIGURATION_OPTIONS = mapOf(
3232
"com.google.android.apps.search.assistant.mobile.user#com.google.android.googlequicksearchbox" to arrayOf(
3333
// Enable Gemini voice input for all devices
34-
Flag("45477527", true, 0)
34+
Flag("45477527", true, 0),
35+
// Enable Gemini AI chat auto-reply
36+
Flag("45628155", false, 0),
37+
Flag("45627469", true, 0),
38+
Flag("45627893", byteArrayOf(0x0A, 0x01, 0x2A), 0),
39+
Flag("45622089", true, 0),
40+
// Enable Gemini optional models
41+
Flag("45681308", true, 0),
42+
Flag("45688209", true, 0),
43+
Flag("45682144", true, 0),
44+
// Enable Gemini sharing and video features
45+
Flag("45638955", true, 0),
46+
Flag("45621205", true, 0),
47+
Flag("45616812", true, 0)
48+
),
49+
"com.google.android.inputmethod.latin#com.google.android.inputmethod.latin" to arrayOf(
50+
// Enable Gboard supports voice input in other languages
51+
Flag("enable_voice_in_chinese", true, 0),
52+
Flag("enable_voice_in_japanese", true, 0),
53+
Flag("enable_voice_in_korean", true, 0),
54+
),
55+
"com.google.android.libraries.communications.conference.device#com.google.android.apps.tachyon" to arrayOf(
56+
// Enable Google Meet calling using mobile phone number
57+
Flag("45428442", true, 0),
58+
Flag("45620216", true, 0),
59+
// Start a Video Call
60+
Flag("45692241", true, 0),
61+
Flag("45680977", true, 0),
62+
Flag("45620220", true, 0),
63+
// Show Audio Call Button
64+
Flag("45613814", true, 0),
3565
)
3666
)
3767

0 commit comments

Comments
 (0)