Questions tagged [libraries]

Use this tag for questions about software libraries. This tag is NOT for questions about computer programs used in public lending libraries or other brick-and-mortar libraries. Questions asking us to recommend or find a library are off-topic.

A library is a collection of non-volatile resources used by programs on a computer, often to develop software.

Libraries contain code and data that provide services to independent programs. This encourages the sharing and changing of code and data in a modular fashion, and eases the distribution of the code and data. Library files are not executable programs. They are either static libraries that are merged with an executable when the executable is being compiled and linked, making them "statically linked", or they are dynamic libraries that are loaded by a dynamic linker while the executable is running, making them "dynamically linked". The dynamic linker may also allow an application to explicitly request that a module be loaded and to obtain references to routines in the module; this can be used to implement plug-ins.

The above was taken from the Wikipedia entry Library (computing).


Questions asking us to recommend or find a library, documentation or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam.

3395 questions
1
vote
1 answer

Android Studio: Trying to compile a c++ multiple libraries code with interdependencies

This is my code structure: main executable(CMakeLists.txt) | base library(CMakeLists.txt) profiler library(CMakeLists.txt) log library(CMakeLists.txt) Every library is using the base library. The main is using every library. Actually this is…
Iñigo
  • 97
  • 6
1
vote
1 answer

how to install Blogger API to Android Studio

I'm making an app which gathers public data from a blog. I infered I should use the blogger api. I downloaded it from here . Since I have never used 3rd party libraries in android I don't know how to actually use it in the app. How do I do that? I…
ParmuTownley
  • 957
  • 2
  • 14
  • 34
1
vote
2 answers

Arduino - Select header for DHT Sensor Based on Chip (ESP32 vs ESP8266)

I'll start by saying I'm not a C++/Arduino expert but I've played enough with this issue and googled enough where I can't figure it out. I have some Arduino code that is calling a sensor library file which then is calling the DHT library…
ADY
  • 101
  • 1
  • 9
1
vote
3 answers

How do external java libraries(jars) actually work?

A lot of times in Java we want to use some functionality that is given to us in the form of JARs(ex. some external library). Most often than not I've noticed that JARs contain .class files. Since .class files represent compiled bytecode ready for…
Mr. Nicky
  • 1,519
  • 3
  • 18
  • 34
1
vote
1 answer

Android studio linking external library in c++ in Windows

Can someone explain to me how to properly link external library in written in C++ in ndk project? I'm trying to use SDL library as described in this video : https://www.youtube.com/watch?v=BSBISI0sCqo&t=306s but problem occurs when i try to execute…
1
vote
1 answer

What's happening under the hood when a library dependency is excluded in gradle?

Today I started building a library for my company so we could avoid some duplicate code across a few of our apps. The library uses a few dependencies that are duplicated in the apps. In this case, Retrofit and Eventbus. Anyhow when I included my…
1
vote
0 answers

Export code to JAR with libraries

Currently I'm trying to export my code to a Jar file that I can run from my desktop. The problem I am encountering is that when I am trying to run it, some of the buttons do not work, which is not the case when running the same program in…
Gregdl
  • 11
  • 4
1
vote
1 answer

Pyaudio 2.11 Installation Fail

If I try installing PyAudio 2.11 using python setup.py install I get an error (only copied the error section, not the entire output): src/_portaudiomodule.c(29) : fatal error C1083: Cannot open include file: 'portaudio.h': No such file or…
TobyTobyo
  • 405
  • 2
  • 6
  • 20
1
vote
3 answers

How to run a Python script on your server and import libraries

I'm currently launching my website and I want my Python script to be run. However, it does not work when I run it because it depends on 5 libraries. How do you link them to your code? For example, I use pymysql to write data to my host's database.…
sammtt
  • 401
  • 1
  • 6
  • 14
1
vote
1 answer

How to set specific JQuery version using JavaScript Libraries in DNN

How can I set the specific version of the JQuery I would like to use in Code using JavaScript Libraries in DNN? There are documentation, but it is not specifically showing the exact parameters in brackets. I had a look at this wiki:…
Tig7r
  • 525
  • 1
  • 4
  • 21
1
vote
1 answer

Framework manage libraries

I have a framework which depends on multiple third party libraries. I would like to share my framework easily. For example the user needs only my includes and add my lib to use my framework, and not all the dependencies. I use CMake to create my…
F4r3n
  • 35
  • 1
  • 6
1
vote
0 answers

gcc :how to specify architecture?

How can I specify architecture when I build a library? I need to build a library in armeabi-v7a for an Android project. I found -march option, so this is my command : $ gcc -shared -o liballnet.so -fPIC *.c -march=armv7-a But it doesn't work…
Hippo
  • 91
  • 1
  • 8
1
vote
1 answer

What other Freemarker JSP Tag libraries are out-there?

I have been using Freemarker for a while and found displaytag library very useful. I just wondering if there are any other libraries that could be used in similar means as displaytag, which have been very helpful to you in development: FTL…
MatBanik
  • 26,356
  • 39
  • 116
  • 178
1
vote
1 answer

How to setup processingjs library on html?

I realise the exact same question has been asked already however, the answers did not work for me: How do you setup processingJS on html? I pasted exactly what was suggested but still no result. The processingjs website…
1
vote
0 answers

Javascript library able to support big numbers whose exponent is also a big number

I am looking for a Javascript library able to work with very, very, very big numbers (I only need a precision of a few digits after the decimal point so it should be possible) which is able to work with numbers of the form 5e+(7e+194) for example,…
Bary12
  • 1,060
  • 9
  • 23