在插件中或者library的项目中把文件放在asstes,不能用context.getResources().getAssets().open(fileName)读取到流,会报FileNotFoundException.
有两种方式解决
1.把需要的读取的文件放在主程序的asstes文件夹中,缺点就是要得升级主程序才行.
2.不放在asstes,直接放在res/raw中,通过context.getResources().openRawResource(R.raw.bank_account);的方式读取.