├── .gitignore ├── LICENSE ├── README.md ├── package.json └── plugin.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | 3 | # Mobile Tools for Java (J2ME) 4 | .mtj.tmp/ 5 | 6 | # Package Files # 7 | *.jar 8 | *.war 9 | *.ear 10 | 11 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 12 | hs_err_pid* 13 | 14 | # IntelliJ IDEA 15 | .idea 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015-2019 PSPDFKit GmbH 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **⚠️ IMPORTANT:** This plugin has been deprecated in favor of [PSPDFKit-Cordova](https://github.com/PSPDFKit/PSPDFKit-Cordova). To migrate to the new plugin, please follow the steps in the [migration guide here](https://github.com/PSPDFKit/PSPDFKit-Cordova/tree/master/docs/android#migration-guide-from-cordova-android). 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pspdfkit-cordova-android", 3 | "version": "5.6.0", 4 | "description": "Integration of the PSPDFKit for Android library.", 5 | "cordova": { 6 | "id": "pspdfkit-cordova-android", 7 | "platforms": [ 8 | "android" 9 | ] 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/PSPDFKit/Cordova-Android.git" 14 | }, 15 | "keywords": [ 16 | "pdf", 17 | "pspdfkit", 18 | "android", 19 | "ecosystem:cordova", 20 | "cordova-android" 21 | ], 22 | "engines": { 23 | "cordovaDependencies": { 24 | "5.5.1": { "cordova-android": ">=8.0.0" } 25 | } 26 | }, 27 | "author": "PSPDFKit", 28 | "license": "MIT", 29 | "bugs": { 30 | "url": "https://github.com/PSPDFKit/Cordova-Android/issues" 31 | }, 32 | "homepage": "https://github.com/PSPDFKit/Cordova-Android#readme" 33 | } 34 | -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 13 | PSPDFKit-Android 14 | Integration of the PSPDFKit for Android library. 15 | PSPDFKit 16 | pdf,pspdfkit,android 17 | MIT 18 | 19 | 22 | 23 | 24 | 25 | --------------------------------------------------------------------------------