mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-25 18:52:19 -05:00
changed broadcast strings to include the full package name. This avoids issues when using KP2A and KP2A offline in parallel.
This commit is contained in:
parent
12e76bd651
commit
6f38305838
@ -27,15 +27,15 @@ namespace keepass2android
|
||||
|
||||
|
||||
/// <summary>Broadcast this intent to lock the database (with quick unlock if enabled)</summary>
|
||||
public const String LockDatabase = "keepass2android.lock_database";
|
||||
public const String LockDatabase = "keepass2android."+AppNames.PackagePart+"lock_database";
|
||||
/// <summary>Broadcast this intent to close the database (no quick unlock, full close)</summary>
|
||||
public const String CloseDatabase = "keepass2android.close_database";
|
||||
public const String CloseDatabase = "keepass2android." + AppNames.PackagePart + "close_database";
|
||||
|
||||
/// <summary>This intent will be broadcast once the database has been locked. Sensitive information displayed should be hidden and unloaded.</summary>
|
||||
public const String DatabaseLocked = "keepass2android.database_locked";
|
||||
public const String DatabaseLocked = "keepass2android." + AppNames.PackagePart + "database_locked";
|
||||
|
||||
/// <summary>This intent will be broadcast once the keyboard data has been cleared</summary>
|
||||
public const String KeyboardCleared = "keepass2android.keyboard_cleared";
|
||||
public const String KeyboardCleared = "keepass2android." + AppNames.PackagePart + "keyboard_cleared";
|
||||
|
||||
public const String CopyUsername = "keepass2android.copy_username";
|
||||
public const String CopyPassword = "keepass2android.copy_password";
|
||||
@ -53,6 +53,7 @@ namespace keepass2android
|
||||
public const String ShowNotification = "keepass2android.show_notification";
|
||||
public const String UpdateKeyboard = "keepass2android.update_keyboard";
|
||||
public const String CopyStringToClipboard = "keepass2android.copy_string_to_clipboard";
|
||||
public const String ActivateKeyboard = "keepass2android.activate_keyboard";
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user