Skip to content

Commit 6af5ee6

Browse files
version bump & android sdk update (#805)
1 parent d70d117 commit 6af5ee6

File tree

5 files changed

+55
-4
lines changed

5 files changed

+55
-4
lines changed

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,56 @@
11
# RELEASES
22

3+
## LinkKit V12.5.0 — 2025-09-04
4+
5+
#### Requirements
6+
7+
This SDK now works with any supported version of React Native.
8+
9+
### Changes
10+
11+
- Updates Android SDK to the latest version.
12+
- Resolve issue [804](https://github.com/plaid/react-native-plaid-link-sdk/issues/804) bottom Navigation Bar Overlapping UI Elements
13+
14+
15+
### Android
16+
17+
Android SDK [5.3.2](https://github.com/plaid/plaid-link-android/releases/tag/v5.3.2)
18+
19+
### Additions
20+
21+
- Upgrade com.google.protobuf:protobuf-kotlin-lite to 3.25.5
22+
- Ensure SDK screens resize for keyboard insets on Android 15+
23+
24+
### Changes
25+
26+
- None
27+
28+
### Removals
29+
30+
- None
31+
32+
#### Requirements
33+
34+
| Name | Version |
35+
|------|---------|
36+
| Android Studio | 4.0+ |
37+
| Kotlin | 1.9.25+ (Kotlin integrations only) |
38+
39+
### iOS
40+
41+
iOS SDK [6.4.0](https://github.com/plaid/plaid-link-ios/releases/tag/6.4.0)
42+
43+
### Changes
44+
45+
- Add issueDescription and issueDetectedAt to EventMetadata.
46+
47+
#### Requirements
48+
49+
| Name | Version |
50+
|------|---------|
51+
| Xcode | >= 16.1.0 |
52+
| iOS | >= 14.0 |
53+
354
## LinkKit V12.4.0 — 2025-08-06
455

556
#### Requirements

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@ repositories {
106106

107107
dependencies {
108108
implementation "com.facebook.react:react-native:+"
109-
implementation "com.plaid.link:sdk-core:5.3.0"
109+
implementation "com.plaid.link:sdk-core:5.3.2"
110110
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
111111
}

android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<application>
55
<meta-data
66
android:name="com.plaid.link.react_native"
7-
android:value="12.4.0" />
7+
android:value="12.5.0" />
88
</application>
99

1010
</manifest>

ios/RNLinksdk.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ @implementation RNLinksdk
2828
RCT_EXPORT_MODULE();
2929

3030
+ (NSString*)sdkVersion {
31-
return @"12.4.0"; // SDK_VERSION
31+
return @"12.5.0"; // SDK_VERSION
3232
}
3333

3434
+ (NSString*)objCBridgeVersion {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-plaid-link-sdk",
3-
"version": "12.4.0",
3+
"version": "12.5.0",
44
"description": "React Native Plaid Link SDK",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)