Skip to content

Commit 265ded9

Browse files
authored
Update to PSPDFKit for Android version 6.6.0 (#388)
* Bump PSPDFKit for Android from 6.5.3 to 6.6.0 * Bump plugin version to 1.30.8 * Updates example commit for doing a version bump
1 parent 33e2560 commit 265ded9

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
# Acceptance Criteria
55

6-
- [ ] When approved, right before merging, rebase with master and increment the package version in `package.json`, `package-lock.json`, `samples/Catalog/package.json`, and `samples/NativeCatalog/package.json` (see example commit: https://github.com/PSPDFKit/react-native/pull/202/commits/1bf805feef2ac268743e4905d94d6d8c8f16ec59).
6+
- [ ] When approved, right before merging, rebase with master and increment the package version in `package.json`, `package-lock.json`, `samples/Catalog/package.json`, and `samples/NativeCatalog/package.json` (see example commit: https://github.com/PSPDFKit/react-native/pull/389/commits/ae027329b5380906fa778354945178c7e92730a4).
77
- [ ] Create a new release (and tag) with the new package version (see https://github.com/PSPDFKit/react-native/releases).

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ target 'YourApp' do
7171
end
7272
+ pod 'react-native-pspdfkit', :path => '../node_modules/react-native-pspdfkit'
7373
+ pod 'PSPDFKit', podspec: 'https://customers.pspdfkit.com/pspdfkit-ios/latest.podspec'
74-
74+
7575
# Enables Flipper.
7676
#
7777
# Note that if you have use_frameworks! enabled, Flipper will not work and
@@ -371,7 +371,7 @@ For a runnable example, please take a look at the [AnnotationProcessing example
371371
- Android Build Tools 23.0.1 (React Native)
372372
- Android Build Tools 28.0.3 (PSPDFKit module)
373373
- Android Gradle plugin >= 3.4.1
374-
- PSPDFKit >= 6.5.3
374+
- PSPDFKit >= 6.6.0
375375
- react-native >= 0.63.2
376376

377377
#### Getting Started
@@ -608,12 +608,12 @@ The PSPDFKit React Native Android Wrapper allows you to specify a custom groupin
608608
609609
#### Update
610610
611-
Upgrading yarn's lock file is required in order to update react-native-pspdfkit module in a project that has been already setup following the steps in [Getting Started](#getting-started-1) section.
611+
Upgrading yarn's lock file is required in order to update react-native-pspdfkit module in a project that has been already setup following the steps in [Getting Started](#getting-started-1) section.
612612
From root project folder (e.g.`YourApp` for upgrading example project) launch `yarn upgrade`.
613613

614614
##### Migrate from PSPDFKit version 2.9.x to 3.0.0
615615

616-
After launching `yarn upgrade`, apply [step 7](#step-7), [step 10](#step-10) and [step 12](#step-12) from [Getting Started](#getting-started-1) section.
616+
After launching `yarn upgrade`, apply [step 7](#step-7), [step 10](#step-10) and [step 12](#step-12) from [Getting Started](#getting-started-1) section.
617617
Enable MultiDex in `YourApp/android/app/build.gradle` (note **one** place to edit):
618618

619619
```diff
@@ -636,7 +636,7 @@ defaultConfig {
636636
...
637637
```
638638
639-
Remove `pspdfkit-lib` folder in `YourApp/android/`.
639+
Remove `pspdfkit-lib` folder in `YourApp/android/`.
640640
In `YourApp/android/settings.gradle` remove the old reference to `pspdfkit-lib` (note **one** place to edit):
641641
642642
```diff
@@ -647,7 +647,7 @@ Remove `pspdfkit-lib` folder in `YourApp/android/`.
647647
648648
##### Migrate from PSPDFKit version 3.3.3 to 4.0.x
649649
650-
After launching `yarn upgrade`, apply [step 6](#step-6), [step 8](#step-8) and [step 10](#step-10) from [Getting Started](#getting-started-1) section.
650+
After launching `yarn upgrade`, apply [step 6](#step-6), [step 8](#step-8) and [step 10](#step-10) from [Getting Started](#getting-started-1) section.
651651
Enable MultiDex in `YourApp/android/app/build.gradle` (note **four** place to edit):
652652
653653
```diff
@@ -697,7 +697,7 @@ Windows UWP is not currently supported on `master`, please follow the integratio
697697
698698
## License
699699
700-
This project can be used for evaluation or if you have a valid PSPDFKit license.
700+
This project can be used for evaluation or if you have a valid PSPDFKit license.
701701
All items and source code Copyright © 2010-2021 PSPDFKit GmbH.
702702
703703
See LICENSE for details.

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Contains gradle configuration constants
1616
*/
1717
ext {
18-
PSPDFKIT_VERSION = '6.5.3'
18+
PSPDFKIT_VERSION = '6.6.0'
1919
}
2020

2121
buildscript {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-pspdfkit",
3-
"version": "1.30.7",
3+
"version": "1.30.8",
44
"description": "A React Native module for the PSPDFKit library.",
55
"keywords": [
66
"react native",

samples/Catalog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Catalog",
3-
"version": "1.30.7",
3+
"version": "1.30.8",
44
"private": true,
55
"scripts": {
66
"start": "react-native start",

samples/NativeCatalog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "NativeCatalog",
3-
"version": "1.30.7",
3+
"version": "1.30.8",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",

0 commit comments

Comments
 (0)