0

i've a jailbroken iphone 3gs and i want to run my app created with eclipse but when i go to run as > ios device app the program show error "no signing identity found matching "iphone developer" ".

How can i fix it?

thanks!

michele buzzoni
  • 97
  • 1
  • 3
  • 9

1 Answers1

1

When RoboVM launches on a device it looks for a signing identity.

You either need to tell it to skip the signing (coz you're on a jail broken device) or specify a correct signing identity.

If you have signing identities and RoboVM isn't picking them up, make sure XCode can see them and you can see them with the 'security find-identity' command :

$ security find-identity -v -p codesigning
1) ABC123 "iPhone Developer: ME (ABC12345)"
2) DEF456 "iPhone Distribution: ME (ABC34578)"

AshleyJ
  • 289
  • 4
  • 7