Why can't the assembly and the libs folders in the Android project be completed or clicked?

I am using Android Studio in conjunction with the GitHub repository. So I just clicked on my entire project, but I mentioned that I can only click on my src folder. Is there any reason why I can't push the build folders and src or just doing something wrong? When I try to commit them, I get a message stating that no changes were found, but when I go to my repository, there are no such folders.

0
git android github android-studio
source share
1 answer

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.

+5
source share

All Articles