From d58c38daad4081981def140b75a6bc5e951445c0 Mon Sep 17 00:00:00 2001 From: "tp.mgenc" Date: Wed, 12 May 2021 23:33:02 +0300 Subject: [PATCH] updated README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f25120b..61ce57b 100644 --- a/README.md +++ b/README.md @@ -19,25 +19,25 @@ allprojects { * Read and Write key-value ````kotlin dependencies { - implementation("com.github.developersancho.prefstore:prefstore:1.0.0-beta01") + implementation("com.github.developersancho.prefstore:prefstore:1.0.0") } ```` * Read and Write key-value, Support `Moshi Serialize-Deserialize` ````kotlin dependencies { - implementation("com.github.developersancho.prefstore:prefstore-moshi:1.0.0-beta01") + implementation("com.github.developersancho.prefstore:prefstore-moshi:1.0.0") } ```` * Read and Write key-value, Support `Gson Serialize-Deserialize` ````kotlin dependencies { - implementation("com.github.developersancho.prefstore:prefstore-gson:1.0.0-beta01") + implementation("com.github.developersancho.prefstore:prefstore-gson:1.0.0") } ```` * Read and Write key-value, Support `Both of Moshi-Gson Serialize-Deserialize` ````kotlin dependencies { - implementation("com.github.developersancho.prefstore:prefstore-core:1.0.0-beta01") + implementation("com.github.developersancho.prefstore:prefstore-core:1.0.0") } ```` # 💻 Usage