Could not find any available provisioning profiles for iOS

后端 未结 11 1415
青春惊慌失措
青春惊慌失措 2021-01-03 17:29

We are developing a iOS shopping cart application in c# and visual studio 2017 for xamarin. I have an iPad Air iOS 10.3, when I try to publish to real device, I am getting t

11条回答
  •  情歌与酒
    2021-01-03 18:05

    You must create a provisioning profile. Search on Google, how to do it.

    But, the secret is: when you create a provisioning profile, you must associate an App ID to this profile, like: "com.companyname.*".

    When you create your app in visual studio, you must set in the INFO.PLIST file on IOS PROJECT, the Bundle Identifier to "com.companyname.myapp1" or anything else. If your Bundle Identifier has a name like "com.myapp.app1", you will get this error: Could not find any available provisioning profiles for iOS, because your profile accept only apps with the names started with com.companyname and you are using a appname different.

提交回复
热议问题