Reputation: 25
After compiling for Android in Debug and Release APK the compiled files are Taking so much space. is there any way to reduce it?
.ccx is taking 5 gb space and .externalNativeBuild taking 2 gb space
Upvotes: 0
Views: 137
Reputation: 896
The app/build
is a temporary folder. You can't really reduce the size of it, but if you only want to save disk space you can delete it without any issues as it will be re-generated next time you build the project, though next build time might be increased because of that.
Upvotes: 0