Reputation: 203
I am working on xamarin IOS and my project is working fine on IOS simulator but when i run on IPhone 6. it's giving some issue.
"No valid iOS code signing keys found in keychain. You need to request a codesigning certificate from https://developer.apple.com. RSystemApp.iOS"
Please tell me what will i do to solve this issue. if anyone have any idea to solve this issue or have any link to solve the issue please suggest me so that i can run my app on Iphone also
thanks
Upvotes: 1
Views: 176
Reputation: 1212
Login to your Apple developer account and verify that you have everything in place to deploy an app on to an actual device:
Are all these marked as correct on your build Mac? Best way is to check that with XCode before doing it with Xamarin Studio or Visual Studio.
Create a little test app in XCode if necessary and deploy it to your app.
Is that works, import the profile and certs into Xamarin/Visual Studio and it should work.
Upvotes: 0
Reputation: 66
When we have to run the iOS app on a device, we have to code sign the build. For that a valid provisioning profile and certificate is required.
If everything will be in this way, Your app will run on Device.
Upvotes: 1