Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to write an iOS app that should be able to open kml and kmz files from google earth. I have added the following lines in the cfg file , but should be wrong ( I can't see my application listed when I try to open a kml file from another app, i.e. Mail) :

    <key>CFBundleDocumentTypes</key>
    <array>
    <dict>
        <key>CFBundleTypeMIMETypes</key>
        <array>
            <string>application/vnd.google-earth.kml+xml</string>
        </array>
        <key>CFBundleTypeExtensions</key>
        <array>
            <string>kml</string>
        </array>
        <key>CFBundleTypeName</key>
        <string>Google Kml</string>
        <key>CFBundleTypeRole</key>
        <string>Viewer</string>
        <key>LSHandlerRank</key>
        <string>Alternate</string>
    </dict>
</array>

Please help me to find the error...

share|improve this question
how you trying to read the xml file show your code – Harish Feb 3 '12 at 9:11
1  
duplicate - stackoverflow.com/questions/2774343/… – Fraser Feb 13 '12 at 7:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.