├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation-issue.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── README.md ├── package.json ├── plugin.xml ├── src ├── android │ └── LaunchReview.java └── ios │ ├── LaunchReview.h │ ├── LaunchReview.m │ ├── UIWindow+DismissNotification.h │ └── UIWindow+DismissNotification.m └── www └── launchreview.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/.github/ISSUE_TEMPLATE/documentation-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/LaunchReview.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/src/android/LaunchReview.java -------------------------------------------------------------------------------- /src/ios/LaunchReview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/src/ios/LaunchReview.h -------------------------------------------------------------------------------- /src/ios/LaunchReview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/src/ios/LaunchReview.m -------------------------------------------------------------------------------- /src/ios/UIWindow+DismissNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/src/ios/UIWindow+DismissNotification.h -------------------------------------------------------------------------------- /src/ios/UIWindow+DismissNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/src/ios/UIWindow+DismissNotification.m -------------------------------------------------------------------------------- /www/launchreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpa99c/cordova-launch-review/HEAD/www/launchreview.js --------------------------------------------------------------------------------