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
3
votes
1 answer

Same ValueStack for 2 different struts apps

Im running my sruts 2 (2.1.8.1) applications in a jboss AS (5.1.0-GA). Im placing a.war and b.war in the same /server/default/deploy path and im placing the struts 2 libs in the /server/default/lib path. There is no error message in the app or the…
Ferdinand
  • 33
  • 4
3
votes
1 answer

How to create distro-specific conditional qmake project

Suppose I write code on 2 computers which runs different linux distros. How to make qmake differ those two distros and assign specific LIBS for those two. For instance; unix: { ubuntu*: { LIBS += -lcxcore -lhighgui -lm } …
tarik
  • 153
  • 2
  • 10
2
votes
1 answer

Organizing External Libs in Git for Several Projects

The Problem I want my company to store all the included external libs in source control, but I would like these external libs to be in a single repo (not included in each individual project) as there's quite a few libs, and they are large. Prior…
Soyoung
  • 21
  • 2
2
votes
0 answers

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 - src - lib + components + services …
smartmouse
  • 13,912
  • 34
  • 100
  • 166
2
votes
2 answers

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 ldap_search_ext( LDAP *ld, char *base, int…
2
votes
1 answer

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 at runtime extracted it to a data folder before…
Ben
  • 1,881
  • 17
  • 20
2
votes
0 answers

Unable to load libraries(.so files) in System Application

My application works fine if i install it as a Normal application. When i tried to make my application as a System App its failing to load the native libraries. Following are the steps followed in order to make my application as System App. 1)…
Lloyd Dcosta
  • 289
  • 2
  • 11
2
votes
1 answer

Install GLIBCXX_3.4.15 on Centos 6.9

I have a problem when I try to start my server Garry's Mod. Here is the error I get Failed to open dedicated_srv.so (/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by bin/dedicated_srv.so)) Add "-debug" to the ./srcds_run…
Matt
  • 21
  • 1
  • 1
  • 3
2
votes
1 answer

C++ Cassandra build error

Hello i have a problem with building my code in c++. I have installed cassandra on my Mac OS and all libraries that i need from datastax. But when i build my test project i always get Undefined symbols for architecture x86_64: …
Anonymous7
  • 23
  • 2
2
votes
1 answer

How I can include OpenSSL in my Qt program on Linux?

In my Qt program I have to convert a string to a hash. I want to use OpenSSL on Debian. Little brief of my code: #include ... unsigned char data[] = "data to hash"; unsigned char hash[SHA512_DIGEST_LENGTH]; SHA512(data, sizeof(data)…
Hack Facilito
  • 71
  • 1
  • 8
2
votes
1 answer

cmake can't find my static libs

I have this directory struct: ├── bin ├── build ├── calculator │   ├── build │   ├── calculator.c │   └── CMakeLists.txt ├── CMakeLists.txt ├── compcalc │   ├── build │   ├── CMakeLists.txt │   ├── compcalc.c │   └── compcalc.h ├── include │   └──…
Tim Edwards
  • 97
  • 1
  • 2
  • 13
2
votes
0 answers

How do i know which .SO files belong to each framework

i have a big Android project with multiple frameworks. When i generate the APK and unzip it i have multiple libs/armeabi-v7a/*.so files - the files names are very different from the frameworks names in the project. Is there a way to know which .so…
MTZ4
  • 2,274
  • 2
  • 25
  • 41
2
votes
1 answer

Error inflating class - CircularImageView

I'm trying to use this project in my android application. My list_style.xml looks like
krzk
  • 363
  • 5
  • 14
2
votes
2 answers

Duplicate class in two offcial android libs, gradle fails

I'm using a library that requires activate render script support mode. Like this defaultConfig { minSdkVersion 14 targetSdkVersion 23 renderscriptTargetApi 20 renderscriptSupportModeEnabled true } But when I try to run the app, I have…
Hector
  • 129
  • 16
2
votes
1 answer

ZBar crashing Android Studio

I'm trying to use the ZBar libraries in my project on Android Studio. I copy the armeabi armeabi-v7a and x86 folders inside libs folder of my project. I also copy the zbar.jar file inside libs. The MainActivity and CameraPreview files are…
gabboSonc
  • 351
  • 2
  • 4
  • 16
1 2
3
12 13