There is /android
directory where is set up android
project(by eclipse
) which tree -a
looks like:
.
├── AndroidManifest.xml
├── assets
├── bin
│ ├──
├── .classpath
├── gen
│ ├──
├── .gitignore
├── ic_launcher-web.png
├── libs
│ └──
├── lint.xml
├── proguard-project.txt
├── .project
├── project.properties
├── res
│ ├──
├── .settings
│ ├──
└── src
└──
also in this folder .gitignore
is set as:
# generated files
bin/
gen/
# Eclipse project files
.classpath
.project
The issue is that git
does not take into account it. Exampl: every time the .classpath
from above directory get modified it is marked under git
as a modified.
There is one .gitignore over the /android but it is commited as empty.
Regards