android-prefs icon indicating copy to clipboard operation
android-prefs copied to clipboard

Bug: Duplicate key when use two class with same variable.

Open sonvp opened this issue 8 years ago • 0 comments

Hi @BoD by default , I have class Worker and Manager, and skip add preference key, using default preference key:

@"Prefs"
class Worker {
 String user;
 String password;
} 

@"Prefs"
class Manager{
 String user;
 String password;
} 

If i save user Worker, then i save user Manager ---> value user, password manager will replace user, password worker. Although i can use @Name("........") resolve it . But i don't want.

sonvp avatar May 19 '17 04:05 sonvp