I use latest Android Studio 0.8.4 (for OS X), in \"res\" directory I create new \"database\" directory and put there all files what I need and when I try to compile I receiv
in "res" directory I create new "database" directory
That is not supported. You cannot invent new resource directories.
Please put the files in res/raw/ (and use via getResources().openRawResource()) or assets/ (and use via getAssets().open()).
res/raw/
getResources().openRawResource()
assets/
getAssets().open()