Skip to content

Commit

Permalink
Release 1.5.3 and update plugin to support iOS 15+ (#57)
Browse files Browse the repository at this point in the history
* Bump deployment target to iOS 15

* Bump to PSPDFKit 12.4 for iOS

* Update version to 1.5.3
  • Loading branch information
steviki authored Aug 30, 2023
1 parent a715cd5 commit 31b08f1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/ios/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ open platforms/ios/Podifile
```diff
source 'https://github.com/CocoaPods/Specs.git'
- platform :ios, '11.0'
+ platform :ios, '14.0'
+ platform :ios, '15.0'
use_frameworks!
target 'MyApp' do
project 'MyApp.xcodeproj'
Expand Down
2 changes: 1 addition & 1 deletion examples/cordova/PSPDFKit-Demo/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<preference name="deployment-target" value="14.0" />
<preference name="deployment-target" value="15.0" />
</platform>
</widget>
2 changes: 1 addition & 1 deletion examples/ionic/PSPDFKit-Demo/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<allow-navigation href="*" />
<preference name="deployment-target" value="14.0" />
<preference name="deployment-target" value="15.0" />
<icon height="57" src="resources/ios/icon/icon.png" width="57" />
<icon height="114" src="resources/ios/icon/[email protected]" width="114" />
<icon height="29" src="resources/ios/icon/icon-small.png" width="29" />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pspdfkit-cordova",
"version": "1.5.2",
"version": "1.5.3",
"description": "PSPDFKit Cordova Plugin for Android and iOS",
"cordova": {
"id": "pspdfkit-cordova",
Expand Down
8 changes: 4 additions & 4 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="pspdfkit-cordova" version="1.5.2">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="pspdfkit-cordova" version="1.5.3">
<engines>
<engine name="cordova" version=">=10.1.0" />
<engine name="cordova-android" version=">=10.1.1" />
Expand Down Expand Up @@ -95,7 +95,7 @@ AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE PSPDFKIT LICENSE A
<source url="https://github.com/CocoaPods/Specs.git" />
</config>
<pods use-frameworks="true">
<pod name="PSPDFKit" spec="~> 11.4.0"/>
<pod name="PSPDFKit" spec="~> 12.4.0"/>
</pods>
</podspec>
</platform>
Expand All @@ -104,8 +104,8 @@ AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE PSPDFKIT LICENSE A
**Important** If you’re an existing customer, you can find your license key in your customer portal(https://customers.pspdfkit.com/).
iOS: Since this plugin is iOS 14+ only, you will have to set the deployment target
of your Xcode project in platforms/ios to iOS 14.
iOS: Since this plugin is iOS 15+ only, you will have to set the deployment target
of your Xcode project in platforms/ios to iOS 15.
For the complete documentation and troubleshooting, check out our documentation at https://github.com/PSPDFKit/PSPDFKit-Cordova.
In case there are issues, feel free to reach out to our support team at https://pspdfkit.com/support/request/.
Expand Down

0 comments on commit 31b08f1

Please sign in to comment.