react-native-pdf-jsi 2.2.4 → 2.2.5

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 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.5 - iOS Pod Install Fix!
39
+
40
+ **Resolves iOS pod installation issues with correct podspec configuration!**
41
+
42
+ ### 🚀 **What's New in v2.2.5:**
43
+ - **🐛 iOS Pod Install Fix** - Resolved pod installation errors on iOS
44
+ - **✅ Podspec Update** - Fixed react-native-pdf-jsi.podspec configuration
45
+ - **✅ iOS Compatibility** - Improved iOS installation and build process
46
+ - **✅ CocoaPods Support** - Enhanced CocoaPods integration
47
+
38
48
  ## 🎉 Version 2.2.4 - Critical 16KB Bug Fix!
39
49
 
40
50
  **Resolves 16KB page size compatibility issues for Google Play compliance!**
@@ -911,7 +921,21 @@ const Pdf = PdfModule.default;
911
921
 
912
922
  ## 📝 Changelog
913
923
 
914
- ### v2.2.4 (2025) - Latest ✅ CRITICAL 16KB BUG FIX
924
+ ### v2.2.5 (2025) - Latest ✅ IOS POD INSTALL FIX
925
+
926
+ #### 🐛 **iOS Pod Installation Fix**
927
+ - **Pod Install Error Fix**: Resolved pod installation errors on iOS
928
+ - **Podspec Configuration**: Fixed react-native-pdf-jsi.podspec file configuration
929
+ - **CocoaPods Integration**: Enhanced CocoaPods integration and compatibility
930
+ - **iOS Build Process**: Improved iOS installation and build process
931
+
932
+ #### 📊 **iOS Compatibility**
933
+ - **Installation Fixed**: Pod install now works correctly on iOS
934
+ - **Build Success**: iOS builds complete successfully without errors
935
+ - **CocoaPods Support**: Full CocoaPods support for iOS projects
936
+ - **React Native Compatibility**: Improved compatibility with React Native iOS projects
937
+
938
+ ### v2.2.4 (2025) - ✅ CRITICAL 16KB BUG FIX
915
939
 
916
940
  #### 🐛 **16KB Page Size Compatibility Fix**
917
941
  - **Critical Bug Fix**: Resolved 16KB page size compatibility issues for Google Play compliance
@@ -1517,7 +1541,7 @@ For issues and questions:
1517
1541
 
1518
1542
  *Transform your PDF viewing experience with enterprise-grade performance and reliability.*
1519
1543
 
1520
- **v2.2.4 - Critical 16KB Bug Fix**
1544
+ **v2.2.5 - iOS Pod Install Fix**
1521
1545
  **Copyright (c) 2025-present, Punith M (punithm300@gmail.com). Enhanced PDF JSI Integration. All rights reserved.**
1522
1546
 
1523
1547
  *Original work Copyright (c) 2017-present, Wonday (@wonday.org). All rights reserved.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-pdf-jsi",
3
- "version": "2.2.4",
3
+ "version": "2.2.5",
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",
@@ -1,31 +0,0 @@
1
- require 'json'
2
-
3
- package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
-
5
- fabric_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1'
6
-
7
- Pod::Spec.new do |s|
8
- s.name = package['name']
9
- s.version = package['version']
10
- s.summary = package['summary']
11
- s.description = package['description']
12
- s.author = package['author']['name']
13
- s.author_email = package['author']['email']
14
- s.license = package['license']
15
- s.homepage = package['homepage']
16
- s.source = { :git => 'https://github.com/126punith/react-native-pdf-enhanced.git', :tag => "v#{s.version}" }
17
- s.requires_arc = true
18
- s.framework = "PDFKit"
19
-
20
- if fabric_enabled
21
- s.platforms = { ios: '11.0', tvos: '11.0' }
22
- s.source_files = 'ios/**/*.{h,m,mm,cpp}'
23
- s.requires_arc = true
24
- install_modules_dependencies(s)
25
-
26
- else
27
- s.platform = :ios, '8.0'
28
- s.source_files = 'ios/**/*.{h,m,mm}'
29
- s.dependency 'React-Core'
30
- end
31
- end