A software development kit (SDK) is a set of development tools that allows for the creation of software for a certain hardware platform, development environment, or software package. A SDK may consist of a combination of APIs, an IDE or other development tools, and frameworks.
-1
votes
0answers
3 views
facebook Javascript SDK error
I am trying to use facebooks Javascript SDK following this reference guide.
The first step as stated there , is to load and initialize the Javascript SDK by adding after your body tag the code:
...
0
votes
0answers
9 views
How to logout facebook user everytime before calling facebook share intent on android
I just want to share a photo on facebook using share intent on android. But I also want to clear information of last logged in user before calling share intent so that every time facebook login screen ...
0
votes
0answers
23 views
Facebook iOS integration issue
I'm trying to integrate Facebook into my game application on iOS. So I decided to follow the tutorial on tutorial for ios sdk games
I managed to implement the facebook login/logout and also news feed ...
0
votes
0answers
27 views
Android app shows for lower version than manifest
I have released an app on the android market. I am trying to target only android 4.0 and higher. I've set the minsdkversion in the manifest to 14. However, when its published to the market, the ...
0
votes
0answers
24 views
Change android target version with eclipse
I was working on android 4.2 (API 17), but I am testing with a device in Android 4.1 (API 16). So I changed The minSdkVersion et the target sdk by going right clicking on the project then selecting ...
0
votes
1answer
13 views
Facebook C# SDK - locate specific album on a fan page and post to it
Using C# SDK, I'm currently posting photos directly to the Facebook fan page wall.
The current posting path is as follows: "/PageID/photos".
I need to post to a specific album on this page, e.g. ...
0
votes
0answers
8 views
c# sdk - How do i use feed dialog to send a message or post on a friend's wall?
I am working with C#, currently on a WPF application.
After hours of searching online, i found out that i cannot send messages to a friend or post on a friend's wall using graph API.
The old way ...
0
votes
1answer
44 views
JAVA is required to run android project in eclipse for windows 7 [duplicate]
I am newbie to android so i wonder java installation is required to run android project from eclipse SDK ?
If it is required then i already installed it. Then why i am getting this error:Error while ...
-1
votes
1answer
19 views
Download older versions of the DirectX SDK [closed]
I am looking for older versions of the DirectX SDK. I'm interested purely from an educational perspective and am particularly interested in the documentation files. Particularly to view first hand the ...
0
votes
1answer
17 views
Error from inside the Android tools, check the console - in processing 2.0 , Android Mode
The problem summary:
I cannot run the programs on android device, nor in emulator. I installed Android SDK 2.33 (API10) and all the components, also 4.1 and higher. I installed new USB drivers for HTC ...
3
votes
3answers
42 views
Developing app for 10.8+ but using 10.9 SDK
Mavericks is coming out and for developers that's always a busy time with all these new features and APIs to know about and use. For me, I think it is the perfect time to ask a question that has been ...
-1
votes
2answers
29 views
How to show camera in a view?
What I need is an answer to what I think is a simple question. How can I on my view display the iPhone's camera as the Camera.app does?
So again to recap, I need to display a camera view on my ...
1
vote
5answers
53 views
Am I able to use JavaScript with the Java SDK?
I want to create a mod for Minecraft, and I am aware it uses Java. I am currently learning JavaScript, and was wondering if I am able to use JavaScript for the SDK.
0
votes
1answer
12 views
How do you verify integrity of data passed through AWS SQS using C# SDK?
First off, does the AWS C# SDK self check itself? Right now, I have code that does stuff like
md5 checking
List<string> msgs = new List<string>();
ReceiveMessageResponse response = ...
0
votes
1answer
21 views
file not found exception facebook graph
the code is:
URL img_url = new URL("http://graph.facebook.com/"+id+"/picture?type=small");
Bitmap bm = BitmapFactory.decodeStream(img_url.openConnection().getInputStream());
when excecuted, it ...