Recently I saw it is possible to include assets in the Android Library with the update on November 2018 on the Official documentation here: https://developer.android.com/studio/projects/android-library
But it just describes briefly that "assets" is an optional library that could be included in the Android libraries. It does not cover the way how to access them.
Right now I have a project with several Android libraries. Each library contains a level or it is contained on a level of abstraction. In order to have good isolation, ideally each library should be able to use the code and assets which is contained by its own Android library.
So, my question is, since now we can include assets, in my case a json file, inside of the Android library, is there any way to access those assets directly from the code of the Android library itself, without using the code from the app library?
Thanks in advance P.d.: Here is the source code of my project if anyone is interested: https://github.com/jiahaoliuliu/chutoro/tree/feature/companiesList