Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.5.2 and update plugin to support iOS 14+ #55

Merged
merged 5 commits into from
May 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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, '13.0'
+ platform :ios, '14.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="13.0" />
<preference name="deployment-target" value="14.0" />
</platform>
</widget>
2 changes: 1 addition & 1 deletion examples/cordova/PSPDFKit-Demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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="13.0" />
<preference name="deployment-target" value="14.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
4 changes: 2 additions & 2 deletions examples/ionic/PSPDFKit-Demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.1",
"version": "1.5.2",
"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.1">
<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">
<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.3.0"/>
<pod name="PSPDFKit" spec="~> 11.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 13+ only, you will have to set the deployment target
of your Xcode project in platforms/ios to iOS 13.
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.

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