Hi all,
I submitted an iPhone application to the app store, but it is failed to run on iPod touch with the message that it is not compatible.I'm not using any Phone features on the application when I first I submitted the application to the store I was using some deprecated methods on the new SDK. so I made pre-processor directives for the conditional compilation like this:
#if __IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_2_2
// iPhone 3.0 code here
#else
#endif
Can this be the reason for the non compatible issue. I would appreciate any help.
Thanks in advance, Sarah