Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.android.Version

buildscript {
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["VclReactNative_kotlinVersion"]
Expand Down Expand Up @@ -34,7 +36,7 @@ def getExtOrIntegerDefault(name) {
}

static def supportsNamespace() {
def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')
def parsed = Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')
def major = parsed[0].toInteger()
def minor = parsed[1].toInteger()

Expand Down Expand Up @@ -92,7 +94,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

//--------- Must: be added:
implementation "io.velocitycareerlabs:vcl:2.7.5"
implementation "io.velocitycareerlabs:vcl:2.7.6"
implementation 'com.nimbusds:nimbus-jose-jwt:10.3.1'
implementation "androidx.security:security-crypto:1.1.0-beta01"
//-------------------------
Expand Down
10 changes: 5 additions & 5 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1498,8 +1498,8 @@ PODS:
- React-perflogger (= 0.75.5)
- React-utils (= 0.75.5)
- SocketRocket (0.7.0)
- VCL (2.7.5)
- velocitycareerlabs-vcl-react-native (2.7.5):
- VCL (2.7.6)
- velocitycareerlabs-vcl-react-native (2.7.6):
- DoubleConversion
- glog
- hermes-engine
Expand All @@ -1519,7 +1519,7 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- VCL (= 2.7.5)
- VCL (= 2.7.6)
- Yoga
- Yoga (0.0.0)

Expand Down Expand Up @@ -1788,8 +1788,8 @@ SPEC CHECKSUMS:
ReactCodegen: 43d3ebb0cb9c6ffc92a254d31749fd29d69844a2
ReactCommon: ee80ae3d276a9f1daa059169405b97c600dcba45
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
VCL: b3360eb175c61ad2c978f15cd6e948b6758bd005
velocitycareerlabs-vcl-react-native: e4947e18225aafd02df0de890530983dc3b37583
VCL: 3b27df03a7a8f4dd4618dbe9cd3af2f53035ef44
velocitycareerlabs-vcl-react-native: 4b913dcadd732331521c4d3cf11e272d0fbe9589
Yoga: 1dd9dabb9df8fe08f12cd522eae04a2da0e252eb

PODFILE CHECKSUM: dda665d1488c2a02df92eccd852bd6de0cd38761
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@velocitycareerlabs/vcl-react-native",
"version": "2.7.5",
"version": "2.7.6",
"description": "Velocity Career Labs React Native SDK",
"license": "Apache-2.0",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion velocitycareerlabs-vcl-react-native.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |s|

s.source_files = "ios/**/*.{h,m,mm,swift}"

s.dependency "VCL", "2.7.5"
s.dependency "VCL", "2.7.6"

# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
Expand Down