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
0 answers

Cannot get local media to import into FB 4.6

Im using Flash Builder 4.6 (to maintain the Design feature since removed - I also have 4.7 - Both registered) I am rather new to this IDE and language, so excuse if my code looks awful, please forgive me, just playing with basics, I cannot for the…
0
votes
1 answer

deploy jar Java Desktop Application in jdeveloper12c

I have always developed my java NetBeans projects. When I finish my project, and automatically build "dist" folder where the main jar and a "lib" folder containing all the external jar was created. This is done automatically with the NetBeans…
jose
  • 1
  • 4
0
votes
1 answer

Config Libs produced by scons construction tool introducing LNK2019

We are using SCons build our project, including things like producing static libraries and Visual Studio project files (.sln, .vcxproj). In the SConstruct file (written in Python), we specify:…
suitmyself
  • 41
  • 7
0
votes
1 answer

Building of shared libs which depend on each other (Linux)

I have a very complex bunch of libs and executables taken over (Linux). The whole system was developed using static libraries in the past, then a couple years ago the libs are migrated to be shared libraries (-fPIC etc). Checking the dependencies I…
peters
  • 1
  • 3
0
votes
0 answers

Android - Handling android libraries (jars) in project

We face lot of problems while dealing with libraries in android project. Problems can be : Regarding versions of libraries added. Duplication of libraries in current app and library app. Sometimes we have to add library in build path sometimes we…
0
votes
0 answers

how do I specify a unique name for a Java libs folder?

How do I package a Jar so that the libs folder has a unique name? The root problem is that, for multiple Java programs on the Desktop, do they share a common libs folder? What if there are version clashes? One jar doesn't interest me as a…
Thufir
  • 8,216
  • 28
  • 125
  • 273
0
votes
1 answer

How to create the executable from multiple .o files that require external dependencies?

I need to compile a C++ project which is going to use external libraries and headers from the project for linear programming COIN-OR. It contains three .cpp files that I have successfully compiled into .o files. The main problem I have is what to do…
D1X
  • 5,025
  • 5
  • 21
  • 36
0
votes
2 answers

How to make libs editable? Possible? (coding amateur)

I use the achartengine libs and downloaded the achartengine-1.0.0.jar from google. I imported the library into my code and recognized that I can ONLY read it but I'd like to apply some patches. How can I make a library editable? I use Android…
Megaetron
  • 1,154
  • 2
  • 15
  • 29
0
votes
1 answer

How to build the achartengine library after modification?

I modified the achartengine code to optimize it for myself but how do I build the lib in AndroidStudio? (I'm new in coding) I found a build.xml file, so it should be possible to run ant jar to create the lib, but how do I do that...? or is there a…
Megaetron
  • 1,154
  • 2
  • 15
  • 29
0
votes
1 answer

error in libs folder - android

I was working on my app, editing and coding some xml and layouts when suddenly I got an error on my libs folder. It's very weird because I haven't actually modified or changed any base classes or something. Moreover, I just noticed I lost also my…
David Lasry
  • 1,407
  • 4
  • 26
  • 43
0
votes
0 answers

Trying to install SDL2 to run with visual c++, works with 32bit libs but not 64bit

I've been trying to setup Visual studio to work with SDL2, but I've encountered a problem. I've done all the linking and stuff, and everything works fine if I link the x86 libs. However, if I only change this bit, meaning I link to the x64 libs (I'm…
Frotaur
  • 113
  • 8
0
votes
1 answer

deploying play framework application on amazon ec2 (external libs)

I am trying to deploy my play application to an instance on amazon ec2. I have copied the project directory to the server and used 'play start'. It is a simple app including an index page with a form with a submit button. When I use the submit…
user2670815
0
votes
2 answers

How to make downloaded Python libs work on Windows?

I got this simple problem and I can't find the answer anywhere, I'm wasting a lot of time! I did a Python programm on Linux (which works OK), but when I try to run it on Windows, there are too problems with libs... I have installed the libs I need…
forvas
  • 9,801
  • 7
  • 62
  • 158
0
votes
0 answers

using mysql.h in codeblock

How can i fix mysql errors in my position and use mysql without any problems at codeblock c++? When i include mysql.h, only "MYSQL", "MYSQL_RES", "MYSQL_ROW" class starts to work. Code (main.cpp): #include #include "mysql/mysql.h" MYSQL…
0
votes
1 answer

Create android project using command line with jars in Libs folder

When i went through the Android documentation, it says that the following Command would create an android project. android create project --target --name --path path/to/your/project --activity…
user3088004
  • 21
  • 1
  • 2