From fd4be9de8445ea6ad8736a94053b35941c49af59 Mon Sep 17 00:00:00 2001 From: Raj Soni <77340696+raj-squarebits@users.noreply.github.com> Date: Thu, 8 Dec 2022 13:15:22 +0530 Subject: [PATCH] Version 1.0.7 --- README.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 1d9923c..ba6de55 100644 --- a/README.md +++ b/README.md @@ -175,17 +175,18 @@ You can use these methods anywhere in your project and these will provide transl // This method is used to convert the entire JSON object to requested language // ignoreKeys -> Send a list of strings that you want to ignore during the conversion process - JSONObject json = new JSONObject(); - json.put("Name", "DevNagri SDK"); - json.put("Language", "Java"); - devNagriTranslationSdk.getTranslationOfJSON(jsonObjectValue, - ignoreKeys, - new GenericCallback() { - @Override - public void onCallback(JSONObject translatedJsonObject) { - //Here you find translated JSON Object - } - }); + + JSONObject json = new JSONObject(); + json.put("Name", "DevNagri SDK"); + json.put("Language", "Java"); + devNagriTranslationSdk.getTranslationOfJSON(jsonObjectValue, + ignoreKeys, + new GenericCallback() { + @Override + public void onCallback(JSONObject translatedJsonObject) { + //Here you find translated JSON Object + } + }); # For Modular Approach - Please add DevNagriSDK dependency in each module level gradle file.