I am currently learning android development by following a tutorial. I think I learned enough to create my first very simple app. Indeed I have an idea but I need your help for something. For this application I need between 500 and 5000 strings to be included in my app. By following the tutorial and doing some research, I found three different ways for string storage, but I don't know which one I should use for 5000 strings.
The first is by putting the strings in the strings.xml file in the resources but it would be very long.
The second is using a .txt file and read it
The last one would be the use of a database, but I don't know if it worth it for only strings.
So what do you think I should use and if you know another way to do it, even if it isn't the best solution, could you let me know please.