Skip to content

Commit c905d76

Browse files
authored
fix: deprecate secure store (#230)
1 parent 63f5f79 commit c905d76

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

app/src/main/java/uk/gov/android/securestore/SecureStore.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ import uk.gov.android.securestore.authentication.AuthenticatorPromptConfiguratio
88
/**
99
* Create an instance of [SecureStore] to save, query and delete data. Data stored as a key value pair, with the value being a [String]
1010
*/
11+
@Deprecated(
12+
message = "This has been replaced by a Secure Store with async methods.",
13+
replaceWith = ReplaceWith("uk.gov.android.securestore.SecureStoreAsync"),
14+
level = DeprecationLevel.WARNING,
15+
)
1116
interface SecureStore {
1217
/**
1318
*This must be called before using an instance of secure store, it sets the [AccessControlLevel] for the [SecureStore]

0 commit comments

Comments
 (0)