Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.
Filter by
Sorted by
Tagged with
0 votes
0 answers
62 views

GMP 4.2 linker failure - multiple definitions in assert.o

I need to compile an old version of GCC and it requires also old version of several libs. One of them is gmp-4.2. When trying to build gmp 4.2, ./configure is performed without errors, but make is ...
KmsDev's user avatar
  • 1
0 votes
0 answers
53 views

ANR Issue in SDK initialisation

I'm encountering a strange behavior in my Android app on some devices running Android +11. Occasionally, the app gets an ANR (Application Not Responding) in the background, specifically in the ...
etoile du sahel Alen's user avatar
0 votes
1 answer
60 views

How can I solve this error with the toutube-download-cli library?

The error occurs when I install the library with the command pip install youtube-download-cli and run the following command in the terminal youtube-download-cli “https://www.youtube.com/watch?v=...
j0k3r's user avatar
  • 1
0 votes
1 answer
1k views

How can I resolve this error in Pyinstaller?

My computer is Windows 11, and when I run the command pyinstaller --onefile file.py after installing the library with pip3 install pyinstaller, I get the following error: "pyinstaller is not ...
j0k3r's user avatar
  • 1
1 vote
0 answers
108 views

QT undefined reference to external lib function

I'm new to c++ and currently trying to create QT login-register GUI app with hashing passwords. For Bcrypt I'm using this library So, I copied it, created binaries with CMake GUI and than builded them ...
myACEY's user avatar
  • 11
0 votes
0 answers
18 views

CLion: Issues Integrating graphics.h [duplicate]

How can I connect graphics.h to my C Lion project. I've been trying for days, but it's not working. Who has experience in this, please help (I'm probably too dumb for this) I tried to add the graphics....
mistelltein's user avatar
0 votes
1 answer
111 views

Android | Allow different libs version in the same project

tl;dr My question is: how can my app use those "Some AAR lib" and each of those libs can use it's own version of the "Base code lib"? So I'm struggling with this subject quite some ...
mobihen's user avatar
  • 335
0 votes
0 answers
292 views

How to detect macOS version?

I am trying to build a lib for macOS and Linux. The reason I am writing is to know how to detect macOS 11+ and Linux in a header file. I have the structure on cmake, and it's building, but the os.h ...
Pedro Vicente's user avatar
0 votes
1 answer
742 views

Specifying install/output dir for lib and executables generated by gn/ninja

I using gn for generating ninja files, and ninja to build them, but I cannot achieve one thing in specific I want to copy/move my builded libs to given path. In gn doku I found things as output_dir or ...
AnDevi's user avatar
  • 111
2 votes
0 answers
2k views

NX: How to build all libraries belonging to a grouping folder

I have developed a library "A" made of several modules ("x", "y", "z") with the following folders structure: project + apps - libs + A - B - x ...
smartmouse's user avatar
  • 14.5k
1 vote
0 answers
53 views

Android Studio - Lib Folder not showing up (libs/ lib)?

enter image description here This is everything I am getting upon creating a flutter project. Please HELP! I tried switching to "Project", look at the image and it shows all of the below. ...
StableTor's user avatar
-1 votes
1 answer
2k views

No libs and no main.dart file in New Flutter Project on Android Studio

I'm beginner of programing. I've already installed Flutter and Dart in my plugins. I created New Flutter project but I can't find libs file. How can I solve this problem? macOS 13.2 Intel Core i5 I ...
dack's user avatar
  • 11
0 votes
0 answers
61 views

.so libraries in Android Studio

I'm using scripts from an old project, but the sources are already lost In an old application, I used the library like this: public class x2.X { static { System.loadLibrary("x2"); } public ...
Master's user avatar
  • 13
0 votes
0 answers
40 views

Solving libjscexecutor.so error appearing in Crashlytics

I am constantly seeing the following error in the application on the Crashlytics. Since this error did not occur on my own device, I cannot see if my fixes will work. What is the exact solution to ...
Nemesis's user avatar
  • 361
1 vote
0 answers
156 views

golang with imported c lib problems

I use a USB Device wit a single Button and LED inside. I tested software to change color of the device, API for the hardware is only implemented in c: https://github.com/katie-snow/Ultimarc-linux To ...
TrailSurfer's user avatar
0 votes
1 answer
227 views

lib for custom password input with type text

In our site we have two input field with type password - for login and for password. Because of this, now autofill are working incorrect. Browsers dont remember login and paste password to login field....
Gelloiss's user avatar
  • 234
14 votes
4 answers
117k views

How can I resolve this issue: libm.so.6: version `GLIBC_2.29' not found, C/C++?

When I've tried to execute my C++ demo app on RPI CM4, app that was cross compiled on Ubuntu OS: $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.1 ...
User's user avatar
  • 197
0 votes
1 answer
46 views

How to add external cpp libs to cmake project and pass to linker

I have a project constructed from multiple git repos, I want to use some external open source libs in it (lets say lib1 lib2). I have added the libs to the root cmake and to the subproject cmake: root ...
Atheel Massalha's user avatar
0 votes
1 answer
170 views

How to install folder packages to local venv from another local venv

I have an anaconda env with a set of packages. I also have an python project which has an empty venv with python and pip. I need to install some packages from conda's env into an empty project. For ...
Alex Vareze's user avatar
0 votes
1 answer
790 views

How to prevent .so files in jniLibs folders from being shrink

I created an app which uses native codes, when I compile it Android Studio in debug type app works perfectly but when I generate a signed aab file, the jniLibs files get compressed and it breaks ...
Rightplay's user avatar
1 vote
1 answer
5k views

how to use environment variables in nx monorepo libs, exporting to multiple Nextjs apps

I'd like to load some environment variables into functions within my libs, and then be able to re-export this to several different Nextjs applications. i.e. Within libs/api export const ...
reeslabree's user avatar
1 vote
2 answers
4k views

Getting java.lang.UnsatisfiedLinkError: No implementation found for error

I am using a third party library for printing purposes in my Kotlin Android app. I am getting this error when running the application and clicking the print button. I have added the .so files in the ...
tahreem's user avatar
  • 63
0 votes
1 answer
183 views

Importing python script from some directory with dependent scripts

I have the following problem and would like to ask you what is the best way to solve it. I the following structure of files: Main Folder 1.1 Subfolder1 1.1.1 SubSubfolder1 I have main python script ...
NairB's user avatar
  • 1
0 votes
1 answer
2k views

LibC++_shared is Present in APK but Not Found When Loading Libraries During Execution?

I'm working on an Android project with a pre-compiled .so file for OpenCV. The original distribution I used as my base (courtesy of QuickBird Studios) contains 2 .so files: libopencv_java4 and libc++...
Aulzeren0r's user avatar
0 votes
0 answers
532 views

how to remove .so file in android studio?

I have added scanLiabray and OpenCV to my project so I have to add some lib(check-in image). Now I don't need the above 2 modules so I remove and delete those. but when I generate APK it still ...
Yash's user avatar
  • 291
0 votes
2 answers
4k views

how to import Library in Android Studio

i'm new in Android Development and try to import some libraries in Android Studio for example. import android.content.om.OverlayInfo; if i try to use it i got the message "cannot resolve symol '...
Rafael Jan's user avatar
0 votes
0 answers
61 views

Why does embeddable python use user space for libs searching

I have an C++ app for Windows. It runs python script to calculate something. There is problem on user side because some libraries don`t want to be installed by pip with latest python and script does ...
G. Batuchenko's user avatar
-2 votes
1 answer
280 views

How to solve Error importing: pycurl lib. To install it on Debian based systems: $ 'sudo apt-get install python3-pycurl'

can someone help me i get this error when i try starting ufonet https://github.com/epsylon/ufonet I get this: Error importing: pycurl lib. To install it on Debian based systems: $ 'sudo apt-get ...
sinaj288's user avatar
2 votes
2 answers
249 views

Why do some libs use non-const char * as function argument?

Sometimes using pure-C libs in my C++ projects, I see strange (in my opinion) function declarations. E.g.: libldap's ldap_search_ext(): https://linux.die.net/man/3/ldap_search_ext_s int ...
Vitalii Kolmakov's user avatar
2 votes
1 answer
1k views

Android Repository not working in library module

I have got a project with app module and a library module. The app module can import library module properly. But the weird thing happens when I tried to get dependencies inside library module by ...
Panda World's user avatar
  • 2,026
0 votes
1 answer
126 views

Helidon override libs folder

Is it possible to override the libs folder in helidon project? I want to copy jars to classpath at runtime. I was able to use -Dweblogic.ext.dirs to do that in weblogic server.
jiii's user avatar
  • 61
0 votes
0 answers
502 views

Program doesn't find installed lib in Linux

I'm using a Raspberry Pi 4 with Ubuntu 20.04 LTS for ARM(arm64). After trying to install .deb file of Winscribe(armhf), logs show that I miss some package and installed it: 0 upgraded, 0 newly ...
TungstenSteel's user avatar
1 vote
2 answers
14k views

ImportError: No module named libs

I am trying to run this code named recognize-from-microphone.py in the terminal. The code is extensive so I will not type the whole thing out. The goal of the code is to recognize audio from the usb ...
David Esquivel's user avatar
5 votes
3 answers
5k views

Execution failed for task ':app:lintVitalRelease'. > Could not resolve all artifacts for configuration ':app:debugRuntimeClasspath'

I am getting this error when running 'flutter run --release' in the terminal. I am looking if someone can give suggestion to resolve this issue. I tried many solutions found in internet, but it did ...
Vincent's user avatar
  • 278
-1 votes
1 answer
293 views

I can't find the downloaded libs folder

I can't find my libs folders, I looked everywhere, I download a lib but it doesn't show up, I need help enter image description here
Gabriel's user avatar
3 votes
1 answer
2k views

Using third party Python modules in QGIS

I developed a QGIS plugin that uses third party libraries. The current situation is that the user of the plugin, has to install some Python libs into QGIS, before he/she can use my plugin. Every time ...
nlrmcm's user avatar
  • 31
5 votes
1 answer
3k views

How do I embed a native code library in an Android app (SDK 29+)?

I have an app that uses a native code library -- a custom build of ffmpeg as it happens, though that isn't strictly relevant. Up until now I have added the executable to my res/raw directory and then ...
Ben's user avatar
  • 2,101
0 votes
1 answer
2k views

How to add many libraries in Qt Creator (via project file)

I have directory with many third-party libs (100 libs) and have directory with include files. How can I add all external libs in my project (in project file)? I try that: Myproject.pro LIBS += -L'C:/...
Tony's user avatar
  • 1
0 votes
0 answers
246 views

How to add 32bit SWT libraries instead of 64bit ones in eclipse 4 RCP plugin project?

I have 64bit Windows, 64 bit eclipse and both 32 and 64 bit jre installed. What I want to do: I have some 32bit process, to which I want to attach a GUI made in e4. My eclipse is fully configured (...
gehirndienst's user avatar
1 vote
1 answer
9k views

Apk does not include arm64-v8a folder in libs but my project has .so file under jnilibs/arm64-v8a/xyz.so

My project require native library and I have generated .so files for 'x86', 'x86_64', 'armeabi-v7a', 'arm64_v8a' architectures. In app gradle also I have defined ndk support for following ndk....
Pirate's user avatar
  • 545
0 votes
0 answers
47 views

How to rectify all valid libs in a java project?

I am migrating a java project into a Maven project , so i have to check/validate all listed libs to figure out the uses ones.I mean i have to exclude the not using libraries (jar files). So i figured ...
CuriousDev's user avatar
3 votes
2 answers
923 views

Include same header file for different libs

I have a C++ project with the following structure: CMakeLists.txt code/ libClient/ CMakeLists.txt include/ LibClient/ lib_client.h src/ lib_client.cpp ...
Morgijl's user avatar
  • 31
0 votes
1 answer
4k views

pyinstaller warnings stopped but executable file does not work

Why does the executable not work? I followed the top instructions of an older, similar, problem and the warnings (missing dlls) stopped, the executable was created in the dist folder but it does not ...
G. Trialonis's user avatar
1 vote
0 answers
860 views

How to fix "undefined reference to `YAML::operator<<(std::ostream&, YAML::Node const&)'" in cmake

I did a project in manjaro, then decided to switch to ubuntu and everything flew to hell. I've installed libpoco-dev, libtinyxml2-dev and libyaml-cpp-dev my cmakelist file: cmake_minimum_required(...
dedicat4d's user avatar
1 vote
0 answers
138 views

Trouble converting .py file to .exe due to errors

Im trying to convert .py script into .exe and im getting warnings about lib not found. can someone help? I've looked everywhere. Sorry to say i have no knowledge in using python, my dev is away and i ...
zZehix's user avatar
  • 109
0 votes
1 answer
213 views

The problem with the addition .jar file to project

Added two custom zxing and zbar libraries for reading and generating barcodes via File>New> Jar.file added them after in Project Structure too added them and chose implementation in all already open ...
georgiy110802's user avatar
1 vote
1 answer
2k views

How to setup a C development environment on Linux for GTK+?

I'm new to programming C in Linux. I like to make GUIs with GTKlibs. The only problem is that im unable - and not only with gtk - to install these packages correctly. I have problem to include the ...
RandomDev's user avatar
0 votes
2 answers
916 views

Mad Libs in JavaScript - Dom Event

I'm not sure what I'm doing wrong. I'm taking 3 inputs: noun, adjective, and person. I keep getting: "Generated story: I took my cat and play it. [object HTMLInputElement] didn't like it." I'm using ...
V.H's user avatar
  • 43
0 votes
0 answers
541 views

How to load a QML plugin like a dependency for another QML plugin?

I have 2 QML Plugins: icL.Look and icL.Editor, the second depend by the first. If I exclude the dependency all are working OK. But I need it. So when I run the app I get the next error qrc:/windows/...
L.V.A's user avatar
  • 184
0 votes
1 answer
634 views

import class of libs in the Android Studio project is locked

I copied the commons-io-2.6.jr into libs folder, and I've decompressed it. But the icon shows classes were locked. The FileUtils class can not be used.
franklin someone's user avatar