Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
956 views

How do I reference external jar files in a common directory (not libs) to build android project using ant?

I would like to build several android projects that reference the same jar files using ant. I do not want to copy the jar file to each libs directory in the project (due to how the soruce control tree ...
4
votes
3answers
232 views

c++ What files and libs to include?

Many times I find useful code examples on the Internet. About half of the time they don't specify what files to include or even what libs to include on the command line with -l. How do you usually ...
4
votes
2answers
647 views

Multiple grails applications on Tomcat

I'm about to deploy several grails apps on top of a single Tomcat server, and I have the following doubts: In terms of memory usage: Does it make a difference to put the common grails libs under ...
3
votes
2answers
112 views

whats are *.so.*.* libs

When I do ls -l in /usr/lib I see lots of libs with "sameName.so.*.*" extension. What is the significance of these extensions? Why softlinks are created? what are their use? One example will help ...
3
votes
6answers
2k views

c++ mix new/delete between libs?

if i use the new keyword in my lib which is built differently then my main app. when i delete it in my main app with delete is there a chance that i may get a crash/error?
2
votes
4answers
282 views

What's the best way to format a phone number in Python?

If all I have is a string of 10 or more digits, how can I format this as a phone number? Some trivial examples: 555-5555 555-555-5555 1-800-555-5555 I know those aren't the only ways to format ...
1
vote
1answer
310 views

How to use a Qt 4 plugin or self developed plugin in qt application?

I'm trying to make a simple application for calendar and it doesn't seem to link properly. Platform: WinXP, Qt: 4.5.3 with MinGW The application is trying to use a predeveloped qt plugin ...
0
votes
1answer
46 views

CMake project using a library that depends on another library

I have a problem with the usage of CMake on Linux 64 bit. I have a sample in C that must link to a library (xr_arp.a) which has a link dependency on another lib (libcrypto.a). The following makefile ...
0
votes
2answers
82 views

Simple frame grabber from video file

I would like to find simple lib for my C++ project which can start thread with video and audio decoding and I can grab some frames? I try to explain my expectations about lib API and behavior in ...
0
votes
0answers
31 views

List all libs, modules and binary components that is inside an Android build package

Is there a way to search inside an Android build and figure out wich components and libs are inside it? The basic idea here is to find out wich components and libs my build has, and then search over ...
0
votes
2answers
628 views

android mupdf libmupdf.so runtime error “No implementation found for native openFile”

I just finished compiling mupdf from mupdf.com on my mac. Took some time to figure it out but now I have a libmupdf.so in my libs/armeabi folder. They provide an example of this class called ...
0
votes
1answer
19 views

Compiler definitions of source code linked to lib change lib?

I have file A.cpp that has targetlibs=Lib.lib on the sources file. Lib.cpp was compiled with C_defines=-DSomething, but A.cpp is compiled with C_defines=-DOther. Lib.pp contains #ifdefs for ...
0
votes
1answer
189 views

libs-for-android: Example with JsonContentHandler?

i'm using feed.jar of libs-for-android, and i need to parse json data. I've founded JsonContentHandler.java class similar to XmlContentHandler.java used in demos. Can you give me an example on how to ...
0
votes
0answers
113 views

Need tutorials on libs-for-android

do you know project libs-for-android hosted on google code https://code.google.com/p/libs-for-android/? Well, i want to use it, but i need tutorials. Can you give me tutorials on how to use ...
0
votes
2answers
427 views

win32:libs undefined reference

I want to link a .lib in my Qt project and I get an error about an undefined reference to vhtIOConn::getDefault(vhtIOConn::DeviceType). I have already added the following specifications to the .pro ...