Skip to content

Commit 362d669

Browse files
committed
Release v2.0.0
1 parent 677cae8 commit 362d669

File tree

143 files changed

+18376
-263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+18376
-263
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 2.0.0
6+
7+
### Changed
8+
- Improved the communication with the DevRev backend.
9+
- Improved the encryption techniques used throughout the SDK.
10+
511
## 1.1.5
612

713
### Added

README.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ DevRev SDK, used for integrating DevRev services into your Android app.
99
- [Integration](#integration)
1010
- [Step 1](#step-1)
1111
- [Step 2](#step-2)
12+
- [Proguard rules](#proguard-rules)
1213
- [Set up the DevRev SDK](#set-up-the-devrev-sdk)
1314
- [Sample app](#sample-app)
1415
- [Features](#features)
@@ -101,6 +102,13 @@ dependencies {
101102
}
102103
```
103104

105+
#### Proguard rules
106+
If you are using Proguard in your project, you must add the following lines to your configuration:
107+
```bash
108+
-keep class ai.devrev.** { *; }
109+
-keep class com.userexperior.* { *; }
110+
```
111+
104112
### Set up the DevRev SDK
105113
1. Open the DevRev web app at [https://app.devrev.ai](https://app.devrev.ai) and go to the **Settings** page.
106114
2. Under **PLuG settings** copy the value under **Your unique App ID**.
@@ -941,14 +949,17 @@ public class MyFirebaseMessagingService extends FirebaseMessagingService {
941949
```
942950

943951
## Troubleshooting
944-
- **Issue**: Encountering problems with DevRev SDK integration.
945-
**Solution**: Verify the correct SDK dependency setup in the project. Ensure `mavenCentral` is accessible from the IDE, and confirm accurate detection of the selected DevRev SDK version.
952+
- **Issue**: Can't import the SDK into my app.
953+
**Solution**: Double-check the setup process and ensure that `mavenCentral()` is present in the project level repositories block.
954+
955+
- **Issue**: How does the DevRev SDK handle errors?
956+
**Solution**: The DevRev SDK reports all errors using Android's logging utility. Look for error messages in Android Studio's Logcat after applying `DEVREV SDK` filter.
946957

947-
- **Issue**: The `showSupport()` function or XML button is unresponsive.
948-
**Solution**: Confirm that user identification is performed before using the `showSupport()` function or XML button.
958+
- **Issue**: Support chat won't show.
959+
**Solution**: Ensure you have correctly called one of the identification methods: `DevRev.identifyUnverifiedUser(...)`, `DevRev.identifyVerifiedUser(...)`, or `DevRev.identifyAnonymousUser(...)`.
949960

950-
- **Issue**: Incorrect operation due to `App ID` and `secret` misconfiguration.
951-
**Solution**: Ensure correct functionality by double-checking that both `App ID` and `secret` values are accurately configured in your application or sample app.
961+
- **Issue**: Not receiving push notifications.
962+
**Solution**: Ensure that your app is configured to receive push notifications and that your device is registered with the DevRev SDK.
952963

953964
## Migration guide
954965
If you are migrating from the legacy UserExperior SDK to the new DevRev SDK, please refer to the [Migration Guide](./MIGRATION.md) for detailed instructions and feature equivalence.
Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
<!DOCTYPE html>
2+
<html class="no-js">
3+
<head>
4+
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
5+
<title>DefaultRecordingExecutor</title>
6+
<link href="../../../images/logo-icon.svg" rel="icon" type="image/svg">
7+
<script>var pathToRoot = "../../../";</script>
8+
<script>document.documentElement.classList.replace("no-js","js");</script>
9+
<script>const storage = localStorage.getItem("dokka-dark-mode")
10+
if (storage == null) {
11+
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
12+
if (osDarkSchemePreferred === true) {
13+
document.getElementsByTagName("html")[0].classList.add("theme-dark")
14+
}
15+
} else {
16+
const savedDarkMode = JSON.parse(storage)
17+
if(savedDarkMode === true) {
18+
document.getElementsByTagName("html")[0].classList.add("theme-dark")
19+
}
20+
}
21+
</script>
22+
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async="async"></script>
23+
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async="async"></script>
24+
<link href="../../../styles/style.css" rel="Stylesheet">
25+
<link href="../../../styles/main.css" rel="Stylesheet">
26+
<link href="../../../styles/prism.css" rel="Stylesheet">
27+
<link href="../../../styles/logo-styles.css" rel="Stylesheet">
28+
<link href="../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
29+
<link href="../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
30+
<script type="text/javascript" src="../../../scripts/clipboard.js" async="async"></script>
31+
<script type="text/javascript" src="../../../scripts/navigation-loader.js" async="async"></script>
32+
<script type="text/javascript" src="../../../scripts/platform-content-handler.js" async="async"></script>
33+
<script type="text/javascript" src="../../../scripts/main.js" defer="defer"></script>
34+
<script type="text/javascript" src="../../../scripts/prism.js" async="async"></script>
35+
<script type="text/javascript" src="../../../ui-kit/ui-kit.min.js" defer="defer"></script>
36+
<script type="text/javascript" src="../../../scripts/symbol-parameters-wrapper_deferred.js" defer="defer"></script>
37+
</head>
38+
<body>
39+
<div class="root">
40+
<nav class="navigation theme-dark" id="navigation-wrapper">
41+
<a class="library-name--link" href="../../../index.html">
42+
core
43+
</a>
44+
<button class="navigation-controls--btn navigation-controls--btn_toc ui-kit_mobile-only" id="toc-toggle"
45+
type="button">Toggle table of contents
46+
</button>
47+
<div class="navigation-controls--break ui-kit_mobile-only"></div>
48+
<div class="library-version" id="library-version">
49+
</div>
50+
<div class="navigation-controls">
51+
<div class="filter-section filter-section_loading" id="filter-section">
52+
<button class="platform-tag platform-selector jvm-like" data-active=""
53+
data-filter=":core:dokkaHtml/release">androidJvm</button>
54+
<div class="dropdown filter-section--dropdown" data-role="dropdown" id="filter-section-dropdown">
55+
<button class="button button_dropdown filter-section--dropdown-toggle" role="combobox"
56+
data-role="dropdown-toggle"
57+
aria-controls="platform-tags-listbox"
58+
aria-haspopup="listbox"
59+
aria-expanded="false"
60+
aria-label="Toggle source sets"
61+
></button>
62+
<ul role="listbox" id="platform-tags-listbox" class="dropdown--list" data-role="dropdown-listbox">
63+
<div class="dropdown--header"><span>Platform filter</span>
64+
<button class="button" data-role="dropdown-toggle" aria-label="Close platform filter">
65+
<i class="ui-kit-icon ui-kit-icon_cross"></i>
66+
</button>
67+
</div>
68+
<li role="option" class="dropdown--option platform-selector-option jvm-like" tabindex="0">
69+
<label class="checkbox">
70+
<input type="checkbox" class="checkbox--input" id=":core:dokkaHtml/release"
71+
data-filter=":core:dokkaHtml/release"/>
72+
<span class="checkbox--icon"></span>
73+
androidJvm
74+
</label>
75+
</li>
76+
</ul>
77+
<div class="dropdown--overlay"></div>
78+
</div>
79+
</div>
80+
<button class="navigation-controls--btn navigation-controls--btn_theme" id="theme-toggle-button"
81+
type="button">Switch theme
82+
</button>
83+
<div class="navigation-controls--btn navigation-controls--btn_search" id="searchBar" role="button">Search in
84+
API
85+
</div>
86+
</div>
87+
</nav>
88+
<div id="container">
89+
<div class="sidebar" id="leftColumn">
90+
<div class="dropdown theme-dark_mobile" data-role="dropdown" id="toc-dropdown">
91+
<ul role="listbox" id="toc-listbox" class="dropdown--list dropdown--list_toc-list"
92+
data-role="dropdown-listbox">
93+
<div class="dropdown--header">
94+
<span>
95+
core
96+
</span>
97+
<button class="button" data-role="dropdown-toggle" aria-label="Close table of contents">
98+
<i class="ui-kit-icon ui-kit-icon_cross"></i>
99+
</button>
100+
</div>
101+
<div class="sidebar--inner" id="sideMenu"></div>
102+
</ul>
103+
<div class="dropdown--overlay"></div>
104+
</div>
105+
</div>
106+
<div id="main">
107+
<div class="main-content" data-page-type="member" id="content" pageIds="core::ai.devrev.sdk.executors/DefaultRecordingExecutor/DefaultRecordingExecutor/#/PointingToDeclaration//197447377">
108+
<div class="breadcrumbs"><a href="../../../index.html">core</a><span class="delimiter">/</span><a href="../index.html">ai.devrev.sdk.executors</a><span class="delimiter">/</span><a href="index.html">DefaultRecordingExecutor</a><span class="delimiter">/</span><span class="current">DefaultRecordingExecutor</span></div>
109+
<div class="cover ">
110+
<h1 class="cover"><span>Default</span><wbr></wbr><span>Recording</span><wbr></wbr><span><span>Executor</span></span></h1>
111+
</div>
112+
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":core:dokkaHtml/release"><div class="symbol monospace"><span class="token keyword">constructor</span><span class="token punctuation">(</span><span class="token punctuation">)</span></div></div></div>
113+
</div>
114+
<div class="footer">
115+
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
116+
<span>© 2025 Copyright</span>
117+
<span class="pull-right">
118+
<span>Generated by </span>
119+
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
120+
<span>dokka</span>
121+
</a>
122+
</span>
123+
</div>
124+
</div>
125+
</div>
126+
</div>
127+
</body>
128+
</html>

0 commit comments

Comments
 (0)