library

Import Android APK archive?

Can an Android APK archive be imported into another Android project and accessed the same way as a JAR archive can? ...

Which session library should I use with CodeIgniter?

Hi everyone, I have recently started using CI and with it CI sessions, but I have noticed that one thing in particular is much more time consuming to do with CI sessions than with the base PHP sessions: Arrays. I have an array of data that persists regardless of login/logout called $_SESSION['stats'], I then store data in that array i...

iPhone static archive lib: Undefined symbol link error

I haven't found a solution for the exact problem I'm having, so perhaps someone here can help me. I've created a static archive library that uses the AVAudioPlayer class and links against the AVFoundation framework. However, when I link my app against this static library, I receive the following linker error: Undefined symbols: "_OBJ...

GWT Selectable Grid

Does anyone know of a good selectable grid for gwt google web toolkit? I need this functionality ported over for my application. Just for example I would like it work similar to pfselect for the jquery library. Thanks, ...

ClassNotFound launchig maps activity declared in Android library

I am getting this exception when trying to start an activity (TestLocationActivity) that is derived from MapActivity, and which is declared inside an Android library project: 09-08 09:29:45.357: ERROR/AndroidRuntime(7502): java.lang.NoClassDefFoundError: msumo.business.testlocation.impl.view.TestLocationActivity 09-08 09:29:45.357: ERRO...

how can i process the ipod library audio file raw data while it playing

After i get the audio file's URL in ipod library with the MPMediaPickerController. Now the question is i want process the file's raw data before it's played. what shoud i do ?? N.B. In the MPMediaPickerController Reference have a fowllow addtion explain. The URL has the custom scheme of ipod-library. For example, a URL might look like ...

.NET lib for interpreting user agent strings

Are there and .NET libs out there that will interpret stored user agent strings and give you a nice strongly typed object with the contained information? ...

Is out there any C library as simple and powerful as openAL or openCV but for Networking?

So we have: AL for audio, GL for graphics, CV for vision, FFMPEG for encoding But what library is as respectful, simple, intuitive as them for Network data streaming? What I need is generally cross-platform (at least Win + Lin) C library with simple to use but quite deep API for TCP data transmitting, receiving. ...

Can we use "Boost" librarys in our own librarys compiled under CLR?

So it is easy to create a win 32 project and use boost. I did not tried it yet but I plan to. I wonder If I can use boost in CLR mode. Is it possible? Has any one tried? ...

Can I use singleton class in a static library for iPhone?

Hello everyone, Is possible make a static library with a singleton class inside? Because I try it but without success. ...

Can I install gtk on xcode?

Hey there! I've been doing PHP for a long time now and I'd like to make some desktop applications on my Mac. I've never used C before but I installed xcode and I could do some basic things with some terminal apps. I'd like to make an application with a GUI. I don't know how to add libraries or frameworks in xcode though and I don't kno...

Using custom UI views from library in interface builder

I have 2 projects. One is a library that I am compiling to a .a file and the other is the application. The library has a class (AdFactoryView) that extends UIView that is used to display ads. Previously I was creating the AdFactoryView programmatically calling initWithFrame, now I'm trying to put the class directly into a nib and use it ...

Setting up lib haru in an iPhone project for pdf creation

Hey guys, has anyone ever setup lib haru on the iPhone and can tell me how to get it to work. I know there is a sample project on github (http://github.com/akisute/iPhonePDF) which uses the haru lib for creating a pdf. But I just can not figure out how to get the library to work. What I did so far: First I copied the support folder ...

Assert vs exception when developing the library

I am developing a library for further usage in other libraries or final products. Let's say a user uses the library in a wrong way - passing an inappropriate value to a public function, calling functions in the wrong order etc. In this case I might throw an exception, but these are usually designed for the final products and must be app...

How to add additional dlls to a .pro file?

hi, am using visual studio for my project, and i need to include a lib/dll in my application. i have included the lib for the same and compiles fine, however when i try to run it, gives me an error saying that it could not find the specified dll, adding this path in the env variable PATH solves the issue, but i do not want to do it every...

Custom Common Library Classes in Visual Studio .NET

I wrote some classes that I use with many different projects. For example, I use Library.Controls.FlatButton.cs almost in every project. The problem is when I add this as an "existing item"; the class gets created/copied in my soultion folder everytime. And each time I edit/update the contents of that class, I have to update all the Libr...

Reference library cyberlink

Hello, I reference the CyberLink library inside another target in an iPhone project. But I have some bugs while compiling when I implemented a CyberLink class. those kind of errors : Undefined symbols: "_xmlParseDocument", referenced from: _cg_libxml2_parsewrapper in libCyberLink.a(cxml_parser_libxml2.o) "_xmlGetPredefinedEnt...

Gmail and hotmail problem with Codeigniter or Godaddy?

I have setup a mail sender with the Codeigniter email library. Everything works fine until a user specifies a gmail or hotmail address as their address. eg $email = $this->input->post('[email protected]'); This is just a return address for me to reply to. The email itself is sent from a Godaddy email account. Im wondering if anyo...

Is there still a difference between a library and an API?

Whenever I ask people about the difference between an API and a library, I get different opinions. Some give this kind of definition, saying that an API is a spec and a library is an implementation... Some will tell you this type of definition, that an API is a bunch of mapped out functions, and a Library is just the distribution in co...

How to Link to a .lib file in Visual C++ 2010? Without referencing the project?

Hey Guys, I just have a problem that I have been trying to fix for the longest time. I have a static library project in visual c++, and I want another project to be able to link to it. Up until now, I have simply been adding a reference to the static library project, which automatically links the library. I want to be able to link to ...