Skip to content

Commit 37c7c2f

Browse files
Merge pull request #363 from velocitycareerlabs/VL-8814-fix-find-credential-type
fix: find a credential's type
2 parents 38172ca + daee748 commit 37c7c2f

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

android/build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import com.android.Version
2+
13
buildscript {
24
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
35
def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["VclReactNative_kotlinVersion"]
@@ -34,7 +36,7 @@ def getExtOrIntegerDefault(name) {
3436
}
3537

3638
static def supportsNamespace() {
37-
def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')
39+
def parsed = Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')
3840
def major = parsed[0].toInteger()
3941
def minor = parsed[1].toInteger()
4042

@@ -92,7 +94,7 @@ dependencies {
9294
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
9395

9496
//--------- Must: be added:
95-
implementation "io.velocitycareerlabs:vcl:2.7.5"
97+
implementation "io.velocitycareerlabs:vcl:2.7.6"
9698
implementation 'com.nimbusds:nimbus-jose-jwt:10.3.1'
9799
implementation "androidx.security:security-crypto:1.1.0-beta01"
98100
//-------------------------

example/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1498,8 +1498,8 @@ PODS:
14981498
- React-perflogger (= 0.75.5)
14991499
- React-utils (= 0.75.5)
15001500
- SocketRocket (0.7.0)
1501-
- VCL (2.7.5)
1502-
- velocitycareerlabs-vcl-react-native (2.7.5):
1501+
- VCL (2.7.6)
1502+
- velocitycareerlabs-vcl-react-native (2.7.6):
15031503
- DoubleConversion
15041504
- glog
15051505
- hermes-engine
@@ -1519,7 +1519,7 @@ PODS:
15191519
- ReactCodegen
15201520
- ReactCommon/turbomodule/bridging
15211521
- ReactCommon/turbomodule/core
1522-
- VCL (= 2.7.5)
1522+
- VCL (= 2.7.6)
15231523
- Yoga
15241524
- Yoga (0.0.0)
15251525

@@ -1788,8 +1788,8 @@ SPEC CHECKSUMS:
17881788
ReactCodegen: 43d3ebb0cb9c6ffc92a254d31749fd29d69844a2
17891789
ReactCommon: ee80ae3d276a9f1daa059169405b97c600dcba45
17901790
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
1791-
VCL: b3360eb175c61ad2c978f15cd6e948b6758bd005
1792-
velocitycareerlabs-vcl-react-native: e4947e18225aafd02df0de890530983dc3b37583
1791+
VCL: 3b27df03a7a8f4dd4618dbe9cd3af2f53035ef44
1792+
velocitycareerlabs-vcl-react-native: 4b913dcadd732331521c4d3cf11e272d0fbe9589
17931793
Yoga: 1dd9dabb9df8fe08f12cd522eae04a2da0e252eb
17941794

17951795
PODFILE CHECKSUM: dda665d1488c2a02df92eccd852bd6de0cd38761

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@velocitycareerlabs/vcl-react-native",
3-
"version": "2.7.5",
3+
"version": "2.7.6",
44
"description": "Velocity Career Labs React Native SDK",
55
"license": "Apache-2.0",
66
"publishConfig": {

velocitycareerlabs-vcl-react-native.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Pod::Spec.new do |s|
1515

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

18-
s.dependency "VCL", "2.7.5"
18+
s.dependency "VCL", "2.7.6"
1919

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

0 commit comments

Comments
 (0)