Declaring int constant like
private static final int REQUEST_CODE = 0909;
this would result into "Integer number too large"
while private static final int REQUEST_CODE = 1909;
works fine why would the android studio suggest that 0909 is too large but 1909 is fine