I have 2 queries regarding Key Value Store ...
1. Is it possible to view KVS data file or have IDE copy it to windows PC for troubleshooting (Phone has no root access)?
2. During a kvs.get , if a key does not exist it causes a Java Null Exception. How can we check if a specific key exists without causing an exception? (currently I'm bypassing it using "TRY.. CATCH")
1. Not so simple especially not with newer versions of Android. You can use the SaveAs feature to copy the database to wherever you need.
2. Using Try / Catch is the wrong solution. Either check whether the key exists with kvs.ContainsKey or use kvs.GetDefault.