I found out Folder .idea in a sample project. In that File Modules.xml is there, content of the same is as below,
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ProjectModuleManager"> <modules> <module fileurl="file://$PROJECT_DIR$/.idea/android.iml" filepath="$PROJECT_DIR$/.idea/android.iml" /> </modules> </component> </project>
If I paste Directory Location in place of PROJECT_DIR it will look like below
<module fileurl="file://C:\Users\DRONE\Documents\android/.idea/android.iml" filepath="C:\Users\DRONE\Documents\android/.idea/android.iml" />
Question is,
- Is it fine to just alter Backward Slash to Forward?
- Do I need to edit this file or let it be the way it is?
- What is the function of android.iml?
No comments:
Post a Comment