I have my own java library which is included with my corona enterprise project,
I need to know where to put resources required by the library, raw (wav files) and drawable (png files),
I started with them in /android/plugin/src/main/res/raw/ & /android/plugin/src/main/res/drawable/
but get runtime error java.lang.NoClassDefFoundError:failed resolution of:Lcom/myproject/mylibrary/R$raw;
Found nothing in the documentation or forums that jumps out at me, also tried other locations by educated guess and pot luck without success
The app/library runs fine on device with the requirement for resources removed.
Any help would be most appreciated
Scott