By default, Android Studio places the build directory (both at the project level and at the module level) in .gitignore .
This is usually the desired behavior, as there is no reason to store most of the generated files in version control. Gradle will create them again for you on any machine onto which the project is uploaded.
If you want to include build directories, simply remove /build from the .gitignore in the root of your project and the .gitignore in the root directory of your module.
The libs directory should not be by default, but if you add files to this directory and Git does not recognize the change, then where would I look.
Tanis.7x
source share