我已经添加了一个安卓库.aar到我的安卓project.Now我想编辑一些js,文本文件出现在安卓库资产文件夹而不是源files.But我不能编辑它,因为我没有引用的安卓库资产folder.Can任何人解释如何编辑安卓库资产文件夹中的文件。
发布于 2018-07-11 17:09:30
We can go to the external libraries added to the project and check for the library and then try to open the folder from that library.
Example:-
**Steps to edit the integrated library resources(res) & assets files.**
**Step1:-**
Goto the External Libraries Section of your project in android studio and check for the your integrated library as shown in the below image.
[![enter image description here][1]][1]
**Step2:-**
Check for the res folder in the integrated library and right click on the res folder you will get a menu.As shown in the below image.
[![enter image description here][2]][2]
**Step3:-**
From the displayed menu select the option “Show in Explorer”.Then the integrated library window will be opened as shown in the below image.This is the path for the assets and res folder of the integrated library. Integrated library path will be similar to Eg: C:\Users\UserName\.gradle\caches\transforms-1\files1.1\integratedlibrary .aar\**************
[![enter image description here][3]][3]
[1]: https://i.stack.imgur.com/OdhEi.png
[2]: https://i.stack.imgur.com/sJgTa.png
[3]: https://i.stack.imgur.com/kMjYy.pnghttps://stackoverflow.com/questions/47217364
复制相似问题