i am facing some problems with my android app, that uses csv to store user data. User can upload this file to google drive, and restore it later on. The thing is, while the file is uploaded it gets formatted, and it adds automatically [ ] and the and and start.
Here is how my original csv file looks like:
"ID","Latitude","Longtitude","Time","Date","Author","Address","City","State","Country"
"1","49.637221654315284","8.360934609005451","12:28","16.5.2016","Test User","Mainstreet 18","Berlin","null","Deutschland"
And here what i get as a result while uploading file to google drive.
[[[[ID, Latitude, Longtitude, Time, Date, Author, Address, City, State, Country]]]]
[[1, 49.63441381871867, 8.364593093049526, 00:52, 16.5.2016, Test User, Teststreeet 18, Berlin, null, Deutschland]]
Notice, the number of "[" depends, on how often i download the file and upload it again. It would be okay for me, if my text would be not moved while reading this text with opencsv.
For example i should get something like this:
Mainstreet 18
What i get when i restore file from drive, is:
Mainstreet 18
It depends on how many "[" are before the text. The thing is, i tested it with the google drive app, when i upload the same file manually, and download it later, it becomes the same wrong way as above with stupid "[".
Is it a bug of google drive? Or should i format my csv other way? Thanks in advance for any help.