In my iPhone app there is a requirement for Twitter API integration.
Here the problem comes when I integrate the Twitter+ OAuth SDK into my app. It gives errors as shown below in the screen shot.
I have added the xml2.dylib library to my app but still it gives some errors.
I got the answer.
I am posting it here because I don't want to put answer to my own question to earn reputation :). I made a silly mistake.
I didn't add the "Header Search Paths" in project settings as "\usr\include\xml2".
Remove the header file(s) which is importing "xmlversion.h", "tree.h", "xmlIO.h" from your application target.
In one of my project, I am using MGTwitterEngine libray. I was facing the same problem while inegrating the library with my application. Then I read following link which helped me to solve the problem
http://aralbalkan.com/3133
Related
I am trying to submit an update of my app but it shows me some questions and I don't know what to check. I am using AdMob in my app just showing banners. I saw this post Does this app use the Advertising Identifier (IDFA)? - AdMob 6.8.0 and they say that AdMob does use IDFA, but
my question is: Do I need to add some extra code to my project? and
What should I check?
im always submitting the apps with chcked box, it's better to do even if you know it has IDFA.. so your on the good side.. otherwize you need to upload new build if its going to be rejected!
You do not need to add code to your project.
You should check the "serve ads within the app"
I have an iphone app to upload to the AppStore and I am stuck with Xcode.
It keeps telling me when I want to create a build:
Library not found for -lOAuthConsumer_iPhone
I have checked everywhere on the web and haven't really found what the problem is.
Please bear in mind that I am not an iphone developer. I just know how to submit the apps but this bug here is really annoying as I can't find what it is.
Where can I find that library and how can I install it?
And where to install it??
It seems like the project is asking for the OAuthConsumer Library which can be found at: https://github.com/jdg/oauthconsumer.
You first need to check if your Project actually needs the library and ensure that the Security.framework is included as described in the OAuthConsumer readme
I am developing iphone app which shares photos on social networks.For photo sharing I am using "Sharekit".I have created Facebook App and using its api key and secrete.(used correct api key and secret.).
When I try to share image with this app(even simple text),the following error comes.(even the facebook login popup doesn't appear.)
"Sorry,the application you are using misconfigured for Facebook integration.Please download the newest version of the application"
I would have uploaded snap shot but as a new user Stack overflow is not allowing to upload image..Any help will be appreciated.
Thanks.
apparently this problem was faced by me too.
Since i was using their old API methods..
it is really tough to find the cause now..
Although i have not used ShareKit..i believe it is also using the older methods.
I solved the problem by using their official tutorial on Facebook iOS integration
I noticed that the version of sharekit i am using 0.2.1 is pretty outdated one. The project was moved to github and the latest version 2.0 can be found here. The home site is outdated with version 0.2.1 so follow the github link for latest update.
You might want to take a look at Socialize: http://www.GetSocialize.com, which uses the newer methods. Full feature list at http://go.GetSocialize.com/features
Good luck!
DROdio
I've been following this guide on integrating Facebook into my app. Everything is going well except for when I add in the Facebook SDK to my project.
I have added in all the code to enable SSO, however when I build and run my project I get loads of errors caused by the Facebook SDK:
I think it may be due to the sdk being out of date but I got it from the git page so I would have thought it should be compatible with iOS 5.
Maybe I need to carry out some extra steps when adding it into my project? All I did was literally drag and drop the src folder in (not the .pch and .xcodeproj files).
Please can someone help me out - I've tried searching for help online but couldn't find anything of use.
The SDK is outdated for the ARC yes. You have to turn off ARC for the SDK, check this answer out: How can I disable ARC for a single file in a project?
go to project navigator->Build Settings
set Objective-C Automatic Reference Counting to NO.
Im trying to integrate Linkedin network in my iphone app.I searched sample codes and i found one sample code in github
https://github.com/ResultsDirect/LinkedIn-iPhone
I downloaded the sample code and provided consumer and secret keys.It works good.When im trying to do this in my app,its not working.So many errors saying rdEngine.h--no such directory or file.But i imported linkedin library xcode to my app.How to import frameworks and liraries to my app?What i have to do to integrate linkedin in iphone?I want to update status of a linkedin of a user from iphone directly and i want to display the latest status of a linkedin in iphone .Please suggest me any possible ways to do this...Also tell me what are the steps i need to follow to do this.Thank you in advance..
You can find all the material and sample from this Link github repo,and you have to set up your header Path in your xcode environment as below to remove some hmac.h file not found type error
Go to the project > Targets > Build Settings
Search Header Search Paths
Add
$(SDKROOT)/usr/include/libxml2
It is working in my iphone application with LinkedIn status update,Hope it will help you
As I have already suggest you that set your HEADER SEARCH PATH, is it correct