I create a class called dictionary which extends InputMethodService. I want to read a text file which is in assets folder. But I cannot read the text file
So, I write two print statement to check the code, when I run the below code
System.out.println("before ");
AssetManager assetManager = getAssets();
System.out.println("after ");
InputStream is = assetManager.open( startingLetter+".txt");
output is "before" only