From: John B. <joh...@so...> - 2010-10-26 17:21:59
|
I have a SQL script in my Android source structure and access it using the standard Java e.g. InputStream in = DbHelper.class.getResourceAsStream(path); When I process my source using xmlvm, it seems that these files are ignored (I read in the manual that only .class files are processed). Also, I searched for keywords in the script to verify that this script was in fact excluded. Would it be possible to have a mechanism to enable use of resources files which would otherwise be included in a apk (or jar) to be accessed in some other way? In other words wrapping the Class.getResourceAsStream(path) method? |