Questions tagged [libs]

It's a special folder in Java projects. It's used to store compiled libraries (jar files)

It's a special folder in Java projects.
It's used to store compiled libraries (jar files).
These libraries contain common blocks of code that may be reused inside an app.

189 questions
0
votes
1 answer

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 functionality in the app. I would like to know if I…
Rightplay
  • 1
  • 1
0
votes
1 answer

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 jniLibs folder. Can anyone help me with this. I…
tahreem
  • 23
  • 5
0
votes
1 answer

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++_shared. The two .so files are taken from a .aar…
0
votes
0 answers

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 includes those ".so" file I have removed these files…
Yash
  • 211
  • 2
  • 14
0
votes
2 answers

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 'om'". i tried to copy some file in into the project…
0
votes
0 answers

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 not work. I heve decided to take embeddable…
0
votes
1 answer

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
  • 71
  • 4
0
votes
0 answers

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 installed, 0 to remove and 0 not upgraded. 1 not fully…
0
votes
0 answers

error "/usr/local/lib/python3.10/subprocess.py"

i am using kali linux 2020.4 iso i am using this repository -----> https://github.com/SkyBulk/bin2sc Would you help me solve this error? I have the libraries installed, I don't know what error could be #python3.10 bin2sc.py shellcode.asm sc_app…
0
votes
1 answer

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:/Program Files/PCL 1.9.1/lib/' INCLUDEPATH +=…
Tony
  • 1
  • 2
0
votes
0 answers

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 (not by me) for 64bit development and it is critical…
gehirndienst
  • 424
  • 2
  • 13
0
votes
0 answers

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 out the one way is to go in .classpath file and…
CuriousDev
  • 400
  • 3
  • 11
0
votes
1 answer

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 work on double click. Here is a copy of the…
G. Trialonis
  • 83
  • 3
  • 11
0
votes
1 answer

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 questions compile is used but in android studio it…
0
votes
2 answers

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 the name var with value, the same as I did in the…
V.H
  • 43
  • 1
  • 4