There is a type Integer in the Android resources:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="bytes_size">2147483647</integer>
</resources>
The maximum value is then 2147483647, so how could I have a bigger value in there, like a long? Do I have to put it as a String and then transform it to a long, or is there a better way?