I need to add this file on git (Android Studio Project)
app/build/outputs/mapping/my_flavor/relese/mapping.txt
This is my .gitignore file (root of the project)
...
build/
*/build/
!build/outputs/mapping/my_flavor/release
...
This is my .gitignore file (module app)
...
/build
!/build/outputs/mapping/my_flavor/release
...
The files contained in app/build/outputs/mapping/my_flavor/release are always excluded by git.
Any suggetion on how I can solve it?
Regards