├── logo.png ├── CHANGELOG.md ├── .gitignore └── README.md /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/PSPDFKit-Demo/HEAD/logo.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## PSPDFKit Changelog 2 | 3 | Our release notes have moved to https://pspdfkit.com/changelog. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | */build 3 | *.pbxuser 4 | !default.pbxuser 5 | *.mode1v3 6 | !default.mode1v3 7 | *.mode2v3 8 | !default.mode2v3 9 | *.perspectivev3 10 | !default.perspectivev3 11 | *.xcworkspace 12 | !default.xcworkspace 13 | xcuserdata 14 | profile 15 | *.moved-aside 16 | 17 | # Xcode 4 18 | *.xcworkspace 19 | xcuserdata 20 | 21 | # osx noise 22 | .DS_Store 23 | profile 24 | 25 | build 26 | Development 27 | Releases 28 | Products 29 | Samples 30 | InfoPlist.h 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![PSPDFKit Logo](logo.png) 2 | 3 | *PSPDFKit - The leading framework for displaying and annotating PDFs in your iOS and Android apps.* 4 | 5 | This repository is no longer used. Visit [https://PSPDFKit.com](https://PSPDFKit.com) to download the demo and get a trial license key. 6 | 7 | PSPDFKit is now Nutrient - You can learn more about our iOS, Android, Web, and Hybrid frameworks by visiting our guide overview [https://www.nutrient.io/sdk/developers](https://www.nutrient.io/sdk/developers). 8 | --------------------------------------------------------------------------------