Skip to content

Commit f36002f

Browse files
committed
Updated Readme.
1 parent 23f6536 commit f36002f

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,11 +245,17 @@ adb push /path/to/your/document.pdf /sdcard/document.pdf
245245
```diff
246246
# Uncomment this line to define a global platform for your project
247247
- # platform :ios, '9.0'
248-
+ platform :ios, '11.0'
248+
+ platform :ios, '12.0'
249249
...
250+
```
251+
Add the podspec link for `PSPDFKit` in `ios/Podfile` as shown below:
252+
253+
__Optional:__ If you wish to use a specific version of `PSPDFKit` or the nightly version, you should use the appropriate podspec link.
254+
255+
```
250256
target 'Runner' do
251257
use_frameworks!
252-
+ pod 'PSPDFKit', podspec:'https://customers.pspdfkit.com/cocoapods/YOUR_COCOAPODS_KEY_GOES_HERE/pspdfkit/latest.podspec'
258+
+ pod 'PSPDFKit', podspec:'https://customers.pspdfkit.com/pspdfkit-ios/latest-framework.podspec'
253259
...
254260
end
255261
```

example/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ pspdfkit.password=YOUR_PASSWORD_GOES_HERE
1515
flutter.buildMode=debug
1616
```
1717

18-
3. Replace `YOUR_COCOAPODS_KEY_GOES_HERE` with your Cocoapods key in `pspdfkit-flutter/example/iOS/Podfile`
18+
3. __Optional:__ Replace the podspec link in `pspdfkit-flutter/example/iOS/Podfile` if you wish to use a specific version of `PSPDFKit`, or the nightly version.
1919

2020
```bash
2121
...
2222
target 'Runner' do
23-
pod 'PSPDFKit', podspec:'https://customers.pspdfkit.com/cocoapods/YOUR_COCOAPODS_KEY_GOES_HERE/pspdfkit/latest.podspec'
23+
pod 'PSPDFKit', podspec:'https://customers.pspdfkit.com/pspdfkit-ios/latest-framework.podspec'
2424
...
2525
```
2626

0 commit comments

Comments
 (0)