@veryai/react-native-sdk 1.0.32 → 1.0.35
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
|
@@ -37,13 +37,17 @@ android {
|
|
|
37
37
|
buildConfig = true
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
+
// JVM 17 to match the default of modern RN/Expo templates. AGP 7.4+
|
|
41
|
+
// refuses to mix Java/Kotlin JVM targets within one module, so a
|
|
42
|
+
// wrapper at 1.8 fails the consumer's `compileDebugKotlin` task as
|
|
43
|
+
// soon as their app's `compileDebugJavaWithJavac` runs at 17.
|
|
40
44
|
compileOptions {
|
|
41
|
-
sourceCompatibility JavaVersion.
|
|
42
|
-
targetCompatibility JavaVersion.
|
|
45
|
+
sourceCompatibility JavaVersion.VERSION_17
|
|
46
|
+
targetCompatibility JavaVersion.VERSION_17
|
|
43
47
|
}
|
|
44
48
|
|
|
45
49
|
kotlinOptions {
|
|
46
|
-
jvmTarget = '
|
|
50
|
+
jvmTarget = '17'
|
|
47
51
|
}
|
|
48
52
|
|
|
49
53
|
sourceSets {
|
|
@@ -72,7 +76,7 @@ dependencies {
|
|
|
72
76
|
if (findProject(':very-sdk') != null) {
|
|
73
77
|
implementation project(':very-sdk')
|
|
74
78
|
} else {
|
|
75
|
-
implementation "org.very:sdk:${project.findProperty('verySDKVersion') ?: '1.0.
|
|
79
|
+
implementation "org.very:sdk:${project.findProperty('verySDKVersion') ?: '1.0.35'}"
|
|
76
80
|
}
|
|
77
81
|
}
|
|
78
82
|
|
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ Pod::Spec.new do |s|
|
|
|
25
25
|
|
|
26
26
|
s.subspec 'Core' do |core|
|
|
27
27
|
core.source_files = "ios/**/*.{swift,h,m,mm}"
|
|
28
|
-
core.dependency "VerySDK/Core", "1.0.
|
|
28
|
+
core.dependency "VerySDK/Core", "1.0.35"
|
|
29
29
|
|
|
30
30
|
if respond_to?(:install_modules_dependencies, true)
|
|
31
31
|
install_modules_dependencies(core)
|
|
@@ -36,6 +36,6 @@ Pod::Spec.new do |s|
|
|
|
36
36
|
|
|
37
37
|
s.subspec 'Bundled' do |bundled|
|
|
38
38
|
bundled.dependency 'veryai-react-native-sdk/Core'
|
|
39
|
-
bundled.dependency 'VerySDK/Bundled', "1.0.
|
|
39
|
+
bundled.dependency 'VerySDK/Bundled', "1.0.35"
|
|
40
40
|
end
|
|
41
41
|
end
|