The main .gitignore for the android studio project was in the wrong place (should have been in /Mymou/ but was in /Mymou/app/ thus the rules were not being used) — I replaced the main .gitignore with one generated from a new android studio 3.2.1 project to update it. The problem is lots of files that shouldn't be under git control (like local.properties and many cache and build intermediates) are being committed when they should be ignored. We'll need to clean those files up too I think (git rm), but lets get the .gitignore fixed first.
The main .
gitignore
for the android studio project was in the wrong place (should have been in/Mymou/
but was in/Mymou/app/
thus the rules were not being used) — I replaced the main.gitignore
with one generated from a new android studio 3.2.1 project to update it. The problem is lots of files that shouldn't be under git control (like local.properties and many cache and build intermediates) are being committed when they should be ignored. We'll need to clean those files up too I think (git rm
), but lets get the.gitignore
fixed first.