.txt map files were not copied into the /data/data/com.cocos2dx.application/ folder

The question is next:
I have some .txt files in my Resources folder in iOs/win32 cocos2dx project(everything works perfect there). I’m trying to port this one to Android and everything goes fine except one thing I can’t find my .txt map files when the project is built. ALL pictures in assets folder are shown I use such code for it

@
std::stringstream ss;
ss << “tutorialMap” << i << “.txt”;
std::string fileName = ss.str();
const char *fullPath = CCFileUtils::sharedFileUtils()->fullPathFromRelativePath(fileName.c_str());

#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
std::stringstream strStream;
strStream<<“/data/data/com.cocos2dx.application/”<<fileName;
std::string fName = strStream.str();
fullPath = fName.c_str();
CCLog(“File name is:%s”,fullPath);
#endif

std::ifstream t(fullPath);
std::string str((std::istreambuf_iterator(t)),std::istreambuf_iterator());
CCLog(“file content: %s”,str.c_str());
@

when iOS/win32 build works last line does shows me files content but in android it is empty. Looks like files are not there.
Please help

P.S. Also one week ago (when the project wasn’t ready) I was trying to do the same and everything was fine. Can you give me maybe some link or something else where I can find what is the reason of it.

nobody knows?
Maybe I should reinstall something???
Please! Help!