├── .eslintignore ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CapacitorCommunityInAppReview.podspec ├── LICENSE.md ├── Package.swift ├── README.md ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── proguard-rules.pro ├── settings.gradle └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── getcapacitor │ │ └── android │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── getcapacitor │ │ │ └── community │ │ │ └── inappreview │ │ │ ├── InAppReview.java │ │ │ └── InAppReviewPlugin.java │ └── res │ │ └── .gitkeep │ └── test │ └── java │ └── com │ └── getcapacitor │ └── ExampleUnitTest.java ├── example-app ├── .gitignore ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── capacitor.build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── getcapacitor │ │ │ │ └── myapp │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── plugin │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-land-hdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-mdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xxxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-hdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-mdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xxxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── splash.png │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── file_paths.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── myapp │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── capacitor.settings.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── variables.gradle ├── capacitor.config.json ├── ios │ ├── .gitignore │ └── App │ │ ├── App.xcodeproj │ │ └── project.pbxproj │ │ ├── App.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Splash.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── splash-2732x2732-1.png │ │ │ │ ├── splash-2732x2732-2.png │ │ │ │ └── splash-2732x2732.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ └── Info.plist │ │ └── Podfile ├── package-lock.json ├── package.json ├── src │ ├── assets │ │ ├── icon │ │ │ └── favicon.ico │ │ └── imgs │ │ │ └── logo.png │ ├── css │ │ └── style.css │ ├── index.html │ ├── js │ │ └── example.js │ └── manifest.json └── vite.config.ts ├── ios ├── .gitignore ├── Sources │ └── InAppReviewPlugin │ │ ├── InAppReview.swift │ │ └── InAppReviewPlugin.swift └── Tests │ └── InAppReviewPluginTests │ └── InAppReviewTests.swift ├── package.json ├── rollup.config.mjs ├── src ├── definitions.ts ├── index.ts └── web.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | example-app 4 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | example-app -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CapacitorCommunityInAppReview.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/CapacitorCommunityInAppReview.podspec -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/getcapacitor/community/inappreview/InAppReview.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/src/main/java/com/getcapacitor/community/inappreview/InAppReview.java -------------------------------------------------------------------------------- /android/src/main/java/com/getcapacitor/community/inappreview/InAppReviewPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/src/main/java/com/getcapacitor/community/inappreview/InAppReviewPlugin.java -------------------------------------------------------------------------------- /android/src/main/res/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/src/test/java/com/getcapacitor/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/android/src/test/java/com/getcapacitor/ExampleUnitTest.java -------------------------------------------------------------------------------- /example-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/.gitignore -------------------------------------------------------------------------------- /example-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/README.md -------------------------------------------------------------------------------- /example-app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/.gitignore -------------------------------------------------------------------------------- /example-app/android/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/.gitignore -------------------------------------------------------------------------------- /example-app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/build.gradle -------------------------------------------------------------------------------- /example-app/android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/capacitor.build.gradle -------------------------------------------------------------------------------- /example-app/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example-app/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /example-app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/java/com/example/plugin/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/java/com/example/plugin/MainActivity.java -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /example-app/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /example-app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/build.gradle -------------------------------------------------------------------------------- /example-app/android/capacitor.settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/capacitor.settings.gradle -------------------------------------------------------------------------------- /example-app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/gradle.properties -------------------------------------------------------------------------------- /example-app/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example-app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example-app/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/gradlew -------------------------------------------------------------------------------- /example-app/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/gradlew.bat -------------------------------------------------------------------------------- /example-app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/settings.gradle -------------------------------------------------------------------------------- /example-app/android/variables.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/android/variables.gradle -------------------------------------------------------------------------------- /example-app/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/capacitor.config.json -------------------------------------------------------------------------------- /example-app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/.gitignore -------------------------------------------------------------------------------- /example-app/ios/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-app/ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-app/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example-app/ios/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example-app/ios/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example-app/ios/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/App/Info.plist -------------------------------------------------------------------------------- /example-app/ios/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/ios/App/Podfile -------------------------------------------------------------------------------- /example-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/package-lock.json -------------------------------------------------------------------------------- /example-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/package.json -------------------------------------------------------------------------------- /example-app/src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /example-app/src/assets/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/src/assets/imgs/logo.png -------------------------------------------------------------------------------- /example-app/src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/src/css/style.css -------------------------------------------------------------------------------- /example-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/src/index.html -------------------------------------------------------------------------------- /example-app/src/js/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/src/js/example.js -------------------------------------------------------------------------------- /example-app/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/src/manifest.json -------------------------------------------------------------------------------- /example-app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/example-app/vite.config.ts -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Sources/InAppReviewPlugin/InAppReview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/ios/Sources/InAppReviewPlugin/InAppReview.swift -------------------------------------------------------------------------------- /ios/Sources/InAppReviewPlugin/InAppReviewPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/ios/Sources/InAppReviewPlugin/InAppReviewPlugin.swift -------------------------------------------------------------------------------- /ios/Tests/InAppReviewPluginTests/InAppReviewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/ios/Tests/InAppReviewPluginTests/InAppReviewTests.swift -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/src/definitions.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/src/web.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capacitor-community/in-app-review/HEAD/tsconfig.json --------------------------------------------------------------------------------