File tree Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ dependencyResolutionManagement {
48
48
Add the KinesteX SDK dependency in your app’s ` build.gradle ` :
49
49
50
50
``` gradle
51
- implementation("com.github.KinesteX:KinesteXSDKKotlin:1.1.6 ")
51
+ implementation("com.github.KinesteX:KinesteXSDKKotlin:1.1.7 ")
52
52
53
53
```
54
54
@@ -190,6 +190,23 @@ The KinesteX SDK provides multiple methods to create different views:
190
190
) as GenericWebView ?
191
191
```
192
192
193
+ - ** Experiences View** :
194
+
195
+ ``` kotlin
196
+ kinesteXWebView = KinesteXSDK .createExperiencesView(
197
+ apiKey,
198
+ company,
199
+ userId,
200
+ " box" , // name of the experience
201
+ 100 , // duration of the experience
202
+ null ,
203
+ customParams = null ,
204
+ viewModel.isLoading,
205
+ ::handleWebViewMessage,
206
+ permissionHandler = this
207
+ ) as GenericWebView ?
208
+ ```
209
+
193
210
- ** Camera Component (Just camera + our motion analysis and feedback)** :
194
211
195
212
``` kotlin
Original file line number Diff line number Diff line change @@ -38,15 +38,15 @@ android {
38
38
}
39
39
40
40
dependencies {
41
- implementation(project(" :kinestexsdkkotlin" ))
41
+ // implementation(project(":kinestexsdkkotlin"))
42
42
implementation(" androidx.core:core-ktx:1.9.0" )
43
43
implementation(" com.google.code.gson:gson:2.8.8" )
44
44
implementation(" androidx.appcompat:appcompat:1.6.1" )
45
45
implementation(" com.google.android.material:material:1.11.0" )
46
46
implementation(" androidx.constraintlayout:constraintlayout:2.1.4" )
47
47
testImplementation(" junit:junit:4.13.2" )
48
48
androidTestImplementation(" androidx.test.ext:junit:1.1.5" )
49
- // implementation("com.github.KinesteX:KinesteX-SDK-Kotlin:1.1.5 ")
49
+ implementation(" com.github.KinesteX:KinesteX-SDK-Kotlin:1.1.7 " )
50
50
androidTestImplementation(" androidx.test.espresso:espresso-core:3.5.1" )
51
51
implementation(" androidx.activity:activity-ktx:1.9.0" )
52
52
implementation(" androidx.lifecycle:lifecycle-livedata-ktx:2.8.1" )
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ pluginManagement {
16
16
17
17
rootProject.name = " KinesteXSDKKotlin"
18
18
include(" :app" )
19
- include(" :kinestexsdkkotlin" )
19
+ // include(":kinestexsdkkotlin")
You can’t perform that action at this time.
0 commit comments