1
score
78
views
no
status
CC BY-SA 3.0
Does the R.java file declarations consume spaces from the 64K limit?
R.java does not contain methods, only static fields. There is a 65,536 limit on both methods and fields but they are separate. 99% of the time you will hit the method limit before hitting the field limit. If you need...