When I'm trying to build my app, I get a compiler error saying:
Command failed due to signal: Segmentation fault: 11
because I have a array of around 3000 strings directly in my code.
Does anyone have have a workaround for this? Can I somehow save my strings in a .txt-file and just retrieve it as it is. I created my string in Java so it's already in the correct format:
["String1", "String2", "String3"]
Any suggestions on how to solve this would be appreciated.