Questions tagged [sdk]

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.

A software development kit (SDK) is typically a set of development tools that allows for the creation of software or firmware for one or more of the following:

  • operating systems ();
  • hardware platforms () (e.g. desktop computers, mobile devices, gaming consoles, etc.);
  • hardware accessories () (e.g. external GPS hardware, barcode scanners, etc.);
  • software package () (e.g. advanced image processing, barcoding library, ERP, etc.).

While the term SDK may be narrowly interpreted as being simply an API, it may also be construed as including any combination of the following:

  • application programming interface ();
  • frameworks (); and/or
  • development tools, notably an integrated development environment ()
13802 questions
3
votes
3 answers

Sending notification to Mi Band 5 from Android app

I want to develop a simple application which sends custom notifications from android phone. Is there any open source SDK for Mi Band 5 for that? Is that possible to create watch face which displays a value from custom datasource which is received…
Norbert
  • 292
  • 1
  • 7
  • 17
3
votes
5 answers

Flutter requires Android SDK 29 and the Android BuildTools 28.0.3 while having both

I try to install Flutter following official doc but when I run flutter doctor I have the following issue (which is my title): In Android studio I have the following SDK installed: I checked these links but none helped me: Flutter requires…
Skunka
  • 149
  • 2
  • 9
3
votes
4 answers

use static Java methods as static (or singleton) properties in Kotlin

My SDK exposes a Java interface that has only static methods, e.g. public interface MyDevice { public static void setLocation(Location location) {…} public static Location getLocation() {…} } In Java app that uses the SDK, my customers can use…
Alex Cohn
  • 52,705
  • 8
  • 94
  • 269
3
votes
1 answer

How do I create a Silverlight 4 dll that Silverlight 3 applications cannot consume?

I have compiled a silverlight library that is set to Silverlight version 4 in the project properties. It consumes a dll with silverlight 4 dependencies. When I am on a system that only has silverlight 3 installed, I can reference the original…
3
votes
1 answer

CA Siteminder, Agent.Init() fails indecisively

While using CA Siteminder's JAVA SDK API we noticed a starnge issue that sometimes the init fails randomly. Also re-initializtions happens later with no change in the system. It's little alarming and unexpected. Since AgentAPI is majorly connecting…
Soumen
  • 996
  • 1
  • 10
  • 19
3
votes
2 answers

Problem to install Mixpanel SDK - React Native

I need to configure the mixpanel in my work and for that I created a test project to understand how to configure the mixpanel SDK. I followed the basic examples in the documentation. https://github.com/davodesign84/react-native-mixpanel But I'm…
3
votes
2 answers

Unhandled promise rejection on SDK39 - SplashScreen

I have migrated to SDK 39. Upon loading the react-native + expo project on production mode, expo throws the following yellow message: [Unhandled promise rejection: Error: No native splash screen registered for provided activity. Please configure…
Tiago
  • 113
  • 1
  • 8
3
votes
2 answers

Best way to run bash script on Google Cloud to bulk download to Bucket

I am very new to using Google cloud and cloud servers, and I am stuck on a very basic question. I would like to bulk download some ~60,000 csv.gz files from an internet server (with permission). I compiled a bunch of curl scripts that pipe into a…
morepenguins
  • 823
  • 7
  • 16
3
votes
2 answers

NSURLConnection does not refresh

I have a NSURLConnection which I am calling every time -(void)viewWillAppear:animated is called (that's only for now, it's just for testing) I am doing it like this receivedData = [[NSMutableData data] retain]; NSString *urlString = @"
simonbs
  • 7,543
  • 12
  • 64
  • 112
3
votes
3 answers

Can having spaces in the Android SDK path cause problems in Eclipse?

I have installed my Android SDK to the default path on a Windows 7 PC, i.e.: C:\Program Files (x86)\Android\android-sdk I specify the location of my SDK in Eclipse, but it forgets it every time Eclipse is launched with a new sample project. Edit:…
Optimus
  • 2,507
  • 3
  • 26
  • 45
3
votes
3 answers

How to download dotnet-sdk-2.2 on ubuntu 20.04 focal?

I've been trying to download netcore 2.2 on ubuntu, Ive tried with apt and I have no luck I get the package not found error. I also tried downloading the binaries and registering the path but it doesn't seem to work. Is it just not possible at all?
3
votes
7 answers

Android Problem: Eclipse cannot find ADB.exe

First, I know this problem has been asked before, namely : Could not find adb.exe on my tools folder but I tried every answer given and none work (even the accepted answer). My problem is that I updated the Android SDK and now Eclipse cannot find…
user485498
3
votes
1 answer

AIR to ANDROID 2.1 - problem - what air/flex sdk?

I am using flahsdevelop + android tools I can create ANDROID 2.3 without any problems. I have a problem compiling it to Android 2.1. The AIR swf is compiled with flex 4.5 sdk + air 2.5 sdk. Are these ok for android 2.1? If not, which versions of…
cricet
  • 31
  • 1
3
votes
1 answer

Run MIP SDK with .NET Core 3.1

I set up the MIP SDK sample project following the instructions and everything is working well if i'm using the .NET Framework 4.6.1 provided by the sample; but i'm receiving the followng exception at MIP.CreateMipContext(appInfo, "mip_data",…
rpart
  • 41
  • 4
3
votes
3 answers

Flutter error Kotlin could not find the required JDK tools

I first created a new flutter project. But I got this error: * What went wrong: Execution failed for task ':app:compileDebugKotlin'. > Kotlin could not find the required JDK tools in the Java installation 'C:\Program Files\Java\jre1.8.0_261' used by…
user13958357
1 2 3
99
100