Skip to content

Commit 4362faf

Browse files
author
PSPDFKit
committed
Release 3.10.1
1 parent 4d53995 commit 4362faf

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Newest Release
22

3+
### 3.10.1 - 28 May 2024
4+
- Fixes issue where ViewUtils.generateViewId() cannot be resolved. (J#HYB-379)
5+
6+
## Previous Releases
7+
38
### 3.10.0 - 03 May 2024
49
- Adds APIs to get page information such as size, rotation and label. (J#HYB-195)
510
- Adds document load callbacks to `PspdfkitWidget`. (J#HYB-195)
@@ -8,8 +13,6 @@
813
- Updates for PSPDFKit 2024.2.1 for Android.
914
- Updates for PSPDFKit 13.4.1 for iOS.
1015

11-
## Previous Releases
12-
1316
### 3.9.1 - 12 Apr 2024
1417
- Downgrades to AGP 7.* for backward compatibility (J#HYB-290)
1518
- Allow null value for `Pspdfkit.setLicenseKey` (J#HYB-294)

android/src/main/java/io/flutter/embedding/android/FlutterAppCompatActivity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class FlutterAppCompatActivity extends AppCompatActivity
6868
private static final String TAG_FLUTTER_FRAGMENT = "flutter_fragment";
6969
// TODO(mattcarroll): replace ID with R.id when build system supports R.java
7070
public static final int FRAGMENT_CONTAINER_ID =
71-
ViewUtils.generateViewId(609893468); // random number
71+
View.generateViewId(); // random number
7272

7373
/**
7474
* Creates an {@link Intent} that launches a {@code FlutterFragmentActivity}, which executes a

example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pspdfkit_example
22
description: Demonstrates how to use the pspdfkit plugin.
3-
version: 3.10.0
3+
version: 3.10.1
44
homepage: https://pspdfkit.com/
55
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
66
environment:

ios/pspdfkit_flutter.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
Pod::Spec.new do |s|
77
s.name = "pspdfkit_flutter"
8-
s.version = "3.10.0"
8+
s.version = "3.10.1"
99
s.homepage = "https://PSPDFKit.com"
1010
s.documentation_url = "https://pspdfkit.com/guides/flutter"
1111
s.license = { type: "Commercial", file: "../LICENSE" }
@@ -22,6 +22,6 @@ Pod::Spec.new do |s|
2222
s.dependency("Instant", "13.4.1")
2323
s.swift_version = "5.0"
2424
s.platform = :ios, "15.0"
25-
s.version = "3.10.0"
25+
s.version = "3.10.1"
2626
s.pod_target_xcconfig = { "DEFINES_MODULE" => "YES", "SWIFT_INSTALL_OBJC_HEADER" => "NO" }
2727
end

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pspdfkit_flutter
22
description: A Flutter plugin providing a feature-rich PDF viewing and editing experience to your users with the powerful PSPDFKit PDF SDK.
3-
version: 3.10.0
3+
version: 3.10.1
44
homepage: https://pspdfkit.com/
55
repository: https://github.com/PSPDFKit/pspdfkit-flutter
66
issue_tracker: https://support.pspdfkit.com/hc/en-us/requests/new

0 commit comments

Comments
 (0)