Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Testflight error: This build doesn't support iPhone 5c GSM. Ask the developers to support your device

Im new to iphone development. I have created new phonegap app and installed couple of plugins. Im using testflight.com to install and test apps on devices. Last time i have installed facebook connect plugin and made required settings. App working fine on xcode simulators and created new archive. There is no error while uploading on testflight.com.

but when i tried to install on my registered device, i got this error in safari.

Testflight error: This build doesn't support iPhone 5c GSM. Ask the developers to support your device

I googled this message but couldn't get any appropriate answer.

Thanks for your time and help

like image 936
user1855904 Avatar asked Jan 08 '14 07:01

user1855904


2 Answers

Have had the same issue a few times, saying not compatible iPhone 4, 4S etc, though this was fixed when I simply archived the app with 'iOS Device' selected rather than archiving for a device that's plugged in at the time. Archiving for a device that's plugged in seemed to pick up its architecture build, which if it is a newer device that is being run on may cause this 'incompatible' issue with older devices.

By archiving with simply 'iOS device' option selected this solved the issue. (contrary to what I initially thought, archiving doesn't need to be with an actual device connected, just as long as it's not the simulator.)

enter image description here

Hope this helps,

cheers Jim.

like image 171
Jim Tierney Avatar answered Oct 20 '22 00:10

Jim Tierney


When you archive your app in Xcode, you are probably not building it for all the architectures needed (armv7 for iPhone 5C). Try changing the build setting for Build Active Architectures Only as described in this answer.

like image 27
pojo Avatar answered Oct 20 '22 01:10

pojo