Can I Make An Android Library Which Contains Resource Files?
I want to make an Android library which contains drawable resource files. But I wonder if the library's resource IDs might conflict with the application resouce IDs. Is it possibl
Solution 1:
This is exactly the main idea behing Android Library Projects, to share code and resources among projects.
An Android library project is a development project that holds shared Android source code and resources. Other Android application projects can reference the library project and, at build time, include its compiled sources in their .apk files. Multiple application projects can reference the same library project and any single application project can reference multiple library projects.
See the details at Library Projects
Post a Comment for "Can I Make An Android Library Which Contains Resource Files?"