build.settings causes problem with Xcode

Just wondering if someone can have a look and tell me what I did wrong in this build.settings.
Xcode (4.3.1) gives an API error when I try to drop my app on a device. If I build without the build.settings it does work.

Thanks

settings = { orientation = { default = "portrait", supported = { "portrait", "portraitUpsideDown" }, }, iphone = { plist = { UIRequiredDeviceCapabilities = "accelerometer", UIStatusBarHidden = true, CFBundleIconFile = "Icon.png", CFBundleIconFiles = { "Icon.png" , "Icon@2x.png" , "Icon-72.png" , "Icon-72@2x.png" , "Icon-Small.png" , "Icon-Small@2x.png" , "Icon-Small-50.png" , "Icon-Small-50@2x.png" , }, }, }, }
[import]uid: 123200 topic_id: 23704 reply_id: 323704[/import]

I think UIRequiredDeviceCapabilities has to be an array.
UIRequiredDeviceCapabilities = {“accelerometer”},
[import]uid: 7563 topic_id: 23704 reply_id: 95306[/import]

I found that out just now myself. I opened the info.plist in the Xcode editor and created the entry myself manually and the editor said it should be an array!

Thanks for the help!
[import]uid: 123200 topic_id: 23704 reply_id: 95387[/import]