react-native-pdf-jsi 2.2.2 → 2.2.3
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/README.md +26 -3
- package/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,6 +35,16 @@ Starting November 1, 2025, Google Play will require apps to support 16KB page si
|
|
|
35
35
|
- ✅ **Google Play Approved** - Meets all current and future requirements
|
|
36
36
|
- ✅ **Drop-in Replacement** - Easy migration from existing libraries
|
|
37
37
|
|
|
38
|
+
## 🎉 Version 2.2.3 - Bug Fix Release!
|
|
39
|
+
|
|
40
|
+
**Critical bug fix for React Native 0.81 JSI initialization on Android!**
|
|
41
|
+
|
|
42
|
+
### 🚀 **What's New in v2.2.3:**
|
|
43
|
+
- **🐛 JSI Initialization Fix** - Resolved crash when calling initializeJSI() on React Native 0.81 Android
|
|
44
|
+
- **✅ Error Handling** - Added proper error handling for JSI initialization
|
|
45
|
+
- **✅ RN 0.81 Compatibility** - Full compatibility with React Native 0.81 on Android
|
|
46
|
+
- **✅ Stability Improvements** - Enhanced stability and error recovery
|
|
47
|
+
|
|
38
48
|
## 🎉 Version 2.2.2 - Production Ready with Latest NDK!
|
|
39
49
|
|
|
40
50
|
**Includes all the fixes from the GitHub community with the latest NDK r28.2 - tested and verified in production apps!**
|
|
@@ -890,7 +900,20 @@ const Pdf = PdfModule.default;
|
|
|
890
900
|
|
|
891
901
|
## 📝 Changelog
|
|
892
902
|
|
|
893
|
-
### v2.2.
|
|
903
|
+
### v2.2.3 (2025) - Latest ✅ BUG FIX RELEASE
|
|
904
|
+
|
|
905
|
+
#### 🐛 **Critical Bug Fixes**
|
|
906
|
+
- **JSI Initialization Fix**: Resolved crash when calling `initializeJSI()` on React Native 0.81 Android
|
|
907
|
+
- **Error Handling**: Added comprehensive error handling for JSI initialization process
|
|
908
|
+
- **Stability**: Enhanced error recovery and graceful fallback mechanisms
|
|
909
|
+
- **Compatibility**: Full compatibility with React Native 0.81 on Android platform
|
|
910
|
+
|
|
911
|
+
#### 📊 **Issue Resolution**
|
|
912
|
+
- **GitHub Issue Fix**: Addressed user-reported crash on PDF opening in RN 0.81
|
|
913
|
+
- **Android Stability**: Improved Android JSI initialization reliability
|
|
914
|
+
- **Error Messages**: Better error messages for debugging JSI issues
|
|
915
|
+
|
|
916
|
+
### v2.2.2 (2025) - ✅ PRODUCTION READY WITH LATEST NDK
|
|
894
917
|
|
|
895
918
|
#### 🚀 **Latest NDK Integration**
|
|
896
919
|
- **NDK r28.2 Update**: Updated to NDK 28.2.13676358 (matches @IsengardZA's exact solution)
|
|
@@ -1230,7 +1253,7 @@ const ComplianceChecker = () => {
|
|
|
1230
1253
|
{compliance.message}
|
|
1231
1254
|
</Text>
|
|
1232
1255
|
)}
|
|
1233
|
-
|
|
1256
|
+
</View>
|
|
1234
1257
|
);
|
|
1235
1258
|
};
|
|
1236
1259
|
```
|
|
@@ -1463,7 +1486,7 @@ For issues and questions:
|
|
|
1463
1486
|
|
|
1464
1487
|
*Transform your PDF viewing experience with enterprise-grade performance and reliability.*
|
|
1465
1488
|
|
|
1466
|
-
**v2.2.
|
|
1489
|
+
**v2.2.3 - Bug Fix Release**
|
|
1467
1490
|
**Copyright (c) 2025-present, Punith M (punithm300@gmail.com). Enhanced PDF JSI Integration. All rights reserved.**
|
|
1468
1491
|
|
|
1469
1492
|
*Original work Copyright (c) 2017-present, Wonday (@wonday.org). All rights reserved.*
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-pdf-jsi",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"summary": "High-performance React Native PDF viewer with JSI acceleration - up to 80x faster than traditional bridge",
|
|
5
5
|
"description": "🚀 Ultra-fast React Native PDF viewer with JSI (JavaScript Interface) integration for maximum performance. Features lazy loading, smart caching, progressive loading, and zero-bridge overhead operations. Perfect for large PDF files with 30-day persistent cache and advanced memory optimization. Google Play 16KB page size compliant for Android 15+. Supports iOS, Android, and Windows platforms.",
|
|
6
6
|
"main": "index.js",
|