I need to add this file to git (Android Studio Project)
application / build / outputs / display / my_flavor / relese / mapping.txt
This is my .gitignore file (project root)
...
build/
*/build/
!build/outputs/mapping/my_flavor/release
...
This is my .gitignore file (module application)
...
/build
!/build/outputs/mapping/my_flavor/release
...
Files contained in app / build / output / mapping / my_flavor / release are always excluded by git.
Any suggestion on how I can solve this?
Relationship
source
share