I have added the following options in the app's plist
<code>
<key>UIApplicationShortcutItems</key>
<array>
<dict>
<key>UIApplicationShortcutItemType</key>
<string>DisplayFav</string>
<key>UIApplicationShortcutItemIconType</key>
<string>UIApplicationShortcutIconTypeSearch</string>
<key>UIApplicationShortcutItemTitle</key>
<string>Search For</string>
<key>UIApplicationShortcutItemSubtitle</key>
<string>Search for an item</string>
</dict>
<dict>
<key>UIApplicationShortcutItemType</key>
<string>WorkMore</string>
<key>UIApplicationShortcutItemIconType</key>
<string>UIApplicationShortcutIconTypeHome</string>
<key>UIApplicationShortcutItemTitle</key>
<string>Work More</string>
<key>UIApplicationShortcutItemSubtitle</key>
<string>Working More ?</string>
</dict>
<dict>
<key>UIApplicationShortcutItemType</key>
<string>RateAction</string>
<key>UIApplicationShortcutItemIconFile</key>
<string>rate</string>
<key>UIApplicationShortcutItemTitle</key>
<string>Rate</string>
<key>UIApplicationShortcutItemSubtitle</key>
<string>Rate this app</string>
</dict>
</array>
</code>
Yet, the option to test this in simulator IPhone Xr is not showing. When I try to test, the option is disabled. Xcode is 10.2
