Will proguard obfuscation affect my json data?
I have a class that is serialized to get: class test{ string test1; string test2; string test3; string test4; } out: { "a": "...", "b": "...", "c": "...", "d": "..." } I just need to store this data locally. Do…