Skip to content

Commit 5b2716a

Browse files
author
PSPDFKit
committed
Release 2.7.0
1 parent ee492db commit 5b2716a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+7207
-115
lines changed

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
11
## Newest Release
22

3+
### 2.7.0 - 07 Sep 2023
4+
5+
- Adds Annotation Preset customization. (#41528)
6+
- Updates for PSPDFKit 8.8.1 for Android. (#41910)
7+
- Updates for PSPDFKit 12.3.1 for iOS. (#41910)
8+
- Updates the deployment target to iOS 15. (#39956)
9+
- Fixed issue where configuration is overridden by ToolbarMenuItems. (#41681)
10+
- Fixed issue where PDF generation returns "can not get property of null" on iOS. (#41247)
11+
- Fixed annotation toolbar menu grouping customization values. (#41197)
12+
- Fixed issue where the close button is not displayed on iOS. (#41710)
13+
- Fixed issue where showCloseButton config removes all other BarButtonItems on iOS. (#41731)
14+
- Fixed issue where presentInstant uses different parameters on iOS and Android. (#41922)
15+
16+
## Previous Releases
17+
318
### 2.6.1 - 19 Jun 2023
419

520
- Updates for PSPDFKit 8.7.3 for Android. (#40880)
621
- Updates for PSPDFKit 12.3 for iOS. (##40880)
722
- Fixes issue when showThumbnailBar is set to pinned (#40807)
823

9-
## Previous Releases
10-
1124
### 2.6.0 - 05 Jun 2023
1225

1326
- Adds measurement tools configurations (#40296)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Let's create a simple app that integrates PSPDFKit and uses the `react-native-ps
9393
yarn install
9494
```
9595

96-
1. Open your project’s Podfile in a text editor to update the platform to iOS 14, and add the PSPDFKit Podspec:
96+
1. Open your project’s Podfile in a text editor to update the platform to iOS 15, and add the PSPDFKit Podspec:
9797

9898
```bash
9999
open ios/Podfile
@@ -106,7 +106,7 @@ Let's create a simple app that integrates PSPDFKit and uses the `react-native-ps
106106
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
107107

108108
- platform :ios, '10.0'
109-
+ platform :ios, '14.0'
109+
+ platform :ios, '15.0'
110110

111111
target 'PSPDFKitDemo' do
112112
config = use_native_modules!
@@ -153,7 +153,7 @@ Let's create a simple app that integrates PSPDFKit and uses the `react-native-ps
153153
open PSPDFKitDemo.xcworkspace
154154
```
155155

156-
1. Make sure the deployment target is set to 14.0 or higher:
156+
1. Make sure the deployment target is set to 15.0 or higher:
157157

158158
![deployment-target](./screenshots/deployment-target.png)
159159

android/build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@
1515
* Contains gradle configuration constants
1616
*/
1717
ext {
18-
PSPDFKIT_VERSION = '8.7.3'
18+
PSPDFKIT_VERSION = '8.8.1'
1919
}
2020

2121
buildscript {
22+
ext.kotlin_version = '1.8.10'
23+
2224
repositories {
2325
mavenCentral()
2426
maven {
@@ -31,10 +33,12 @@ buildscript {
3133

3234
dependencies {
3335
classpath 'com.android.tools.build:gradle:7.1.0-alpha03'
36+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
3437
}
3538
}
3639

3740
apply plugin: 'com.android.library'
41+
apply plugin: 'kotlin-android'
3842

3943
android {
4044
compileSdkVersion 33
@@ -63,4 +67,5 @@ dependencies {
6367
}
6468
implementation "com.facebook.react:react-native:+"
6569
implementation 'com.squareup.okhttp3:okhttp:4.9.2'
70+
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
6671
}

0 commit comments

Comments
 (0)