Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What to do with .rawproto files in Android Studio build directory?

Since upgrading to the latest version of gradle, the build directory is full of files like 'build/android-profile/profile-2017-03-08-15-06-35-881.rawproto'

Currently these are all untracked by git, to avoid having them clutter up the place, is it a good practice to commit them, or add them to .gitignore?

like image 263
J Person Avatar asked Mar 09 '17 09:03

J Person


1 Answers

The build folder can be fully ignore by git as 1615903 said. If you're interest in what the *.rawproto is you can take a look at it here.

How to prevent rawproto file generation or delete them automatically?

like image 64
Jintin Avatar answered Oct 09 '22 01:10

Jintin