Skip to content

Commit

Permalink
added ai-answer-assistant to dependency
Browse files Browse the repository at this point in the history
updated README file
  • Loading branch information
kirillTolmachev committed Aug 23, 2023
1 parent 19fd935 commit 08ba97c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion android-ui-kit-sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,18 @@ repositories {
maven {
url "https://github.com/QuickBlox/quickblox-android-sdk-releases/raw/master/"
}
maven {
url "https://github.com/QuickBlox/android-ai-releases/raw/main/"
}
}
```

Then need to add implementation of QuickBlox UIKit and QuickBlox SDK to dependencies in your module-level(App) **build.gradle** file.

```
dependencies {
implementation "com.quickblox:android-ui-kit:0.1.1"
implementation "com.quickblox:android-ui-kit:0.1.4"
implementation "com.quickblox:android-ai-answer-assistant:1.0.0"
implementation 'com.quickblox:quickblox-android-sdk-messages:4.1.1'
implementation 'com.quickblox:quickblox-android-sdk-chat:4.1.1'
Expand Down
3 changes: 2 additions & 1 deletion android-ui-kit-sample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ android {
}

dependencies {
implementation "com.quickblox:android-ui-kit:0.1.3"
implementation "com.quickblox:android-ui-kit:0.1.4"
implementation "com.quickblox:android-ai-answer-assistant:1.0.0"

implementation 'com.quickblox:quickblox-android-sdk-messages:4.1.1'
implementation 'com.quickblox:quickblox-android-sdk-chat:4.1.1'
Expand Down
3 changes: 3 additions & 0 deletions android-ui-kit-sample/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ dependencyResolutionManagement {
maven {
url "https://github.com/QuickBlox/android-ui-kit-releases/raw/master/"
}
maven {
url "https://github.com/QuickBlox/android-ai-releases/raw/main/"
}
}
}
rootProject.name = "android-ui-kit-sample"
Expand Down

0 comments on commit 08ba97c

Please sign in to comment.