Using Android library projects in custom builds
Android Library Projects are quite useful when you want to use your assets/resources in multiple projects.(about library projects)
Projects work nicely on Eclipse. But if you work on a custom build you will be faced with some problems.(thread1, thread2)You will see that resources not accessible on custom builds so you have to copy your files into your app project. If I have to copy, why I’m using library project?
Our team applied a method in make file and I liked to share it with you. We copy files programmatically and do not override the existing files.
In Android.mk :
include $(CLEAR_VARS)
$(shell cp -nr path_of_your_library path_of_your_project)
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_PACKAGE_NAME := YourPackageName
include $(BUILD_PACKAGE)
Hope this also helps to you!
Post comment
Blog Categories
- Actionscript (3)
- Air (4)
- Android (6)
- BLOG (4)
- Flex (3)
Recent Posts
- Using Button in ExpandableListView
- Showing flash objects in WebView
- Using Android library projects in custom builds
Archives
- June 2012
- December 2011
- October 2011
- September 2011
- July 2011
- June 2011
- August 2010
- June 2010
- May 2010
- March 2010

Posted by Ercan in