I have created a PLIST. The structure of the PLIST is like this
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://10.87.145.105:8080/copy/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>title</key>
<string>Sample</string>
<key>title.short</key>
<string>Sample1</string>
</dict>
</plist>
This is not recognised in Mac/iPhone as a plist. If i remove that extra tab from and make both and in same indentdation it works in mac and iPhone. Is this indentation of and as shown below is mandatory for a MAc or iPhone to recognise the file.
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://10.87.145.105:8080/copy/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>title</key>
<string>Sample</string>
<key>title.short</key>
<string>Sample1</string>
</dict>
</plist>