tags:

views:

157

answers:

2

I am successfully linking some of my code stored in a .jar-based library to my Android app. The .jar code references Android library content just fine.

The problem is I need to include 'res' resources in the library but can't work out how to do this.

Any suggestions?

A: 

This looks like a dup of this: http://stackoverflow.com/questions/2394603/distributing-a-java-program-with-content. You may want to take a look at the answers there.

vkraemer
It's similar, and useful, but not quite the same because Android has its own particular way of handling resources (the *.Resources object, the 'res' folder, and cross-references to these in resource .xml files).
Jim Blackler
A: 

This discussion http://www.anddev.org/viewtopic.php?p=30725 indicates this isn't currently possible.

Jim Blackler