From b391b8532c101bd1fb577a32dc245cf112038b97 Mon Sep 17 00:00:00 2001 From: Maxwell Mapako Date: Fri, 3 May 2024 18:49:26 +0200 Subject: [PATCH] fix(doc): update README.md Correct instructions around module artifact qualifiers --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d2f319b..9aa1da8 100644 --- a/README.md +++ b/README.md @@ -58,12 +58,13 @@ allprojects { ### Step 2. Add the dependencies: -You must use one of our artifact `serializer-kotlinx`, `serializer-gson` or `serializer-moshi` - +You must use one of our artifacts `kotlinx`, `gson` or `moshi` for deserialization, this should match whatever library you want to use. +e.g. ```groovy dependencies { implementation 'com.github.anitrend:android-emojify:{latest_version}' - implementation 'com.github.anitrend:serializer-kotlinx:{latest_version}' + implementation 'com.github.anitrend:android-emojify:contract:{latest_version}' + implementation 'com.github.anitrend:android-emojify:kotlinx:{latest_version}' } ```