I'm sure it's kind of a corner case, but nonetheless I'm reporting it.
I'm declaring a very large map like this
and compiling fails with
error: code too large
I'm surely going to put that table in a SQLite asset database, but is there any hardcoded limit on Map declarations?
I'm declaring a very large map like this
B4X:
Private Const m_locationsMap As Map = CreateMap( _
"key1": "value1", _
"key2": "value2", _
'another 6000 lines
)
error: code too large
I'm surely going to put that table in a SQLite asset database, but is there any hardcoded limit on Map declarations?