Skip to content

Commit

Permalink
[chore] Improve integration description
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelreiter committed Oct 30, 2023
1 parent 9d703fb commit b251bf0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# CXone Chat for Android

This repository consists out of three main modules.
This repository consists out of three main modules, which are described in chapters below.

## CXOne Chat SDK

This is the only published module, it is released as android multi-flavor library with maven artifact coordinates
This is the only published module, it is released as an android multi-flavor library with maven artifact coordinates
`com.nice.cxone:chat-core`.

### Adding the dependency
Expand All @@ -24,8 +24,9 @@ In section where you define repositories used in your project (in our case it is
name = "github-nice-devone-cxone-mobile"
url = "https://maven.pkg.github.com/nice-devone/nice-cxone-mobile-sdk-android"
credentials {
username = localProperties["github.user"] ?: System.getenv("GPR_USERNAME") // Use github.user property key from local.properties for local builds or environment variable GPR_USERNAME for CI builds
password = localProperties["github.key"] ?: System.getenv("GPR_TOKEN") // Use github.key property key from local.properties for local builds or environment variable GPR_USERNAME for CI builds
// Use property key from local.properties for local builds or environment variable for CI builds
username = localProperties["github.user"] ?: System.getenv("GPR_USERNAME")
password = localProperties["github.key"] ?: System.getenv("GPR_TOKEN")
}
}
}
Expand Down

0 comments on commit b251bf0

Please sign in to comment.