Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add an array item to Custom iOS Target Properties in Xcode 13 where Info.plist has been removed?

As of Xcode 13, Info.plist has been replaced by Custom iOS Target Properties ✅ you can access this via Project → Target → Info.

My goal is to add a property LSApplicationQueriesSchemes which contains an array of items. I can tap on the + button and add this row, but I can't for the love of me add an item to the array!

How do I add an item to an array type?

enter image description here

like image 716
Zorayr Avatar asked Oct 16 '25 18:10

Zorayr


1 Answers

  • Make sure the item is set to an Array type (which it is in your screenshot).
  • Right click (or ctrl click) on the row you have selected and choose "Add Row"

enter image description here

like image 91
jnpdx Avatar answered Oct 19 '25 07:10

jnpdx