react-native-clarity 4.0.4 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/android/build.gradle
CHANGED
|
@@ -8,7 +8,7 @@ buildscript {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
dependencies {
|
|
11
|
-
classpath
|
|
11
|
+
classpath 'com.android.tools.build:gradle:8.6.1'
|
|
12
12
|
// noinspection DifferentKotlinGradleVersion
|
|
13
13
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
14
14
|
}
|
|
@@ -52,10 +52,13 @@ android {
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
compileOptions {
|
|
55
|
-
sourceCompatibility JavaVersion.
|
|
56
|
-
targetCompatibility JavaVersion.
|
|
55
|
+
sourceCompatibility JavaVersion.VERSION_17
|
|
56
|
+
targetCompatibility JavaVersion.VERSION_17
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
+
kotlinOptions {
|
|
60
|
+
jvmTarget = '17'
|
|
61
|
+
}
|
|
59
62
|
}
|
|
60
63
|
|
|
61
64
|
repositories {
|
|
@@ -69,7 +72,7 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
|
69
72
|
dependencies {
|
|
70
73
|
implementation "com.facebook.react:react-native:+"
|
|
71
74
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
72
|
-
implementation "com.microsoft.clarity:clarity:3.0
|
|
75
|
+
implementation "com.microsoft.clarity:clarity:3.1.0"
|
|
73
76
|
}
|
|
74
77
|
|
|
75
78
|
if (isNewArchitectureEnabled()) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#make sure these are acutally used
|
|
2
|
-
Clarity_kotlinVersion=1.
|
|
2
|
+
Clarity_kotlinVersion=1.8.0
|
|
3
3
|
Clarity_minSdkVersion=21
|
|
4
|
-
Clarity_targetSdkVersion=
|
|
5
|
-
Clarity_compileSdkVersion=
|
|
4
|
+
Clarity_targetSdkVersion=35
|
|
5
|
+
Clarity_compileSdkVersion=35
|
|
6
6
|
Clarity_ndkversion=21.4.7075529
|
|
7
7
|
android.useAndroidX=true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-clarity",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "A plugin to provide the Clarity experience for the React Native applications.",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -163,4 +163,4 @@
|
|
|
163
163
|
]
|
|
164
164
|
]
|
|
165
165
|
}
|
|
166
|
-
}
|
|
166
|
+
}
|