From 64ad1ef33a915223920ad816811cd2628ee84db9 Mon Sep 17 00:00:00 2001 From: Akhil111singh <134289783+Akhil111singh@users.noreply.github.com> Date: Mon, 9 Oct 2023 14:51:52 +0530 Subject: [PATCH] Update README.md --- README.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d7cbad6..99ca9f9 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,30 @@ Use the [create meeting api](https://dev.jiomeet.com/docs/JioMeet%20Platform%20S ## Configure JioMeet Template UI inside your app -i. In Gradle Scripts/build.gradle (Module: ) add the Template UI dependency. The dependencies section should look like the following: +i. **Step 1** : Generate a Personal Access Token for GitHub +* Settings -> Developer Settings -> Personal Access Tokens -> Generate new token +* Make sure you select the following scopes (“ read:packages”) and Generate a token +* After Generating make sure to copy your new personal access token. You cannot see it again! The only option is to generate a new key. + +ii. Update build.gradle inside the application module + +```kotlin + repositories { + maven { + credentials { + + username = "" + + password = "" + } + url = uri("https://maven.pkg.github.com/JioMeet/JioMeetCoreTemplateSDK_ANDROID") + } + google() + mavenCentral() + } +``` + +iii. In Gradle Scripts/build.gradle (Module: ) add the Template UI dependency. The dependencies section should look like the following: ```gradle dependencies {