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

Android: Adding external library to project not working

I am trying to add Jsoup library to my project, but I am getting an error in the program saying "Cannot resolve symbol 'Jsoup'". Below is what I have done, but not working. 1)From the Jsoup website, I downloaded the core library jsoup-1.10.2.jar…
jun
  • 55
  • 1
  • 10
0
votes
2 answers

Eclipse library jar files in Android studio

image here In the picture you can see the libs folder and it contans two sub folders and a jar file named unity classes. I want to merge this project with my android studio project so in this case i want to copy my eclipse project java files, res…
0
votes
1 answer

Caused by: java.lang.UnsatisfiedLinkError: com.android.tools.fd.runtime.IncrementalClassLoader$DelegateClassLoader

I build textFairy run OK but when choose image from library got error: In build.gradle I have set jniLibs.srcDir 'src/main/libs' and jni.srcDirs = []. Please help me. 10-06 02:20:10.021 25658-25658/com.renard.ocr I/NewDocumentActivity: available ram…
MR.PHONG
  • 11
  • 3
0
votes
1 answer

creating barcode scanner with zxing source code and core java

I am assigned to create a barcode scanner which wont make user install any third party app. My ADT is Android Studio 2.0, SDK 24.4.1, jdk edition 8. My target was to copy the zxing source and keep it with my app source and copy the core to the libs…
Tahmid Rahman
  • 748
  • 1
  • 8
  • 20
0
votes
0 answers

How to add External libaries to jar in intellij

to work with mp3 files on my project in Intellij I needed to use mp3spi libary. So I added it to my project libaries and everything works great when I compile my application inside IDE, but, when I build artifact it does not have my external libary…
0
votes
0 answers

add static library in qt creator

In qt creator (version 3.6.1 based on qt 5.6.0), when I try to add an extern static library using add library -> external library -> choose the lib file, linkage: static, it adds the following codes to the .pro-file: win32: LIBS += -L$$PWD/../libs/…
yangsunny
  • 656
  • 5
  • 13
  • 32
0
votes
1 answer

How to keep only armeabi in an apk when android studio creates this apk?

There are several third-party jars I have to use in my project. At the first, each jar provides a .so file in app/src/main/jniLibs/armeabi directory. After android studio run 'app', there was only an armeabi directory in app-debug.apk/lib, and…
Csharp Stark
  • 31
  • 1
  • 8
0
votes
0 answers

iOS - Zoom a view to show more its subviews

I want to zoom a view to show more its subviews. For example, I have an event timeline, I want to zoom in/out timeline to show more/less events. Can anyone suggest me some idea or libs?
nangtrung
  • 33
  • 1
  • 1
  • 8
0
votes
0 answers

Extract .jar with dependencies in eclipse to use in an Android Studio project

So I have a project made in eclipse which has 2 main folders src, where I have 2 packages with different classes, and lib, where I have some external jars that I use in my own classes. Now I should extract this project into a .jar file so I can…
lpares12
  • 3,504
  • 4
  • 24
  • 45
0
votes
0 answers

Can't install setuptools for pypy

There no file by path to custom distribute pip setup: http://python-distribute.org/distribute_setup.py That recommeded for installation. Setuptools prints the next error on linux debian: $ pypy ez_setup.py 'import site' failed AttributeError:…
Kirill Golikov
  • 1,354
  • 1
  • 13
  • 27
0
votes
1 answer

C error in linking library

I am begginer in C and I have a problem with linking .c and .h files into main.c I tried to link it and it looks like this in main.c : #include #include #include #include "hangman.h" #include "hangman.c" #include…
Radovan Kočík
  • 61
  • 1
  • 2
  • 7
0
votes
1 answer

Where to put apache http legacy jar? App / Libs folder disappeared in Android Studio 1.4

I need to be able to add .jars to my project to solve the problem of the apache http package not being available anymore. Like here: HttpClient won't import in Android Studio Problem is that the Libs as well as App folder totally disappeared from…
Rik van Velzen
  • 1,977
  • 1
  • 19
  • 37
0
votes
0 answers

Gradle try to compile before download dependencies

The project has a lot of dependencies modules (We are using Nexus). When we try to download updated dependencies, it tries to compile before download them, so Android Studio find compile errors because it still doesnt has the libs, and its stop the…
Joca
  • 45
  • 1
  • 9
0
votes
0 answers

How can I make a 'global JAR library' accessible by every project I make in Android Studio

I searched for the answer to this but came away only with solutions for how to add JAR libraries to individual projects rather than globally to all. Also please correct me on the terminology if I'm wrong regarding my concept of a global JAR. Hi I…
eodeluga
  • 608
  • 2
  • 7
  • 20
0
votes
1 answer

Removing an Android library

I am using a library in my Android project. But I need to replace it by a new one. So I removed it and added the new one to the libs/ folder. But Eclipse keeps saying : Project is missing required library:'libs/old-lib.jar' How can I do this…
saloua
  • 329
  • 1
  • 4
  • 12