It should be in /assets/
Android Beginners:
AssetManager assetManager = getAssets();
InputStream stream = null;
try {
stream = assetManager.open("file.txt");
} catch (IOException e) {
}
finally {
if (stream != null) {
try {
stream.close();
} catch (IOException e) {}
}
}