For example, we have a file in our assets folder app/src/main/assets/sample_teas.json. To get an InputStream for reading it, from out Context context, we can try do this:
A. val input = context!!.resources.openRawResource(R.raw.sample_teas)
B. val input = context!!.assets.open("sample_teas.json")
C. val input = context!!.resources.assets.open("sample_teas.json")
For example, we have a file in our assets folder app/src/main/assets/sample_teas.json. To get an InputStream for reading
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
For example, we have a file in our assets folder app/src/main/assets/sample_teas.json. To get an InputStream for reading
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!