@@ -266,7 +266,6 @@ void EditorExportPlatformIOS::get_export_options(List<ExportOption> *r_options)
266
266
r_options->push_back (ExportOption (PropertyInfo (Variant::BOOL, " capabilities/push_notifications" ), false ));
267
267
268
268
r_options->push_back (ExportOption (PropertyInfo (Variant::STRING, " privacy/camera_usage_description" ), " Godot would like to use your camera" ));
269
- r_options->push_back (ExportOption (PropertyInfo (Variant::STRING, " privacy/microphone_usage_description" ), " Godot would like to use your microphone" ));
270
269
r_options->push_back (ExportOption (PropertyInfo (Variant::STRING, " privacy/photolibrary_usage_description" ), " Godot would like to use your photos" ));
271
270
272
271
r_options->push_back (ExportOption (PropertyInfo (Variant::BOOL, " orientation/portrait" ), true ));
@@ -396,9 +395,6 @@ void EditorExportPlatformIOS::_fix_config_file(const Ref<EditorExportPreset> &p_
396
395
} else if (lines[i].find (" $camera_usage_description" ) != -1 ) {
397
396
String description = p_preset->get (" privacy/camera_usage_description" );
398
397
strnew += lines[i].replace (" $camera_usage_description" , description) + " \n " ;
399
- } else if (lines[i].find (" $microphone_usage_description" ) != -1 ) {
400
- String description = p_preset->get (" privacy/microphone_usage_description" );
401
- strnew += lines[i].replace (" $microphone_usage_description" , description) + " \n " ;
402
398
} else if (lines[i].find (" $photolibrary_usage_description" ) != -1 ) {
403
399
String description = p_preset->get (" privacy/photolibrary_usage_description" );
404
400
strnew += lines[i].replace (" $photolibrary_usage_description" , description) + " \n " ;
0 commit comments