I am using command line (ant) to create and build android projects .
I created project using
android create project --name YourTestProject --path /home/testfolder --target android-3 --package com.company.testproject --activity MainActivity
Above command created a project directory “testfolder” and placed all necessary files inside it . Now, where should I add my files into that . For example , If I have “index.html” file, where should I place that . So, when I open my app on Android emulator, that index.html file should be exewcuted . Will provide more details if necessary .
Thanks
These files should go into the assets folder. They are used by your app directly and are not touched by the android framework
In contrast images, styles, layouts etc for your app belong in the res folder. They are treated and managed by android.