1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
// WARNING: This file was autogenerated by jni-bindgen. Any changes to this file may be lost!!!
#[cfg(any(feature = "all", feature = "android-telephony-CarrierConfigManager"))]
__jni_bindgen! {
/// public class [CarrierConfigManager](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html)
///
/// Required feature: "android-telephony-CarrierConfigManager"
public class CarrierConfigManager ("android/telephony/CarrierConfigManager") extends crate::java::lang::Object {
/// [getConfigForSubId](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#getConfigForSubId(int))
///
/// Required features: "android-os-PersistableBundle"
#[cfg(any(feature = "all", all(feature = "android-os-PersistableBundle")))]
pub fn getConfigForSubId<'env>(&'env self, arg0: i32) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::os::PersistableBundle>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/telephony/CarrierConfigManager", java.flags == PUBLIC, .name == "getConfigForSubId", .descriptor == "(I)Landroid/os/PersistableBundle;"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/telephony/CarrierConfigManager\0", "getConfigForSubId\0", "(I)Landroid/os/PersistableBundle;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getConfig](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#getConfig())
///
/// Required features: "android-os-PersistableBundle"
#[cfg(any(feature = "all", all(feature = "android-os-PersistableBundle")))]
pub fn getConfig<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::os::PersistableBundle>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/telephony/CarrierConfigManager", java.flags == PUBLIC, .name == "getConfig", .descriptor == "()Landroid/os/PersistableBundle;"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/telephony/CarrierConfigManager\0", "getConfig\0", "()Landroid/os/PersistableBundle;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [notifyConfigChangedForSubId](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#notifyConfigChangedForSubId(int))
pub fn notifyConfigChangedForSubId<'env>(&'env self, arg0: i32) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/telephony/CarrierConfigManager", java.flags == PUBLIC, .name == "notifyConfigChangedForSubId", .descriptor == "(I)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/telephony/CarrierConfigManager\0", "notifyConfigChangedForSubId\0", "(I)V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// public static final [ACTION_CARRIER_CONFIG_CHANGED](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#ACTION_CARRIER_CONFIG_CHANGED)
pub const ACTION_CARRIER_CONFIG_CHANGED : &'static str = "android.telephony.action.CARRIER_CONFIG_CHANGED";
/// public static final [DATA_CYCLE_THRESHOLD_DISABLED](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#DATA_CYCLE_THRESHOLD_DISABLED)
pub const DATA_CYCLE_THRESHOLD_DISABLED : i32 = -2;
/// public static final [KEY_ADDITIONAL_CALL_SETTING_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ADDITIONAL_CALL_SETTING_BOOL)
pub const KEY_ADDITIONAL_CALL_SETTING_BOOL : &'static str = "additional_call_setting_bool";
/// public static final [KEY_ALLOW_ADDING_APNS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ALLOW_ADDING_APNS_BOOL)
pub const KEY_ALLOW_ADDING_APNS_BOOL : &'static str = "allow_adding_apns_bool";
/// public static final [KEY_ALLOW_ADD_CALL_DURING_VIDEO_CALL_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ALLOW_ADD_CALL_DURING_VIDEO_CALL_BOOL)
pub const KEY_ALLOW_ADD_CALL_DURING_VIDEO_CALL_BOOL : &'static str = "allow_add_call_during_video_call";
/// public static final [KEY_ALLOW_EMERGENCY_NUMBERS_IN_CALL_LOG_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ALLOW_EMERGENCY_NUMBERS_IN_CALL_LOG_BOOL)
pub const KEY_ALLOW_EMERGENCY_NUMBERS_IN_CALL_LOG_BOOL : &'static str = "allow_emergency_numbers_in_call_log_bool";
/// public static final [KEY_ALLOW_EMERGENCY_VIDEO_CALLS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ALLOW_EMERGENCY_VIDEO_CALLS_BOOL)
pub const KEY_ALLOW_EMERGENCY_VIDEO_CALLS_BOOL : &'static str = "allow_emergency_video_calls_bool";
/// public static final [KEY_ALLOW_LOCAL_DTMF_TONES_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ALLOW_LOCAL_DTMF_TONES_BOOL)
pub const KEY_ALLOW_LOCAL_DTMF_TONES_BOOL : &'static str = "allow_local_dtmf_tones_bool";
/// public static final [KEY_ALLOW_MERGE_WIFI_CALLS_WHEN_VOWIFI_OFF_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ALLOW_MERGE_WIFI_CALLS_WHEN_VOWIFI_OFF_BOOL)
pub const KEY_ALLOW_MERGE_WIFI_CALLS_WHEN_VOWIFI_OFF_BOOL : &'static str = "allow_merge_wifi_calls_when_vowifi_off_bool";
/// public static final [KEY_ALLOW_NON_EMERGENCY_CALLS_IN_ECM_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ALLOW_NON_EMERGENCY_CALLS_IN_ECM_BOOL)
pub const KEY_ALLOW_NON_EMERGENCY_CALLS_IN_ECM_BOOL : &'static str = "allow_non_emergency_calls_in_ecm_bool";
/// public static final [KEY_ALWAYS_SHOW_EMERGENCY_ALERT_ONOFF_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ALWAYS_SHOW_EMERGENCY_ALERT_ONOFF_BOOL)
pub const KEY_ALWAYS_SHOW_EMERGENCY_ALERT_ONOFF_BOOL : &'static str = "always_show_emergency_alert_onoff_bool";
/// public static final [KEY_APN_EXPAND_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_APN_EXPAND_BOOL)
pub const KEY_APN_EXPAND_BOOL : &'static str = "apn_expand_bool";
/// public static final [KEY_AUTO_RETRY_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_AUTO_RETRY_ENABLED_BOOL)
pub const KEY_AUTO_RETRY_ENABLED_BOOL : &'static str = "auto_retry_enabled_bool";
/// public static final [KEY_CALL_FORWARDING_BLOCKS_WHILE_ROAMING_STRING_ARRAY](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CALL_FORWARDING_BLOCKS_WHILE_ROAMING_STRING_ARRAY)
pub const KEY_CALL_FORWARDING_BLOCKS_WHILE_ROAMING_STRING_ARRAY : &'static str = "call_forwarding_blocks_while_roaming_string_array";
/// public static final [KEY_CARRIER_ALLOW_TURNOFF_IMS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_ALLOW_TURNOFF_IMS_BOOL)
pub const KEY_CARRIER_ALLOW_TURNOFF_IMS_BOOL : &'static str = "carrier_allow_turnoff_ims_bool";
/// public static final [KEY_CARRIER_DATA_CALL_PERMANENT_FAILURE_STRINGS](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_DATA_CALL_PERMANENT_FAILURE_STRINGS)
pub const KEY_CARRIER_DATA_CALL_PERMANENT_FAILURE_STRINGS : &'static str = "carrier_data_call_permanent_failure_strings";
/// public static final [KEY_CARRIER_FORCE_DISABLE_ETWS_CMAS_TEST_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_FORCE_DISABLE_ETWS_CMAS_TEST_BOOL)
pub const KEY_CARRIER_FORCE_DISABLE_ETWS_CMAS_TEST_BOOL : &'static str = "carrier_force_disable_etws_cmas_test_bool";
/// public static final [KEY_CARRIER_IMS_GBA_REQUIRED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_IMS_GBA_REQUIRED_BOOL)
pub const KEY_CARRIER_IMS_GBA_REQUIRED_BOOL : &'static str = "carrier_ims_gba_required_bool";
/// public static final [KEY_CARRIER_INSTANT_LETTERING_AVAILABLE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_INSTANT_LETTERING_AVAILABLE_BOOL)
pub const KEY_CARRIER_INSTANT_LETTERING_AVAILABLE_BOOL : &'static str = "carrier_instant_lettering_available_bool";
/// public static final [KEY_CARRIER_INSTANT_LETTERING_ENCODING_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_INSTANT_LETTERING_ENCODING_STRING)
pub const KEY_CARRIER_INSTANT_LETTERING_ENCODING_STRING : &'static str = "carrier_instant_lettering_encoding_string";
/// public static final [KEY_CARRIER_INSTANT_LETTERING_ESCAPED_CHARS_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_INSTANT_LETTERING_ESCAPED_CHARS_STRING)
pub const KEY_CARRIER_INSTANT_LETTERING_ESCAPED_CHARS_STRING : &'static str = "carrier_instant_lettering_escaped_chars_string";
/// public static final [KEY_CARRIER_INSTANT_LETTERING_INVALID_CHARS_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_INSTANT_LETTERING_INVALID_CHARS_STRING)
pub const KEY_CARRIER_INSTANT_LETTERING_INVALID_CHARS_STRING : &'static str = "carrier_instant_lettering_invalid_chars_string";
/// public static final [KEY_CARRIER_INSTANT_LETTERING_LENGTH_LIMIT_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_INSTANT_LETTERING_LENGTH_LIMIT_INT)
pub const KEY_CARRIER_INSTANT_LETTERING_LENGTH_LIMIT_INT : &'static str = "carrier_instant_lettering_length_limit_int";
/// public static final [KEY_CARRIER_SETTINGS_ENABLE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_SETTINGS_ENABLE_BOOL)
pub const KEY_CARRIER_SETTINGS_ENABLE_BOOL : &'static str = "carrier_settings_enable_bool";
/// public static final [KEY_CARRIER_USE_IMS_FIRST_FOR_EMERGENCY_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_USE_IMS_FIRST_FOR_EMERGENCY_BOOL)
pub const KEY_CARRIER_USE_IMS_FIRST_FOR_EMERGENCY_BOOL : &'static str = "carrier_use_ims_first_for_emergency_bool";
/// public static final [KEY_CARRIER_VOLTE_AVAILABLE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_VOLTE_AVAILABLE_BOOL)
pub const KEY_CARRIER_VOLTE_AVAILABLE_BOOL : &'static str = "carrier_volte_available_bool";
/// public static final [KEY_CARRIER_VOLTE_PROVISIONED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_VOLTE_PROVISIONED_BOOL)
pub const KEY_CARRIER_VOLTE_PROVISIONED_BOOL : &'static str = "carrier_volte_provisioned_bool";
/// public static final [KEY_CARRIER_VOLTE_PROVISIONING_REQUIRED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_VOLTE_PROVISIONING_REQUIRED_BOOL)
pub const KEY_CARRIER_VOLTE_PROVISIONING_REQUIRED_BOOL : &'static str = "carrier_volte_provisioning_required_bool";
/// public static final [KEY_CARRIER_VOLTE_TTY_SUPPORTED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_VOLTE_TTY_SUPPORTED_BOOL)
pub const KEY_CARRIER_VOLTE_TTY_SUPPORTED_BOOL : &'static str = "carrier_volte_tty_supported_bool";
/// public static final [KEY_CARRIER_VT_AVAILABLE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_VT_AVAILABLE_BOOL)
pub const KEY_CARRIER_VT_AVAILABLE_BOOL : &'static str = "carrier_vt_available_bool";
/// public static final [KEY_CARRIER_VVM_PACKAGE_NAME_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_VVM_PACKAGE_NAME_STRING)
#[deprecated] pub const KEY_CARRIER_VVM_PACKAGE_NAME_STRING : &'static str = "carrier_vvm_package_name_string";
/// public static final [KEY_CARRIER_VVM_PACKAGE_NAME_STRING_ARRAY](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_VVM_PACKAGE_NAME_STRING_ARRAY)
pub const KEY_CARRIER_VVM_PACKAGE_NAME_STRING_ARRAY : &'static str = "carrier_vvm_package_name_string_array";
/// public static final [KEY_CARRIER_WFC_IMS_AVAILABLE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_WFC_IMS_AVAILABLE_BOOL)
pub const KEY_CARRIER_WFC_IMS_AVAILABLE_BOOL : &'static str = "carrier_wfc_ims_available_bool";
/// public static final [KEY_CARRIER_WFC_SUPPORTS_WIFI_ONLY_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CARRIER_WFC_SUPPORTS_WIFI_ONLY_BOOL)
pub const KEY_CARRIER_WFC_SUPPORTS_WIFI_ONLY_BOOL : &'static str = "carrier_wfc_supports_wifi_only_bool";
/// public static final [KEY_CDMA_3WAYCALL_FLASH_DELAY_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CDMA_3WAYCALL_FLASH_DELAY_INT)
pub const KEY_CDMA_3WAYCALL_FLASH_DELAY_INT : &'static str = "cdma_3waycall_flash_delay_int";
/// public static final [KEY_CDMA_DTMF_TONE_DELAY_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CDMA_DTMF_TONE_DELAY_INT)
pub const KEY_CDMA_DTMF_TONE_DELAY_INT : &'static str = "cdma_dtmf_tone_delay_int";
/// public static final [KEY_CDMA_NONROAMING_NETWORKS_STRING_ARRAY](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CDMA_NONROAMING_NETWORKS_STRING_ARRAY)
pub const KEY_CDMA_NONROAMING_NETWORKS_STRING_ARRAY : &'static str = "cdma_nonroaming_networks_string_array";
/// public static final [KEY_CDMA_ROAMING_NETWORKS_STRING_ARRAY](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CDMA_ROAMING_NETWORKS_STRING_ARRAY)
pub const KEY_CDMA_ROAMING_NETWORKS_STRING_ARRAY : &'static str = "cdma_roaming_networks_string_array";
/// public static final [KEY_CI_ACTION_ON_SYS_UPDATE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CI_ACTION_ON_SYS_UPDATE_BOOL)
pub const KEY_CI_ACTION_ON_SYS_UPDATE_BOOL : &'static str = "ci_action_on_sys_update_bool";
/// public static final [KEY_CI_ACTION_ON_SYS_UPDATE_EXTRA_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CI_ACTION_ON_SYS_UPDATE_EXTRA_STRING)
pub const KEY_CI_ACTION_ON_SYS_UPDATE_EXTRA_STRING : &'static str = "ci_action_on_sys_update_extra_string";
/// public static final [KEY_CI_ACTION_ON_SYS_UPDATE_EXTRA_VAL_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CI_ACTION_ON_SYS_UPDATE_EXTRA_VAL_STRING)
pub const KEY_CI_ACTION_ON_SYS_UPDATE_EXTRA_VAL_STRING : &'static str = "ci_action_on_sys_update_extra_val_string";
/// public static final [KEY_CI_ACTION_ON_SYS_UPDATE_INTENT_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CI_ACTION_ON_SYS_UPDATE_INTENT_STRING)
pub const KEY_CI_ACTION_ON_SYS_UPDATE_INTENT_STRING : &'static str = "ci_action_on_sys_update_intent_string";
/// public static final [KEY_CONFIG_IMS_PACKAGE_OVERRIDE_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CONFIG_IMS_PACKAGE_OVERRIDE_STRING)
pub const KEY_CONFIG_IMS_PACKAGE_OVERRIDE_STRING : &'static str = "config_ims_package_override_string";
/// public static final [KEY_CSP_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_CSP_ENABLED_BOOL)
pub const KEY_CSP_ENABLED_BOOL : &'static str = "csp_enabled_bool";
/// public static final [KEY_DATA_LIMIT_THRESHOLD_BYTES_LONG](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_DATA_LIMIT_THRESHOLD_BYTES_LONG)
pub const KEY_DATA_LIMIT_THRESHOLD_BYTES_LONG : &'static str = "data_limit_threshold_bytes_long";
/// public static final [KEY_DATA_WARNING_THRESHOLD_BYTES_LONG](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_DATA_WARNING_THRESHOLD_BYTES_LONG)
pub const KEY_DATA_WARNING_THRESHOLD_BYTES_LONG : &'static str = "data_warning_threshold_bytes_long";
/// public static final [KEY_DEFAULT_SIM_CALL_MANAGER_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_DEFAULT_SIM_CALL_MANAGER_STRING)
pub const KEY_DEFAULT_SIM_CALL_MANAGER_STRING : &'static str = "default_sim_call_manager_string";
/// public static final [KEY_DEFAULT_VM_NUMBER_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_DEFAULT_VM_NUMBER_STRING)
pub const KEY_DEFAULT_VM_NUMBER_STRING : &'static str = "default_vm_number_string";
/// public static final [KEY_DIAL_STRING_REPLACE_STRING_ARRAY](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_DIAL_STRING_REPLACE_STRING_ARRAY)
pub const KEY_DIAL_STRING_REPLACE_STRING_ARRAY : &'static str = "dial_string_replace_string_array";
/// public static final [KEY_DISABLE_CDMA_ACTIVATION_CODE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_DISABLE_CDMA_ACTIVATION_CODE_BOOL)
pub const KEY_DISABLE_CDMA_ACTIVATION_CODE_BOOL : &'static str = "disable_cdma_activation_code_bool";
/// public static final [KEY_DROP_VIDEO_CALL_WHEN_ANSWERING_AUDIO_CALL_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_DROP_VIDEO_CALL_WHEN_ANSWERING_AUDIO_CALL_BOOL)
pub const KEY_DROP_VIDEO_CALL_WHEN_ANSWERING_AUDIO_CALL_BOOL : &'static str = "drop_video_call_when_answering_audio_call_bool";
/// public static final [KEY_DTMF_TYPE_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_DTMF_TYPE_ENABLED_BOOL)
pub const KEY_DTMF_TYPE_ENABLED_BOOL : &'static str = "dtmf_type_enabled_bool";
/// public static final [KEY_DURATION_BLOCKING_DISABLED_AFTER_EMERGENCY_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_DURATION_BLOCKING_DISABLED_AFTER_EMERGENCY_INT)
pub const KEY_DURATION_BLOCKING_DISABLED_AFTER_EMERGENCY_INT : &'static str = "duration_blocking_disabled_after_emergency_int";
/// public static final [KEY_EDITABLE_ENHANCED_4G_LTE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_EDITABLE_ENHANCED_4G_LTE_BOOL)
pub const KEY_EDITABLE_ENHANCED_4G_LTE_BOOL : &'static str = "editable_enhanced_4g_lte_bool";
/// public static final [KEY_EDITABLE_VOICEMAIL_NUMBER_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_EDITABLE_VOICEMAIL_NUMBER_BOOL)
pub const KEY_EDITABLE_VOICEMAIL_NUMBER_BOOL : &'static str = "editable_voicemail_number_bool";
/// public static final [KEY_ENABLE_DIALER_KEY_VIBRATION_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ENABLE_DIALER_KEY_VIBRATION_BOOL)
pub const KEY_ENABLE_DIALER_KEY_VIBRATION_BOOL : &'static str = "enable_dialer_key_vibration_bool";
/// public static final [KEY_FORCE_HOME_NETWORK_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_FORCE_HOME_NETWORK_BOOL)
pub const KEY_FORCE_HOME_NETWORK_BOOL : &'static str = "force_home_network_bool";
/// public static final [KEY_GSM_DTMF_TONE_DELAY_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_GSM_DTMF_TONE_DELAY_INT)
pub const KEY_GSM_DTMF_TONE_DELAY_INT : &'static str = "gsm_dtmf_tone_delay_int";
/// public static final [KEY_GSM_NONROAMING_NETWORKS_STRING_ARRAY](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_GSM_NONROAMING_NETWORKS_STRING_ARRAY)
pub const KEY_GSM_NONROAMING_NETWORKS_STRING_ARRAY : &'static str = "gsm_nonroaming_networks_string_array";
/// public static final [KEY_GSM_ROAMING_NETWORKS_STRING_ARRAY](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_GSM_ROAMING_NETWORKS_STRING_ARRAY)
pub const KEY_GSM_ROAMING_NETWORKS_STRING_ARRAY : &'static str = "gsm_roaming_networks_string_array";
/// public static final [KEY_HAS_IN_CALL_NOISE_SUPPRESSION_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_HAS_IN_CALL_NOISE_SUPPRESSION_BOOL)
pub const KEY_HAS_IN_CALL_NOISE_SUPPRESSION_BOOL : &'static str = "has_in_call_noise_suppression_bool";
/// public static final [KEY_HIDE_CARRIER_NETWORK_SETTINGS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_HIDE_CARRIER_NETWORK_SETTINGS_BOOL)
pub const KEY_HIDE_CARRIER_NETWORK_SETTINGS_BOOL : &'static str = "hide_carrier_network_settings_bool";
/// public static final [KEY_HIDE_ENHANCED_4G_LTE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_HIDE_ENHANCED_4G_LTE_BOOL)
pub const KEY_HIDE_ENHANCED_4G_LTE_BOOL : &'static str = "hide_enhanced_4g_lte_bool";
/// public static final [KEY_HIDE_IMS_APN_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_HIDE_IMS_APN_BOOL)
pub const KEY_HIDE_IMS_APN_BOOL : &'static str = "hide_ims_apn_bool";
/// public static final [KEY_HIDE_PREFERRED_NETWORK_TYPE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_HIDE_PREFERRED_NETWORK_TYPE_BOOL)
pub const KEY_HIDE_PREFERRED_NETWORK_TYPE_BOOL : &'static str = "hide_preferred_network_type_bool";
/// public static final [KEY_HIDE_SIM_LOCK_SETTINGS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_HIDE_SIM_LOCK_SETTINGS_BOOL)
pub const KEY_HIDE_SIM_LOCK_SETTINGS_BOOL : &'static str = "hide_sim_lock_settings_bool";
/// public static final [KEY_IGNORE_SIM_NETWORK_LOCKED_EVENTS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_IGNORE_SIM_NETWORK_LOCKED_EVENTS_BOOL)
pub const KEY_IGNORE_SIM_NETWORK_LOCKED_EVENTS_BOOL : &'static str = "ignore_sim_network_locked_events_bool";
/// public static final [KEY_IMS_CONFERENCE_SIZE_LIMIT_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_IMS_CONFERENCE_SIZE_LIMIT_INT)
pub const KEY_IMS_CONFERENCE_SIZE_LIMIT_INT : &'static str = "ims_conference_size_limit_int";
/// public static final [KEY_IMS_DTMF_TONE_DELAY_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_IMS_DTMF_TONE_DELAY_INT)
pub const KEY_IMS_DTMF_TONE_DELAY_INT : &'static str = "ims_dtmf_tone_delay_int";
/// public static final [KEY_IS_IMS_CONFERENCE_SIZE_ENFORCED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_IS_IMS_CONFERENCE_SIZE_ENFORCED_BOOL)
pub const KEY_IS_IMS_CONFERENCE_SIZE_ENFORCED_BOOL : &'static str = "is_ims_conference_size_enforced_bool";
/// public static final [KEY_MDN_IS_ADDITIONAL_VOICEMAIL_NUMBER_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MDN_IS_ADDITIONAL_VOICEMAIL_NUMBER_BOOL)
pub const KEY_MDN_IS_ADDITIONAL_VOICEMAIL_NUMBER_BOOL : &'static str = "mdn_is_additional_voicemail_number_bool";
/// public static final [KEY_MMS_ALIAS_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_ALIAS_ENABLED_BOOL)
pub const KEY_MMS_ALIAS_ENABLED_BOOL : &'static str = "aliasEnabled";
/// public static final [KEY_MMS_ALIAS_MAX_CHARS_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_ALIAS_MAX_CHARS_INT)
pub const KEY_MMS_ALIAS_MAX_CHARS_INT : &'static str = "aliasMaxChars";
/// public static final [KEY_MMS_ALIAS_MIN_CHARS_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_ALIAS_MIN_CHARS_INT)
pub const KEY_MMS_ALIAS_MIN_CHARS_INT : &'static str = "aliasMinChars";
/// public static final [KEY_MMS_ALLOW_ATTACH_AUDIO_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_ALLOW_ATTACH_AUDIO_BOOL)
pub const KEY_MMS_ALLOW_ATTACH_AUDIO_BOOL : &'static str = "allowAttachAudio";
/// public static final [KEY_MMS_APPEND_TRANSACTION_ID_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_APPEND_TRANSACTION_ID_BOOL)
pub const KEY_MMS_APPEND_TRANSACTION_ID_BOOL : &'static str = "enabledTransID";
/// public static final [KEY_MMS_EMAIL_GATEWAY_NUMBER_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_EMAIL_GATEWAY_NUMBER_STRING)
pub const KEY_MMS_EMAIL_GATEWAY_NUMBER_STRING : &'static str = "emailGatewayNumber";
/// public static final [KEY_MMS_GROUP_MMS_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_GROUP_MMS_ENABLED_BOOL)
pub const KEY_MMS_GROUP_MMS_ENABLED_BOOL : &'static str = "enableGroupMms";
/// public static final [KEY_MMS_HTTP_PARAMS_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_HTTP_PARAMS_STRING)
pub const KEY_MMS_HTTP_PARAMS_STRING : &'static str = "httpParams";
/// public static final [KEY_MMS_HTTP_SOCKET_TIMEOUT_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_HTTP_SOCKET_TIMEOUT_INT)
pub const KEY_MMS_HTTP_SOCKET_TIMEOUT_INT : &'static str = "httpSocketTimeout";
/// public static final [KEY_MMS_MAX_IMAGE_HEIGHT_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_MAX_IMAGE_HEIGHT_INT)
pub const KEY_MMS_MAX_IMAGE_HEIGHT_INT : &'static str = "maxImageHeight";
/// public static final [KEY_MMS_MAX_IMAGE_WIDTH_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_MAX_IMAGE_WIDTH_INT)
pub const KEY_MMS_MAX_IMAGE_WIDTH_INT : &'static str = "maxImageWidth";
/// public static final [KEY_MMS_MAX_MESSAGE_SIZE_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_MAX_MESSAGE_SIZE_INT)
pub const KEY_MMS_MAX_MESSAGE_SIZE_INT : &'static str = "maxMessageSize";
/// public static final [KEY_MMS_MESSAGE_TEXT_MAX_SIZE_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_MESSAGE_TEXT_MAX_SIZE_INT)
pub const KEY_MMS_MESSAGE_TEXT_MAX_SIZE_INT : &'static str = "maxMessageTextSize";
/// public static final [KEY_MMS_MMS_DELIVERY_REPORT_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_MMS_DELIVERY_REPORT_ENABLED_BOOL)
pub const KEY_MMS_MMS_DELIVERY_REPORT_ENABLED_BOOL : &'static str = "enableMMSDeliveryReports";
/// public static final [KEY_MMS_MMS_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_MMS_ENABLED_BOOL)
pub const KEY_MMS_MMS_ENABLED_BOOL : &'static str = "enabledMMS";
/// public static final [KEY_MMS_MMS_READ_REPORT_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_MMS_READ_REPORT_ENABLED_BOOL)
pub const KEY_MMS_MMS_READ_REPORT_ENABLED_BOOL : &'static str = "enableMMSReadReports";
/// public static final [KEY_MMS_MULTIPART_SMS_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_MULTIPART_SMS_ENABLED_BOOL)
pub const KEY_MMS_MULTIPART_SMS_ENABLED_BOOL : &'static str = "enableMultipartSMS";
/// public static final [KEY_MMS_NAI_SUFFIX_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_NAI_SUFFIX_STRING)
pub const KEY_MMS_NAI_SUFFIX_STRING : &'static str = "naiSuffix";
/// public static final [KEY_MMS_NOTIFY_WAP_MMSC_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_NOTIFY_WAP_MMSC_ENABLED_BOOL)
pub const KEY_MMS_NOTIFY_WAP_MMSC_ENABLED_BOOL : &'static str = "enabledNotifyWapMMSC";
/// public static final [KEY_MMS_RECIPIENT_LIMIT_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_RECIPIENT_LIMIT_INT)
pub const KEY_MMS_RECIPIENT_LIMIT_INT : &'static str = "recipientLimit";
/// public static final [KEY_MMS_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES_BOOL)
pub const KEY_MMS_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES_BOOL : &'static str = "sendMultipartSmsAsSeparateMessages";
/// public static final [KEY_MMS_SHOW_CELL_BROADCAST_APP_LINKS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_SHOW_CELL_BROADCAST_APP_LINKS_BOOL)
pub const KEY_MMS_SHOW_CELL_BROADCAST_APP_LINKS_BOOL : &'static str = "config_cellBroadcastAppLinks";
/// public static final [KEY_MMS_SMS_DELIVERY_REPORT_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_SMS_DELIVERY_REPORT_ENABLED_BOOL)
pub const KEY_MMS_SMS_DELIVERY_REPORT_ENABLED_BOOL : &'static str = "enableSMSDeliveryReports";
/// public static final [KEY_MMS_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD_INT)
pub const KEY_MMS_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD_INT : &'static str = "smsToMmsTextLengthThreshold";
/// public static final [KEY_MMS_SMS_TO_MMS_TEXT_THRESHOLD_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_SMS_TO_MMS_TEXT_THRESHOLD_INT)
pub const KEY_MMS_SMS_TO_MMS_TEXT_THRESHOLD_INT : &'static str = "smsToMmsTextThreshold";
/// public static final [KEY_MMS_SUBJECT_MAX_LENGTH_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_SUBJECT_MAX_LENGTH_INT)
pub const KEY_MMS_SUBJECT_MAX_LENGTH_INT : &'static str = "maxSubjectLength";
/// public static final [KEY_MMS_SUPPORT_HTTP_CHARSET_HEADER_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_SUPPORT_HTTP_CHARSET_HEADER_BOOL)
pub const KEY_MMS_SUPPORT_HTTP_CHARSET_HEADER_BOOL : &'static str = "supportHttpCharsetHeader";
/// public static final [KEY_MMS_SUPPORT_MMS_CONTENT_DISPOSITION_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_SUPPORT_MMS_CONTENT_DISPOSITION_BOOL)
pub const KEY_MMS_SUPPORT_MMS_CONTENT_DISPOSITION_BOOL : &'static str = "supportMmsContentDisposition";
/// public static final [KEY_MMS_UA_PROF_TAG_NAME_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_UA_PROF_TAG_NAME_STRING)
pub const KEY_MMS_UA_PROF_TAG_NAME_STRING : &'static str = "uaProfTagName";
/// public static final [KEY_MMS_UA_PROF_URL_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_UA_PROF_URL_STRING)
pub const KEY_MMS_UA_PROF_URL_STRING : &'static str = "uaProfUrl";
/// public static final [KEY_MMS_USER_AGENT_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MMS_USER_AGENT_STRING)
pub const KEY_MMS_USER_AGENT_STRING : &'static str = "userAgent";
/// public static final [KEY_MONTHLY_DATA_CYCLE_DAY_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_MONTHLY_DATA_CYCLE_DAY_INT)
pub const KEY_MONTHLY_DATA_CYCLE_DAY_INT : &'static str = "monthly_data_cycle_day_int";
/// public static final [KEY_ONLY_SINGLE_DC_ALLOWED_INT_ARRAY](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_ONLY_SINGLE_DC_ALLOWED_INT_ARRAY)
pub const KEY_ONLY_SINGLE_DC_ALLOWED_INT_ARRAY : &'static str = "only_single_dc_allowed_int_array";
/// public static final [KEY_OPERATOR_SELECTION_EXPAND_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_OPERATOR_SELECTION_EXPAND_BOOL)
pub const KEY_OPERATOR_SELECTION_EXPAND_BOOL : &'static str = "operator_selection_expand_bool";
/// public static final [KEY_PREFER_2G_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_PREFER_2G_BOOL)
pub const KEY_PREFER_2G_BOOL : &'static str = "prefer_2g_bool";
/// public static final [KEY_RCS_CONFIG_SERVER_URL_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_RCS_CONFIG_SERVER_URL_STRING)
pub const KEY_RCS_CONFIG_SERVER_URL_STRING : &'static str = "rcs_config_server_url_string";
/// public static final [KEY_REQUIRE_ENTITLEMENT_CHECKS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_REQUIRE_ENTITLEMENT_CHECKS_BOOL)
pub const KEY_REQUIRE_ENTITLEMENT_CHECKS_BOOL : &'static str = "require_entitlement_checks_bool";
/// public static final [KEY_RESTART_RADIO_ON_PDP_FAIL_REGULAR_DEACTIVATION_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_RESTART_RADIO_ON_PDP_FAIL_REGULAR_DEACTIVATION_BOOL)
pub const KEY_RESTART_RADIO_ON_PDP_FAIL_REGULAR_DEACTIVATION_BOOL : &'static str = "restart_radio_on_pdp_fail_regular_deactivation_bool";
/// public static final [KEY_SHOW_APN_SETTING_CDMA_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SHOW_APN_SETTING_CDMA_BOOL)
pub const KEY_SHOW_APN_SETTING_CDMA_BOOL : &'static str = "show_apn_setting_cdma_bool";
/// public static final [KEY_SHOW_CDMA_CHOICES_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SHOW_CDMA_CHOICES_BOOL)
pub const KEY_SHOW_CDMA_CHOICES_BOOL : &'static str = "show_cdma_choices_bool";
/// public static final [KEY_SHOW_ICCID_IN_SIM_STATUS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SHOW_ICCID_IN_SIM_STATUS_BOOL)
pub const KEY_SHOW_ICCID_IN_SIM_STATUS_BOOL : &'static str = "show_iccid_in_sim_status_bool";
/// public static final [KEY_SHOW_ONSCREEN_DIAL_BUTTON_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SHOW_ONSCREEN_DIAL_BUTTON_BOOL)
pub const KEY_SHOW_ONSCREEN_DIAL_BUTTON_BOOL : &'static str = "show_onscreen_dial_button_bool";
/// public static final [KEY_SIMPLIFIED_NETWORK_SETTINGS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SIMPLIFIED_NETWORK_SETTINGS_BOOL)
pub const KEY_SIMPLIFIED_NETWORK_SETTINGS_BOOL : &'static str = "simplified_network_settings_bool";
/// public static final [KEY_SIM_NETWORK_UNLOCK_ALLOW_DISMISS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SIM_NETWORK_UNLOCK_ALLOW_DISMISS_BOOL)
pub const KEY_SIM_NETWORK_UNLOCK_ALLOW_DISMISS_BOOL : &'static str = "sim_network_unlock_allow_dismiss_bool";
/// public static final [KEY_SMS_REQUIRES_DESTINATION_NUMBER_CONVERSION_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SMS_REQUIRES_DESTINATION_NUMBER_CONVERSION_BOOL)
pub const KEY_SMS_REQUIRES_DESTINATION_NUMBER_CONVERSION_BOOL : &'static str = "sms_requires_destination_number_conversion_bool";
/// public static final [KEY_SUPPORT_3GPP_CALL_FORWARDING_WHILE_ROAMING_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SUPPORT_3GPP_CALL_FORWARDING_WHILE_ROAMING_BOOL)
pub const KEY_SUPPORT_3GPP_CALL_FORWARDING_WHILE_ROAMING_BOOL : &'static str = "support_3gpp_call_forwarding_while_roaming_bool";
/// public static final [KEY_SUPPORT_CONFERENCE_CALL_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SUPPORT_CONFERENCE_CALL_BOOL)
pub const KEY_SUPPORT_CONFERENCE_CALL_BOOL : &'static str = "support_conference_call_bool";
/// public static final [KEY_SUPPORT_PAUSE_IMS_VIDEO_CALLS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SUPPORT_PAUSE_IMS_VIDEO_CALLS_BOOL)
pub const KEY_SUPPORT_PAUSE_IMS_VIDEO_CALLS_BOOL : &'static str = "support_pause_ims_video_calls_bool";
/// public static final [KEY_SUPPORT_SWAP_AFTER_MERGE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_SUPPORT_SWAP_AFTER_MERGE_BOOL)
pub const KEY_SUPPORT_SWAP_AFTER_MERGE_BOOL : &'static str = "support_swap_after_merge_bool";
/// public static final [KEY_TREAT_DOWNGRADED_VIDEO_CALLS_AS_VIDEO_CALLS_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_TREAT_DOWNGRADED_VIDEO_CALLS_AS_VIDEO_CALLS_BOOL)
pub const KEY_TREAT_DOWNGRADED_VIDEO_CALLS_AS_VIDEO_CALLS_BOOL : &'static str = "treat_downgraded_video_calls_as_video_calls_bool";
/// public static final [KEY_USE_HFA_FOR_PROVISIONING_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_USE_HFA_FOR_PROVISIONING_BOOL)
pub const KEY_USE_HFA_FOR_PROVISIONING_BOOL : &'static str = "use_hfa_for_provisioning_bool";
/// public static final [KEY_USE_OTASP_FOR_PROVISIONING_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_USE_OTASP_FOR_PROVISIONING_BOOL)
pub const KEY_USE_OTASP_FOR_PROVISIONING_BOOL : &'static str = "use_otasp_for_provisioning_bool";
/// public static final [KEY_USE_RCS_PRESENCE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_USE_RCS_PRESENCE_BOOL)
pub const KEY_USE_RCS_PRESENCE_BOOL : &'static str = "use_rcs_presence_bool";
/// public static final [KEY_VOICEMAIL_NOTIFICATION_PERSISTENT_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VOICEMAIL_NOTIFICATION_PERSISTENT_BOOL)
pub const KEY_VOICEMAIL_NOTIFICATION_PERSISTENT_BOOL : &'static str = "voicemail_notification_persistent_bool";
/// public static final [KEY_VOICE_PRIVACY_DISABLE_UI_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VOICE_PRIVACY_DISABLE_UI_BOOL)
pub const KEY_VOICE_PRIVACY_DISABLE_UI_BOOL : &'static str = "voice_privacy_disable_ui_bool";
/// public static final [KEY_VOLTE_REPLACEMENT_RAT_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VOLTE_REPLACEMENT_RAT_INT)
pub const KEY_VOLTE_REPLACEMENT_RAT_INT : &'static str = "volte_replacement_rat_int";
/// public static final [KEY_VVM_CELLULAR_DATA_REQUIRED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VVM_CELLULAR_DATA_REQUIRED_BOOL)
pub const KEY_VVM_CELLULAR_DATA_REQUIRED_BOOL : &'static str = "vvm_cellular_data_required_bool";
/// public static final [KEY_VVM_CLIENT_PREFIX_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VVM_CLIENT_PREFIX_STRING)
pub const KEY_VVM_CLIENT_PREFIX_STRING : &'static str = "vvm_client_prefix_string";
/// public static final [KEY_VVM_DESTINATION_NUMBER_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VVM_DESTINATION_NUMBER_STRING)
pub const KEY_VVM_DESTINATION_NUMBER_STRING : &'static str = "vvm_destination_number_string";
/// public static final [KEY_VVM_DISABLED_CAPABILITIES_STRING_ARRAY](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VVM_DISABLED_CAPABILITIES_STRING_ARRAY)
pub const KEY_VVM_DISABLED_CAPABILITIES_STRING_ARRAY : &'static str = "vvm_disabled_capabilities_string_array";
/// public static final [KEY_VVM_LEGACY_MODE_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VVM_LEGACY_MODE_ENABLED_BOOL)
pub const KEY_VVM_LEGACY_MODE_ENABLED_BOOL : &'static str = "vvm_legacy_mode_enabled_bool";
/// public static final [KEY_VVM_PORT_NUMBER_INT](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VVM_PORT_NUMBER_INT)
pub const KEY_VVM_PORT_NUMBER_INT : &'static str = "vvm_port_number_int";
/// public static final [KEY_VVM_PREFETCH_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VVM_PREFETCH_BOOL)
pub const KEY_VVM_PREFETCH_BOOL : &'static str = "vvm_prefetch_bool";
/// public static final [KEY_VVM_SSL_ENABLED_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VVM_SSL_ENABLED_BOOL)
pub const KEY_VVM_SSL_ENABLED_BOOL : &'static str = "vvm_ssl_enabled_bool";
/// public static final [KEY_VVM_TYPE_STRING](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_VVM_TYPE_STRING)
pub const KEY_VVM_TYPE_STRING : &'static str = "vvm_type_string";
/// public static final [KEY_WORLD_PHONE_BOOL](https://developer.android.com/reference/android/telephony/CarrierConfigManager.html#KEY_WORLD_PHONE_BOOL)
pub const KEY_WORLD_PHONE_BOOL : &'static str = "world_phone_bool";
}
}