Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Comments in android(Java/XML) code will affect the size of APK? [duplicate]

I just want to know if Comments in android(Java/XML) code will affect the size of APK?

example:-

/*ActionBar actionBar = getSupportActionBar();
    actionBar.setDisplayHomeAsUpEnabled(true);*/
like image 734
Anees U Avatar asked Jan 08 '23 16:01

Anees U


1 Answers

Commented code is not included in the compiled ode.

like image 81
mapinilla Avatar answered Jan 10 '23 06:01

mapinilla