Error in making the build [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have prepared the build for the iPhone app that I have recently built.
The built had been successfully created but it is not being installed on my device.
I am not able to figure out the problem.
Can anyone please suggest me what might be the problem.
Thanks.

Since your error is
A valid provisioning profile could not
be found
This means that you have not (correctly) installed a provisioning profile.
You cannot deploy an app onto a device without a valid provisioning profile. To obtain one, you must first register with Apple and pay them $99. Then you can create a profile through the developer portal and follow the detailed instructions to load the profile into Xcode, and subsequently install it and the app on the device.

Related

learn to built a server for in-app purchase [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm a freshman about the server programming,and now I want to built a server for my ipad app.
This server is used for Server Model of in-app purchase. After the user has paid for the plug-in, he can download the files from my server.
Please provide a solution for How to create the server for Server Model of In- App Purchases
Check out this MStoreKit : https://github.com/MugunthKumar/MKStoreKit
In this you will find out a folder "Server Code". All the information for making a server for IAP (In-App Purchase) is provided in that.
Do let me know, if you need something else.

my app installed weird between iPhone and iPad [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have an Enterprise Account(installing via Over The Air). I made a test app, which is a universal app, and i tested it on my device. But it installed in a strange manner.
If i install the app, you can see the installation icon on the iPhone app doubled(see two app icons). but on iPad it doesn't happen. I don't know why?
First, I thought that it's because of the hardware difference of the two devices. But the app size is only just 2.7MB, so I expect that both devices can easily handle the app.
The following link shows this issue: this link shows weird app installing situation
if you are installing over the air(via a download link with configured plist), probably the "bundle identifier" set on the plist of your download link, doesn't match the "bundle identifier" of the app being downloaded. This is usually caused by reusing your plist(with old/wrong bundle identifier) for download instead of making a new one.
Run a clean in Xcode and then delete the app from the device itself and then try again

How submit iphone application on Appstore and what are prerequirement? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I create my first iphone app now i want submit this on appstore so please tell me what are prerequirement and step by step process. And also recommend links.
This is the best tutorial i can suggest you..Follow all the steps in this tutorial.
http://soulwithmobiletechnology.blogspot.in/2011/03/how-to-create-distribution-build-with.html
reffer to this http://www.edumobile.org/iphone/iphone-programming-tutorials/submitting-iphone-apps-to-the-apple-app-store-a-step-by-step-guide/
Just watch the WWDC 2012 session Building, Archiving, and Submitting Your App.
All the instructions you need are right there on the iOS provisioning portal.

How to create a test account for development purpose [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to create a test account for creating a application. How should I go about it? I referred to a tutorial and it seems like I will be needing an application id and a secret to create an account. I have read the doc page for Test users and could not make much sense. Would be a great help if someone could point me in the right direction
You need to create a facebook application first:
https://developers.facebook.com/docs/beta/opengraph/tutorial/
then add test users to the application:
https://developers.facebook.com/docs/test_users/
However I suspect this kind of "test user" isn't what you actually mean/need. You have to use your personal profile to set up the app and do the majority of your testing with - you aren't permitted to create more than one real profile. If you put your new app into sandbox mode then everything will be hidden anyway.
If you are new to facebook dev, maybe spend some time reading the documentation and looking through the examples first.
https://developers.facebook.com/

how to check application installed application in iphone deveice using iphone sdk [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am developing an application in which i need to find the apps which are already installed in iphone device such as Skype, facebook. I need to check it using objective -c . Please give me code snippet if possible otherwise a link to get the solution. Is it possible or not.
Thanks in advance ......
Not directly possible using the SDK. If an application you're looking for registers a URL scheme that it can open, then you can check for the presence of that app using the UIApplication -canOpenURL: method, as documented here.
This is not possible using any public API's.