Creating and Using Code Libraries
If there are parts of your codebase that you use repeatedly, rather than copy the code into multiple mobile application projects, you can create a library that you can reference in your mobile applications. To create a library, you precompile the parts of your codebase that you want to reference into separate libraries. Building a library of frequently-used code allows you to avoid repeated cross compilation of the code you add to the library and speeds up development.