On Dec 10, 2:58 pm, WoodManEXP <woodman...@gmail.com> wrote:
> Yes I would like to avoid the copy/pasting as well!
>
> Other Java environs, eg NetBeans, have a concept of embedding
> resources in .jar files (that are needed by the jar file). Apparently
> the Google team has not has time to implement such a thing for Android
> world. They have this technique to generating the R. constants, which
> need to be unique within the app, and there is not a way of ensuring
> uniqueness if they were in separate .jar files.

Well, in this case you have to go java way:
 getClassLoader().getResourceAsStream("name it what you like")
will pick up whateher you like from jar files on classpath ( though
not as
convenient as android APIs )

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to