I have template in resource /assets/templates/order.chunk.
I try to load it with following code:
AndroidTemplates loader = new AndroidTemplates(getInstrumentation().getContext(), "templates");
Theme theme = new Theme(loader);
Chunk chunk = theme.makeChunk("order", "chunk");
But I get exception:
java.io.FileNotFoundException: templates/;chunk;order.chtml
I have template in resource /assets/templates/order.chunk. I try to load it with following code: AndroidTemplates loader = new AndroidTemplates(getInstrumentation().getContext(), "templates"); Theme theme = new Theme(loader); Chunk chunk = theme.makeChunk("order", "chunk");
But I get exception: java.io.FileNotFoundException: templates/;chunk;order.chtml
It seems that asset name is created incorrectly.