├── .changeset ├── README.md └── config.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── examples ├── basic.yml ├── capacitor-app │ ├── .gitignore │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── getcapacitor │ │ │ │ │ └── myapp │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── ionic │ │ │ │ │ │ └── starter │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── icon.png │ │ │ │ │ └── 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 │ │ │ │ │ ├── raw │ │ │ │ │ └── config.json │ │ │ │ │ ├── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── file_paths.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── getcapacitor │ │ │ │ └── myapp │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── variables.gradle │ ├── capacitor.config.ts │ ├── config.dev.yml │ ├── config.prod.yml │ ├── ionic.config.json │ ├── ios │ │ ├── .gitignore │ │ └── App │ │ │ ├── App.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── App.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── App │ │ │ ├── App.entitlements │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon-20x20@1x.png │ │ │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ │ │ ├── AppIcon-20x20@2x.png │ │ │ │ │ ├── AppIcon-20x20@3x.png │ │ │ │ │ ├── AppIcon-29x29@1x.png │ │ │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ │ │ ├── AppIcon-29x29@2x.png │ │ │ │ │ ├── AppIcon-29x29@3x.png │ │ │ │ │ ├── AppIcon-40x40@1x.png │ │ │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ │ │ ├── AppIcon-40x40@2x.png │ │ │ │ │ ├── AppIcon-40x40@3x.png │ │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ │ ├── AppIcon-60x60@2x.png │ │ │ │ │ ├── AppIcon-60x60@3x.png │ │ │ │ │ ├── AppIcon-76x76@1x.png │ │ │ │ │ ├── AppIcon-76x76@2x.png │ │ │ │ │ ├── AppIcon-83.5x83.5@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 │ │ │ ├── capacitor.config.json │ │ │ └── config.xml │ │ │ └── Podfile │ ├── package.json │ ├── public │ │ ├── assets │ │ │ ├── icon │ │ │ │ ├── favicon.png │ │ │ │ └── icon.png │ │ │ └── shapes.svg │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── components │ │ │ ├── ExploreContainer.css │ │ │ └── ExploreContainer.tsx │ │ ├── index.tsx │ │ ├── pages │ │ │ ├── Home.css │ │ │ └── Home.tsx │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ ├── service-worker.ts │ │ ├── serviceWorkerRegistration.ts │ │ ├── setupTests.ts │ │ └── theme │ │ │ └── variables.css │ └── tsconfig.json └── project-api-example │ ├── package.json │ ├── src │ └── index.ts │ └── tsconfig.json ├── logo.png ├── package-lock.json ├── package.json ├── packages ├── common │ ├── test │ │ └── fixtures │ │ │ ├── android-only │ │ │ ├── android │ │ │ │ ├── .gitignore │ │ │ │ ├── app │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── capacitor.build.gradle │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ └── src │ │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── getcapacitor │ │ │ │ │ │ │ └── myapp │ │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── capacitor.config.json │ │ │ │ │ │ │ └── capacitor.plugins.json │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ │ └── ionic │ │ │ │ │ │ │ │ └── starter │ │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ ├── raw │ │ │ │ │ │ │ ├── auth_config.json │ │ │ │ │ │ │ └── test.json │ │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── config.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.ts │ │ │ ├── android.basic.yml │ │ │ ├── basic.yml │ │ │ ├── cap-v5 │ │ │ ├── android │ │ │ │ ├── .gitignore │ │ │ │ ├── app │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ └── src │ │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── getcapacitor │ │ │ │ │ │ │ └── myapp │ │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ │ └── ionic │ │ │ │ │ │ │ │ └── starter │ │ │ │ │ │ │ │ └── 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 │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ ├── settings.gradle │ │ │ │ └── variables.gradle │ │ │ └── capacitor.config.ts │ │ │ ├── custom-platform-directories │ │ │ ├── capacitor.config.ts │ │ │ ├── my-android-app │ │ │ │ ├── .gitignore │ │ │ │ ├── app │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── capacitor.build.gradle │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ └── src │ │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── getcapacitor │ │ │ │ │ │ │ └── myapp │ │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── capacitor.config.json │ │ │ │ │ │ │ └── capacitor.plugins.json │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ │ └── ionic │ │ │ │ │ │ │ │ └── starter │ │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ ├── raw │ │ │ │ │ │ │ ├── auth_config.json │ │ │ │ │ │ │ └── test.json │ │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ │ └── file_paths.xml │ │ │ │ │ │ └── test │ │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── getcapacitor │ │ │ │ │ │ └── myapp │ │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ ├── build.gradle │ │ │ │ ├── capacitor.settings.gradle │ │ │ │ ├── google-services.json │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ ├── settings.gradle │ │ │ │ └── variables.gradle │ │ │ └── my-ios-app │ │ │ │ ├── .gitignore │ │ │ │ └── App │ │ │ │ ├── App.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── App.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── App │ │ │ │ ├── App.entitlements │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── AppIcon-20x20@1x.png │ │ │ │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ │ │ │ ├── AppIcon-20x20@2x.png │ │ │ │ │ │ ├── AppIcon-20x20@3x.png │ │ │ │ │ │ ├── AppIcon-29x29@1x.png │ │ │ │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ │ │ │ ├── AppIcon-29x29@2x.png │ │ │ │ │ │ ├── AppIcon-29x29@3x.png │ │ │ │ │ │ ├── AppIcon-40x40@1x.png │ │ │ │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ │ │ │ ├── AppIcon-40x40@2x.png │ │ │ │ │ │ ├── AppIcon-40x40@3x.png │ │ │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ │ │ ├── AppIcon-60x60@2x.png │ │ │ │ │ │ ├── AppIcon-60x60@3x.png │ │ │ │ │ │ ├── AppIcon-76x76@1x.png │ │ │ │ │ │ ├── AppIcon-76x76@2x.png │ │ │ │ │ │ ├── AppIcon-83.5x83.5@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 │ │ │ │ ├── capacitor.config.json │ │ │ │ └── config.xml │ │ │ │ ├── My App Clip │ │ │ │ ├── AppClip.plist │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── My_App_Clip.entitlements │ │ │ │ ├── SceneDelegate.swift │ │ │ │ └── ViewController.swift │ │ │ │ ├── My App ClipTests │ │ │ │ └── My_App_ClipTests.swift │ │ │ │ ├── My App ClipUITests │ │ │ │ ├── My_App_ClipUITests.swift │ │ │ │ └── My_App_ClipUITestsLaunchTests.swift │ │ │ │ ├── My Share Extension │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainInterface.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── ShareViewController.swift │ │ │ │ └── Podfile │ │ │ ├── frameworks │ │ │ ├── CordovaApp │ │ │ │ ├── .gitignore │ │ │ │ ├── config.xml │ │ │ │ ├── package.json │ │ │ │ └── www │ │ │ │ │ ├── css │ │ │ │ │ └── index.css │ │ │ │ │ ├── img │ │ │ │ │ └── logo.png │ │ │ │ │ ├── index.html │ │ │ │ │ └── js │ │ │ │ │ └── index.js │ │ │ ├── DotNetMauiApp │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── AppShell.xaml │ │ │ │ ├── AppShell.xaml.cs │ │ │ │ ├── DotNetMauiApp.csproj │ │ │ │ ├── DotNetMauiApp.sln │ │ │ │ ├── MainPage.xaml │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ ├── MauiProgram.cs │ │ │ │ ├── Platforms │ │ │ │ │ ├── Android │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ │ ├── MainApplication.cs │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── colors.xml │ │ │ │ │ ├── MacCatalyst │ │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── Program.cs │ │ │ │ │ ├── Tizen │ │ │ │ │ │ ├── Main.cs │ │ │ │ │ │ └── tizen-manifest.xml │ │ │ │ │ ├── Windows │ │ │ │ │ │ ├── App.xaml │ │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ │ ├── Package.appxmanifest │ │ │ │ │ │ └── app.manifest │ │ │ │ │ └── iOS │ │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ └── Resources │ │ │ │ │ ├── Colors.xaml │ │ │ │ │ ├── Fonts │ │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ │ └── OpenSans-Semibold.ttf │ │ │ │ │ ├── Images │ │ │ │ │ └── dotnet_bot.svg │ │ │ │ │ ├── Raw │ │ │ │ │ └── AboutAssets.txt │ │ │ │ │ ├── Styles.xaml │ │ │ │ │ ├── appicon.svg │ │ │ │ │ └── appiconfg.svg │ │ │ ├── NativeAndroidApp │ │ │ │ ├── .gitignore │ │ │ │ ├── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── compiler.xml │ │ │ │ │ ├── gradle.xml │ │ │ │ │ ├── jarRepositories.xml │ │ │ │ │ ├── misc.xml │ │ │ │ │ ├── runConfigurations.xml │ │ │ │ │ └── vcs.xml │ │ │ │ ├── app │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ └── src │ │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── nativeandroidapp │ │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ │ └── nativeandroidapp │ │ │ │ │ │ │ │ ├── FirstFragment.java │ │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ │ └── SecondFragment.java │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ │ │ ├── content_main.xml │ │ │ │ │ │ │ ├── fragment_first.xml │ │ │ │ │ │ │ └── fragment_second.xml │ │ │ │ │ │ │ ├── menu │ │ │ │ │ │ │ └── menu_main.xml │ │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── navigation │ │ │ │ │ │ │ └── nav_graph.xml │ │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── test │ │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── nativeandroidapp │ │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ │ ├── NativeIosApp │ │ │ │ ├── NativeIosApp.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ ├── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ │ └── max.xcuserdatad │ │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ └── max.xcuserdatad │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ └── NativeIosApp │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── NativeIosAppApp.swift │ │ │ │ │ └── Preview Content │ │ │ │ │ └── Preview Assets.xcassets │ │ │ │ │ └── Contents.json │ │ │ ├── NativeScriptApp │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .vscode │ │ │ │ │ └── extensions.json │ │ │ │ ├── App_Resources │ │ │ │ │ ├── Android │ │ │ │ │ │ ├── app.gradle │ │ │ │ │ │ ├── before-plugins.gradle │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ │ └── ic_launcher.xml │ │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ ├── values-v29 │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── iOS │ │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ │ │ ├── icon-20.png │ │ │ │ │ │ │ ├── icon-20@2x.png │ │ │ │ │ │ │ ├── icon-20@3x.png │ │ │ │ │ │ │ ├── icon-29.png │ │ │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ │ │ ├── icon-40.png │ │ │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ │ │ ├── icon-76.png │ │ │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ │ │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ │ │ │ │ └── LaunchScreen-Center@3x.png │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── build.xcconfig │ │ │ │ ├── app │ │ │ │ │ ├── app-root.xml │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.js │ │ │ │ │ ├── main-page.js │ │ │ │ │ ├── main-page.xml │ │ │ │ │ └── main-view-model.js │ │ │ │ ├── jsconfig.json │ │ │ │ ├── nativescript.config.ts │ │ │ │ ├── package.json │ │ │ │ └── webpack.config.js │ │ │ ├── ReactNativeExpo │ │ │ │ ├── .expo-shared │ │ │ │ │ └── assets.json │ │ │ │ ├── .gitignore │ │ │ │ ├── App.js │ │ │ │ ├── app.json │ │ │ │ ├── assets │ │ │ │ │ ├── adaptive-icon.png │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── splash.png │ │ │ │ ├── babel.config.js │ │ │ │ ├── package.json │ │ │ │ └── yarn.lock │ │ │ ├── ReactNativeProject │ │ │ │ ├── .buckconfig │ │ │ │ ├── .bundle │ │ │ │ │ └── config │ │ │ │ ├── .eslintrc.js │ │ │ │ ├── .flowconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .prettierrc.js │ │ │ │ ├── .ruby-version │ │ │ │ ├── .watchmanconfig │ │ │ │ ├── App.js │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── __tests__ │ │ │ │ │ └── App-test.js │ │ │ │ ├── android │ │ │ │ │ ├── app │ │ │ │ │ │ ├── _BUCK │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ ├── build_defs.bzl │ │ │ │ │ │ ├── debug.keystore │ │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── reactnativeproject │ │ │ │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── reactnativeproject │ │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ │ ├── MainApplication.java │ │ │ │ │ │ │ │ └── newarchitecture │ │ │ │ │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ ├── MainApplicationModuleProvider.cpp │ │ │ │ │ │ │ ├── MainApplicationModuleProvider.h │ │ │ │ │ │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ │ │ │ │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ │ │ │ │ │ ├── MainComponentsRegistry.cpp │ │ │ │ │ │ │ ├── MainComponentsRegistry.h │ │ │ │ │ │ │ └── OnLoad.cpp │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── gradle.properties │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ ├── gradlew.bat │ │ │ │ │ └── settings.gradle │ │ │ │ ├── app.json │ │ │ │ ├── babel.config.js │ │ │ │ ├── index.js │ │ │ │ ├── ios │ │ │ │ │ ├── Podfile │ │ │ │ │ ├── Podfile.lock │ │ │ │ │ ├── ReactNativeProject.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ │ └── ReactNativeProject.xcscheme │ │ │ │ │ ├── ReactNativeProject.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ ├── ReactNativeProject │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.mm │ │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── main.m │ │ │ │ │ └── ReactNativeProjectTests │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── ReactNativeProjectTests.m │ │ │ │ ├── metro.config.js │ │ │ │ ├── package.json │ │ │ │ └── yarn.lock │ │ │ └── flutter_configure_test │ │ │ │ ├── .gitignore │ │ │ │ ├── .metadata │ │ │ │ ├── README.md │ │ │ │ ├── analysis_options.yaml │ │ │ │ ├── android │ │ │ │ ├── .gitignore │ │ │ │ ├── app │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ ├── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── kotlin │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ │ └── flutter_configure_test │ │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── profile │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ └── settings.gradle │ │ │ │ ├── ios │ │ │ │ ├── .gitignore │ │ │ │ ├── Flutter │ │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ └── Release.xcconfig │ │ │ │ ├── Runner.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── Runner.xcscheme │ │ │ │ ├── Runner.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── Runner │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Runner-Bridging-Header.h │ │ │ │ ├── lib │ │ │ │ └── main.dart │ │ │ │ ├── linux │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── flutter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── generated_plugin_registrant.cc │ │ │ │ │ ├── generated_plugin_registrant.h │ │ │ │ │ └── generated_plugins.cmake │ │ │ │ ├── main.cc │ │ │ │ ├── my_application.cc │ │ │ │ └── my_application.h │ │ │ │ ├── macos │ │ │ │ ├── .gitignore │ │ │ │ ├── Flutter │ │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ │ ├── Runner.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── Runner.xcscheme │ │ │ │ ├── Runner.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── Runner │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ │ └── app_icon_64.png │ │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ ├── Configs │ │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ ├── Release.xcconfig │ │ │ │ │ └── Warnings.xcconfig │ │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ │ └── Release.entitlements │ │ │ │ ├── pubspec.lock │ │ │ │ ├── pubspec.yaml │ │ │ │ ├── test │ │ │ │ └── widget_test.dart │ │ │ │ ├── web │ │ │ │ ├── favicon.png │ │ │ │ ├── icons │ │ │ │ │ ├── Icon-192.png │ │ │ │ │ ├── Icon-512.png │ │ │ │ │ ├── Icon-maskable-192.png │ │ │ │ │ └── Icon-maskable-512.png │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ │ └── windows │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── flutter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── generated_plugin_registrant.cc │ │ │ │ ├── generated_plugin_registrant.h │ │ │ │ └── generated_plugins.cmake │ │ │ │ └── runner │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Runner.rc │ │ │ │ ├── flutter_window.cpp │ │ │ │ ├── flutter_window.h │ │ │ │ ├── main.cpp │ │ │ │ ├── resource.h │ │ │ │ ├── resources │ │ │ │ └── app_icon.ico │ │ │ │ ├── runner.exe.manifest │ │ │ │ ├── utils.cpp │ │ │ │ ├── utils.h │ │ │ │ ├── win32_window.cpp │ │ │ │ └── win32_window.h │ │ │ ├── icon.png │ │ │ ├── inject.gradle │ │ │ ├── ios-and-android │ │ │ ├── android │ │ │ │ ├── .gitignore │ │ │ │ ├── app │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── capacitor.build.gradle │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ └── src │ │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── getcapacitor │ │ │ │ │ │ │ └── myapp │ │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── capacitor.config.json │ │ │ │ │ │ │ └── capacitor.plugins.json │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ │ └── ionic │ │ │ │ │ │ │ │ └── starter │ │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ ├── raw │ │ │ │ │ │ │ ├── auth_config.json │ │ │ │ │ │ │ └── test.json │ │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ │ └── file_paths.xml │ │ │ │ │ │ └── test │ │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── getcapacitor │ │ │ │ │ │ └── myapp │ │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ ├── build.gradle │ │ │ │ ├── capacitor.settings.gradle │ │ │ │ ├── google-services.json │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ ├── settings.gradle │ │ │ │ └── variables.gradle │ │ │ ├── capacitor.config.ts │ │ │ ├── ios │ │ │ │ ├── .gitignore │ │ │ │ └── App │ │ │ │ │ ├── App.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ ├── App.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ ├── App │ │ │ │ │ ├── App.entitlements │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ ├── AppIcon-20x20@1x.png │ │ │ │ │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ │ │ │ │ ├── AppIcon-20x20@2x.png │ │ │ │ │ │ │ ├── AppIcon-20x20@3x.png │ │ │ │ │ │ │ ├── AppIcon-29x29@1x.png │ │ │ │ │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ │ │ │ │ ├── AppIcon-29x29@2x.png │ │ │ │ │ │ │ ├── AppIcon-29x29@3x.png │ │ │ │ │ │ │ ├── AppIcon-40x40@1x.png │ │ │ │ │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ │ │ │ │ ├── AppIcon-40x40@2x.png │ │ │ │ │ │ │ ├── AppIcon-40x40@3x.png │ │ │ │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ │ │ │ ├── AppIcon-60x60@2x.png │ │ │ │ │ │ │ ├── AppIcon-60x60@3x.png │ │ │ │ │ │ │ ├── AppIcon-76x76@1x.png │ │ │ │ │ │ │ ├── AppIcon-76x76@2x.png │ │ │ │ │ │ │ ├── AppIcon-83.5x83.5@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 │ │ │ │ │ ├── Localizable.strings │ │ │ │ │ ├── capacitor.config.json │ │ │ │ │ └── config.xml │ │ │ │ │ ├── My App Clip │ │ │ │ │ ├── AppClip.plist │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── My_App_Clip.entitlements │ │ │ │ │ ├── SceneDelegate.swift │ │ │ │ │ └── ViewController.swift │ │ │ │ │ ├── My App ClipTests │ │ │ │ │ └── My_App_ClipTests.swift │ │ │ │ │ ├── My App ClipUITests │ │ │ │ │ ├── My_App_ClipUITests.swift │ │ │ │ │ └── My_App_ClipUITestsLaunchTests.swift │ │ │ │ │ ├── My Share Extension │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── MainInterface.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── ShareViewController.swift │ │ │ │ │ ├── Podfile │ │ │ │ │ ├── json-file.json │ │ │ │ │ ├── plist-file.plist │ │ │ │ │ └── xml-file.xml │ │ │ ├── project-json.json │ │ │ ├── project-xml-strings.xml │ │ │ └── project-xml.xml │ │ │ ├── ios-cfbundleversion-pbx-83 │ │ │ ├── capacitor.config.ts │ │ │ └── ios │ │ │ │ ├── .gitignore │ │ │ │ └── App │ │ │ │ ├── App.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── App.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── App │ │ │ │ ├── App.entitlements │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon-20x20@1x.png │ │ │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ │ │ ├── AppIcon-20x20@2x.png │ │ │ │ │ ├── AppIcon-20x20@3x.png │ │ │ │ │ ├── AppIcon-29x29@1x.png │ │ │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ │ │ ├── AppIcon-29x29@2x.png │ │ │ │ │ ├── AppIcon-29x29@3x.png │ │ │ │ │ ├── AppIcon-40x40@1x.png │ │ │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ │ │ ├── AppIcon-40x40@2x.png │ │ │ │ │ ├── AppIcon-40x40@3x.png │ │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ │ ├── AppIcon-60x60@2x.png │ │ │ │ │ ├── AppIcon-60x60@3x.png │ │ │ │ │ ├── AppIcon-76x76@1x.png │ │ │ │ │ ├── AppIcon-76x76@2x.png │ │ │ │ │ ├── AppIcon-83.5x83.5@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 │ │ │ │ ├── capacitor.config.json │ │ │ │ └── config.xml │ │ │ ├── ios-no-current-project-version │ │ │ ├── capacitor.config.ts │ │ │ └── ios │ │ │ │ ├── .gitignore │ │ │ │ └── App │ │ │ │ ├── App.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── App.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── App │ │ │ │ ├── App.entitlements │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon-20x20@1x.png │ │ │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ │ │ ├── AppIcon-20x20@2x.png │ │ │ │ │ ├── AppIcon-20x20@3x.png │ │ │ │ │ ├── AppIcon-29x29@1x.png │ │ │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ │ │ ├── AppIcon-29x29@2x.png │ │ │ │ │ ├── AppIcon-29x29@3x.png │ │ │ │ │ ├── AppIcon-40x40@1x.png │ │ │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ │ │ ├── AppIcon-40x40@2x.png │ │ │ │ │ ├── AppIcon-40x40@3x.png │ │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ │ ├── AppIcon-60x60@2x.png │ │ │ │ │ ├── AppIcon-60x60@3x.png │ │ │ │ │ ├── AppIcon-76x76@1x.png │ │ │ │ │ ├── AppIcon-76x76@2x.png │ │ │ │ │ ├── AppIcon-83.5x83.5@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 │ │ │ │ ├── capacitor.config.json │ │ │ │ └── config.xml │ │ │ ├── ios-no-info-plist │ │ │ ├── capacitor.config.ts │ │ │ └── ios │ │ │ │ ├── .gitignore │ │ │ │ └── App │ │ │ │ ├── App.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── App.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── App │ │ │ │ ├── App.entitlements │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon-20x20@1x.png │ │ │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ │ │ ├── AppIcon-20x20@2x.png │ │ │ │ │ ├── AppIcon-20x20@3x.png │ │ │ │ │ ├── AppIcon-29x29@1x.png │ │ │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ │ │ ├── AppIcon-29x29@2x.png │ │ │ │ │ ├── AppIcon-29x29@3x.png │ │ │ │ │ ├── AppIcon-40x40@1x.png │ │ │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ │ │ ├── AppIcon-40x40@2x.png │ │ │ │ │ ├── AppIcon-40x40@3x.png │ │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ │ ├── AppIcon-60x60@2x.png │ │ │ │ │ ├── AppIcon-60x60@3x.png │ │ │ │ │ ├── AppIcon-76x76@1x.png │ │ │ │ │ ├── AppIcon-76x76@2x.png │ │ │ │ │ ├── AppIcon-83.5x83.5@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 │ │ │ │ ├── capacitor.config.json │ │ │ │ └── config.xml │ │ │ ├── ios-only │ │ │ ├── capacitor.config.ts │ │ │ └── ios │ │ │ │ ├── .gitignore │ │ │ │ └── App │ │ │ │ ├── App.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── App.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── App │ │ │ │ ├── App.entitlements │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── AppIcon-20x20@1x.png │ │ │ │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ │ │ │ ├── AppIcon-20x20@2x.png │ │ │ │ │ │ ├── AppIcon-20x20@3x.png │ │ │ │ │ │ ├── AppIcon-29x29@1x.png │ │ │ │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ │ │ │ ├── AppIcon-29x29@2x.png │ │ │ │ │ │ ├── AppIcon-29x29@3x.png │ │ │ │ │ │ ├── AppIcon-40x40@1x.png │ │ │ │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ │ │ │ ├── AppIcon-40x40@2x.png │ │ │ │ │ │ ├── AppIcon-40x40@3x.png │ │ │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ │ │ ├── AppIcon-60x60@2x.png │ │ │ │ │ │ ├── AppIcon-60x60@3x.png │ │ │ │ │ │ ├── AppIcon-76x76@1x.png │ │ │ │ │ │ ├── AppIcon-76x76@2x.png │ │ │ │ │ │ ├── AppIcon-83.5x83.5@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 │ │ │ │ ├── capacitor.config.json │ │ │ │ └── config.xml │ │ │ │ ├── My App Clip │ │ │ │ ├── AppClip.plist │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── My_App_Clip.entitlements │ │ │ │ ├── SceneDelegate.swift │ │ │ │ └── ViewController.swift │ │ │ │ ├── My App ClipTests │ │ │ │ └── My_App_ClipTests.swift │ │ │ │ ├── My App ClipUITests │ │ │ │ ├── My_App_ClipUITests.swift │ │ │ │ └── My_App_ClipUITestsLaunchTests.swift │ │ │ │ ├── My Share Extension │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainInterface.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── ShareViewController.swift │ │ │ │ └── Podfile │ │ │ ├── ios.notargets.nobuilds.yml │ │ │ ├── ios.targets.builds.yml │ │ │ ├── ios.targets.nobuilds.yml │ │ │ ├── issues │ │ │ └── 80 │ │ │ │ └── AndroidManifest.xml │ │ │ ├── json-file.json │ │ │ ├── project.basic.yml │ │ │ ├── replace.gradle │ │ │ ├── splash.png │ │ │ ├── strings.json │ │ │ ├── strings.strings │ │ │ ├── test.xcconfig │ │ │ ├── test2.xcconfig │ │ │ └── web-only │ │ │ └── capacitor.config.ts │ └── trapeze.config.ts ├── configure │ ├── CHANGELOG.md │ ├── LICENSE │ ├── bin │ │ └── trapeze │ ├── package.json │ ├── src │ │ ├── colors.ts │ │ ├── ctx.ts │ │ ├── definitions.ts │ │ ├── index.ts │ │ ├── op.ts │ │ ├── operations │ │ │ ├── android │ │ │ │ ├── appName.ts │ │ │ │ ├── copy.ts │ │ │ │ ├── gradle.ts │ │ │ │ ├── json.ts │ │ │ │ ├── manifest.ts │ │ │ │ ├── packageName.ts │ │ │ │ ├── properties.ts │ │ │ │ ├── res.ts │ │ │ │ ├── version.ts │ │ │ │ └── xml.ts │ │ │ ├── index.ts │ │ │ ├── ios │ │ │ │ ├── buildSettings.ts │ │ │ │ ├── buildVersion.ts │ │ │ │ ├── copy.ts │ │ │ │ ├── entitlements.ts │ │ │ │ ├── frameworks.ts │ │ │ │ ├── json.ts │ │ │ │ ├── plist.ts │ │ │ │ ├── project.ts │ │ │ │ ├── strings.ts │ │ │ │ ├── xcconfig.ts │ │ │ │ └── xml.ts │ │ │ └── project │ │ │ │ ├── copy.ts │ │ │ │ ├── json.ts │ │ │ │ └── xml.ts │ │ ├── project.ts │ │ ├── tasks │ │ │ └── run.ts │ │ ├── util │ │ │ ├── cli.ts │ │ │ ├── log.ts │ │ │ ├── node.ts │ │ │ ├── plural.ts │ │ │ └── term.ts │ │ └── yaml-config.ts │ ├── test │ │ ├── config.test.ts │ │ ├── ctx.test.ts │ │ ├── op.test.ts │ │ ├── ops │ │ │ ├── android.appName.test.ts │ │ │ ├── android.copy.test.ts │ │ │ ├── android.gradle.test.ts │ │ │ ├── android.json.test.ts │ │ │ ├── android.manifest.test.ts │ │ │ ├── android.properties.test.ts │ │ │ ├── android.versionCode.test.ts │ │ │ ├── android.xml.test.ts │ │ │ ├── ios.buildVersion.test.ts │ │ │ ├── ios.copy.test.ts │ │ │ ├── ios.entitlements.test.ts │ │ │ ├── ios.json.test.ts │ │ │ ├── ios.plist.test.ts │ │ │ ├── ios.strings.test.ts │ │ │ ├── ios.xcconfig.test.ts │ │ │ ├── ios.xml.test.ts │ │ │ ├── project.copy.test.ts │ │ │ ├── project.json.test.ts │ │ │ └── project.xml.test.ts │ │ ├── tasks │ │ │ └── run.test.ts │ │ └── utils.ts │ └── tsconfig.json ├── gradle-parse │ ├── CHANGELOG.md │ ├── LICENSE │ ├── META-INF │ │ └── MANIFEST.MF │ ├── basic.gradle │ ├── build.sh │ ├── capacitor-gradle-parse.jar │ ├── com │ │ └── capacitorjs │ │ │ └── gradle │ │ │ ├── Parse.class │ │ │ ├── Parse.java │ │ │ └── Visitor.class │ ├── index.js │ ├── lib │ │ ├── groovy-3.0.9.jar │ │ └── json-20210307.jar │ ├── package.json │ └── run.sh ├── project │ ├── CHANGELOG.md │ ├── LICENSE │ ├── package.json │ ├── src │ │ ├── android │ │ │ ├── gradle-file.ts │ │ │ └── project.ts │ │ ├── config.ts │ │ ├── declarations.d.ts │ │ ├── definitions.ts │ │ ├── frameworks │ │ │ ├── capacitor.ts │ │ │ ├── cordova.ts │ │ │ ├── dotnet-maui.ts │ │ │ ├── flutter.ts │ │ │ ├── index.ts │ │ │ ├── native-android.ts │ │ │ ├── native-ios.ts │ │ │ ├── nativescript.ts │ │ │ └── react-native.ts │ │ ├── index.ts │ │ ├── ios │ │ │ └── project.ts │ │ ├── json.ts │ │ ├── logger.ts │ │ ├── platform-project.ts │ │ ├── plist.ts │ │ ├── project.ts │ │ ├── properties.ts │ │ ├── read-src.ts │ │ ├── strings.ts │ │ ├── util │ │ │ ├── detect-indent.ts │ │ │ ├── fs.ts │ │ │ ├── gradle-versions.ts │ │ │ ├── pbx.ts │ │ │ ├── plist.ts │ │ │ ├── properties.ts │ │ │ ├── strings.ts │ │ │ ├── subprocess.ts │ │ │ ├── text.ts │ │ │ └── xml.ts │ │ ├── vfs.ts │ │ ├── xcconfig.ts │ │ └── xml.ts │ ├── test │ │ ├── frameworks │ │ │ ├── capacitor.test.ts │ │ │ ├── cordova.test.ts │ │ │ ├── dotnet-maui.test.ts │ │ │ ├── flutter.test.ts │ │ │ ├── native-android.test.ts │ │ │ ├── native-ios.test.ts │ │ │ ├── nativescript.test.ts │ │ │ └── react-native.test.ts │ │ ├── gradle-file.android.test.ts │ │ ├── json-file.test.ts │ │ ├── plist-file.test.ts │ │ ├── project.android.test.ts │ │ ├── project.ios.test.ts │ │ ├── project.test.ts │ │ ├── properties.android.test.ts │ │ ├── strings-file.test.ts │ │ ├── util │ │ │ └── gradle-versions.test.ts │ │ ├── vfs.test.ts │ │ ├── xcconfig-file.test.ts │ │ └── xml-file.test.ts │ └── tsconfig.json ├── utils │ ├── index.mjs │ ├── package.json │ └── src │ │ ├── new-op.mjs │ │ └── utils.mjs └── website │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── babel.config.js │ ├── docs │ ├── Frameworks │ │ ├── _category_.json │ │ ├── capacitor.md │ │ ├── flutter.md │ │ ├── native-android.md │ │ ├── native-ios.md │ │ └── react-native.md │ ├── Operations │ │ ├── _category_.json │ │ ├── android.md │ │ ├── getting-started.md │ │ ├── ios.md │ │ └── project.md │ ├── ci-cd.md │ ├── overview.md │ ├── project-api.md │ ├── recipes.md │ └── resources.md │ ├── docusaurus.config.js │ ├── package.json │ ├── sidebars.js │ ├── src │ ├── components │ │ └── PlatformBar │ │ │ ├── index.js │ │ │ └── index.module.scss │ ├── css │ │ └── custom.scss │ ├── pages │ │ ├── _assets │ │ │ ├── snippets-automate.js │ │ │ └── snippets.js │ │ ├── index.js │ │ └── index.module.scss │ └── theme │ │ ├── Footer │ │ ├── index.js │ │ └── index.module.scss │ │ ├── Icon │ │ └── ExternalLink │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ └── Layout │ │ └── index.js │ ├── static │ ├── .nojekyll │ ├── fonts │ │ ├── inter │ │ │ └── Inter-variable-ASCII-subset.woff2 │ │ └── roboto-mono │ │ │ └── roboto-mono-var.woff2 │ └── img │ │ ├── index │ │ ├── community-0.png │ │ ├── community-1.png │ │ ├── community-2.png │ │ ├── features-0.png │ │ ├── features-1.png │ │ ├── features-2.png │ │ └── top-0.png │ │ ├── logo-footer.svg │ │ ├── logo.png │ │ └── logo.svg │ └── vercel.json └── turbo.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | .turbo 5 | *.tgz 6 | .env 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | arrowParens: "avoid" 2 | bracketSpacing: true 3 | singleQuote: true 4 | trailingComma: "all" 5 | jsxBracketSameLine: true 6 | -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | !/build/.npmkeep 3 | -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/java/io/ionic/starter/MainActivity.java: -------------------------------------------------------------------------------- 1 | package io.ionic.starter; 2 | 3 | import com.getcapacitor.BridgeActivity; 4 | 5 | public class MainActivity extends BridgeActivity {} 6 | -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/raw/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "value": true 3 | } 4 | -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /examples/capacitor-app/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /examples/capacitor-app/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/capacitor-app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /examples/capacitor-app/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | include ':capacitor-cordova-android-plugins' 3 | project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/') 4 | 5 | apply from: 'capacitor.settings.gradle' -------------------------------------------------------------------------------- /examples/capacitor-app/capacitor.config.ts: -------------------------------------------------------------------------------- 1 | import { CapacitorConfig } from '@capacitor/cli'; 2 | 3 | const config: CapacitorConfig = { 4 | appId: 'io.ionic.starter', 5 | appName: 'capacitor-app', 6 | webDir: 'build', 7 | bundledWebRuntime: false 8 | }; 9 | 10 | export default config; 11 | -------------------------------------------------------------------------------- /examples/capacitor-app/ionic.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "capacitor-app", 3 | "integrations": { 4 | "capacitor": {} 5 | }, 6 | "type": "react" 7 | } 8 | -------------------------------------------------------------------------------- /examples/capacitor-app/ios/.gitignore: -------------------------------------------------------------------------------- 1 | App/build 2 | App/Pods 3 | App/Podfile.lock 4 | App/App/public 5 | DerivedData 6 | xcuserdata 7 | 8 | # Cordova plugins for Capacitor 9 | capacitor-cordova-ios-plugins 10 | -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/App.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/capacitor-app/ios/App/App/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/capacitor-app/public/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/public/assets/icon/favicon.png -------------------------------------------------------------------------------- /examples/capacitor-app/public/assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/public/assets/icon/icon.png -------------------------------------------------------------------------------- /examples/capacitor-app/src/App.test.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from '@testing-library/react'; 3 | import App from './App'; 4 | 5 | test('renders without crashing', () => { 6 | const { baseElement } = render(); 7 | expect(baseElement).toBeDefined(); 8 | }); 9 | -------------------------------------------------------------------------------- /examples/capacitor-app/src/pages/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/examples/capacitor-app/src/pages/Home.css -------------------------------------------------------------------------------- /examples/capacitor-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | !/build/.npmkeep 3 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/assets/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "capacitor-configure-test", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/java/io/ionic/starter/MainActivity.java: -------------------------------------------------------------------------------- 1 | package io.ionic.starter; 2 | 3 | import com.getcapacitor.BridgeActivity; 4 | 5 | public class MainActivity extends BridgeActivity {} 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/raw/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "thing": "cool" 3 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/android-only/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | include ':capacitor-cordova-android-plugins' 3 | project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/') 4 | 5 | apply from: 'capacitor.settings.gradle' -------------------------------------------------------------------------------- /packages/common/test/fixtures/android-only/capacitor.config.ts: -------------------------------------------------------------------------------- 1 | const config = { 2 | ios: { 3 | path: 'ios/App', 4 | }, 5 | android: { 6 | path: 'android', 7 | }, 8 | }; 9 | 10 | export default config; 11 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/android.basic.yml: -------------------------------------------------------------------------------- 1 | platforms: 2 | android: 3 | packageName: com.ionicframework.awesomePackage 4 | versionName: 1.2.3 5 | incrementVersionCode: true 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | !/build/.npmkeep 3 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/java/io/ionic/starter/MainActivity.java: -------------------------------------------------------------------------------- 1 | package io.ionic.starter; 2 | 3 | import com.getcapacitor.BridgeActivity; 4 | 5 | public class MainActivity extends BridgeActivity {} 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/cap-v5/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip 4 | networkTimeout=10000 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | include ':capacitor-cordova-android-plugins' 3 | project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/') 4 | 5 | apply from: 'capacitor.settings.gradle' -------------------------------------------------------------------------------- /packages/common/test/fixtures/cap-v5/capacitor.config.ts: -------------------------------------------------------------------------------- 1 | import { CapacitorConfig } from '@capacitor/cli'; 2 | 3 | const config: CapacitorConfig = { 4 | appId: 'io.ionic.starter', 5 | appName: 'cap-v5-test', 6 | webDir: 'build', 7 | server: { 8 | androidScheme: 'https' 9 | } 10 | }; 11 | 12 | export default config; 13 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/capacitor.config.ts: -------------------------------------------------------------------------------- 1 | const config = { 2 | ios: { 3 | path: 'ios/App', 4 | }, 5 | android: { 6 | path: 'android', 7 | }, 8 | }; 9 | 10 | export default config; 11 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | !/build/.npmkeep 3 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/assets/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "capacitor-configure-test", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/java/io/ionic/starter/MainActivity.java: -------------------------------------------------------------------------------- 1 | package io.ionic.starter; 2 | 3 | import com.getcapacitor.BridgeActivity; 4 | 5 | public class MainActivity extends BridgeActivity {} 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/raw/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "thing": "cool" 3 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/google-services.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_info": { 3 | "project_id": "1234", 4 | "project_number": "1234", 5 | "name": "1234", 6 | "firebase_url": "" 7 | }, 8 | "client": [ 9 | ] 10 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-android-app/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-android-app/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | include ':capacitor-cordova-android-plugins' 3 | project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/') 4 | 5 | apply from: 'capacitor.settings.gradle' -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-ios-app/.gitignore: -------------------------------------------------------------------------------- 1 | App/build 2 | App/Pods 3 | App/Podfile.lock 4 | App/App/public 5 | DerivedData 6 | xcuserdata 7 | 8 | # Cordova plugins for Capacitor 9 | capacitor-cordova-ios-plugins 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-ios-app/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-ios-app/App/App/App.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-ios-app/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-ios-app/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/custom-platform-directories/my-ios-app/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-ios-app/App/App/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "capacitor-configure-test", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-ios-app/App/App/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-ios-app/App/My App Clip/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/custom-platform-directories/my-ios-app/App/My App Clip/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/CordovaApp/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | # Generated by package manager 4 | node_modules/ 5 | 6 | # Generated by Cordova 7 | /plugins/ 8 | /platforms/ 9 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/CordovaApp/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/CordovaApp/www/img/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/DotNetMauiApp/App.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace DotNetMauiApp; 2 | 3 | public partial class App : Application 4 | { 5 | public App() 6 | { 7 | InitializeComponent(); 8 | 9 | MainPage = new AppShell(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/DotNetMauiApp/AppShell.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace DotNetMauiApp; 2 | 3 | public partial class AppShell : Shell 4 | { 5 | public AppShell() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/DotNetMauiApp/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #512BD4 4 | #2B0B98 5 | #2B0B98 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/DotNetMauiApp/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | 3 | namespace DotNetMauiApp; 4 | 5 | [Register("AppDelegate")] 6 | public class AppDelegate : MauiUIApplicationDelegate 7 | { 8 | protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); 9 | } 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/DotNetMauiApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Windows Machine": { 4 | "commandName": "MsixPackage", 5 | "nativeDebugging": false 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/DotNetMauiApp/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/DotNetMauiApp/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/DotNetMauiApp/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/DotNetMauiApp/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/DotNetMauiApp/Resources/appicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeAndroidApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeAndroidApp/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "NativeAndroidApp" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeIosApp/NativeIosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeIosApp/NativeIosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeIosApp/NativeIosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeIosApp/NativeIosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["nativescript.nativescript"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/Android/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/app/app-root.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": "./", 4 | "paths": { 5 | "~/*": ["app/*"], 6 | "@/*": ["app/*"] 7 | } 8 | }, 9 | "include": ["app/**/*"] 10 | } 11 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/NativeScriptApp/webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require("@nativescript/webpack"); 2 | 3 | module.exports = (env) => { 4 | webpack.init(env); 5 | 6 | // Learn how to customize: 7 | // https://docs.nativescript.org/webpack 8 | 9 | return webpack.resolveConfig(); 10 | }; 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeExpo/.expo-shared/assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true, 3 | "40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true 4 | } 5 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeExpo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | dist/ 4 | npm-debug.* 5 | *.jks 6 | *.p8 7 | *.p12 8 | *.key 9 | *.mobileprovision 10 | *.orig.* 11 | web-build/ 12 | 13 | # macOS 14 | .DS_Store 15 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeExpo/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeExpo/assets/adaptive-icon.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeExpo/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeExpo/assets/favicon.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeExpo/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeExpo/assets/icon.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeExpo/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeExpo/assets/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeExpo/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function(api) { 2 | api.cache(true); 3 | return { 4 | presets: ['babel-preset-expo'], 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | bracketSameLine: true, 4 | bracketSpacing: false, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | }; 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 | ruby '2.7.4' 5 | 6 | gem 'cocoapods', '~> 1.11', '>= 1.11.2' 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/debug.keystore -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ReactNativeProject 3 | 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/ReactNativeProject/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ReactNativeProject", 3 | "displayName": "ReactNativeProject" 4 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/ios/ReactNativeProject/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : UIResponder 5 | 6 | @property (nonatomic, strong) UIWindow *window; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/ios/ReactNativeProject/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/ReactNativeProject/ios/ReactNativeProject/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/kotlin/com/example/flutter_configure_test/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.flutter_configure_test 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #include "generated_plugin_registrant.h" 8 | 9 | 10 | void fl_register_plugins(FlPluginRegistry* registry) { 11 | } 12 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/linux/main.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | int main(int argc, char** argv) { 4 | g_autoptr(MyApplication) app = my_application_new(); 5 | return g_application_run(G_APPLICATION(app), argc, argv); 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/dgph 7 | **/xcuserdata/ 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | import FlutterMacOS 6 | import Foundation 7 | 8 | 9 | func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { 10 | } 11 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/web/favicon.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/web/icons/Icon-192.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/web/icons/Icon-512.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #include "generated_plugin_registrant.h" 8 | 9 | 10 | void RegisterPlugins(flutter::PluginRegistry* registry) { 11 | } 12 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/frameworks/flutter_configure_test/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/frameworks/flutter_configure_test/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /packages/common/test/fixtures/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/icon.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/inject.gradle: -------------------------------------------------------------------------------- 1 | dependencies {} 2 | 3 | buildscript { 4 | thing { 5 | } 6 | dependencies { 7 | implementation 'fake thing' 8 | } 9 | } 10 | 11 | allprojects { 12 | nest1 { 13 | nest2 { 14 | dependencies {} 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | !/build/.npmkeep 3 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/assets/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "capacitor-configure-test", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/java/io/ionic/starter/MainActivity.java: -------------------------------------------------------------------------------- 1 | package io.ionic.starter; 2 | 3 | import com.getcapacitor.BridgeActivity; 4 | 5 | public class MainActivity extends BridgeActivity {} 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/raw/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "thing": "cool" 3 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/google-services.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_info": { 3 | "project_id": "1234", 4 | "project_number": "1234", 5 | "name": "1234", 6 | "firebase_url": "" 7 | }, 8 | "client": [ 9 | ] 10 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | include ':capacitor-cordova-android-plugins' 3 | project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/') 4 | 5 | apply from: 'capacitor.settings.gradle' -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/capacitor.config.ts: -------------------------------------------------------------------------------- 1 | const config = { 2 | ios: { 3 | path: 'ios/App', 4 | }, 5 | android: { 6 | path: 'android', 7 | }, 8 | }; 9 | 10 | export default config; 11 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/.gitignore: -------------------------------------------------------------------------------- 1 | App/build 2 | App/Pods 3 | App/Podfile.lock 4 | App/App/public 5 | DerivedData 6 | xcuserdata 7 | 8 | # Cordova plugins for Capacitor 9 | capacitor-cordova-ios-plugins 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/App.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-and-android/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* Insert Element menu item */ 2 | 3 | "Insert Element" = "Insert Element"; 4 | 5 | /* Error string used for unknown error types. */ 6 | 7 | "ErrorString_1" = "An unknown error occurred."; -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "capacitor-configure-test", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/App/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/My App Clip/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/My App Clip/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/ios/App/json-file.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_info": { 3 | "project_id": "1234", 4 | "project_number": "1234", 5 | "name": "1234", 6 | "firebase_url": "" 7 | }, 8 | "client": [] 9 | } 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-and-android/project-json.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_info": { 3 | "project_id": "1234", 4 | "project_number": "1234", 5 | "name": "1234", 6 | "firebase_url": "" 7 | }, 8 | "client": [] 9 | } 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/capacitor.config.ts: -------------------------------------------------------------------------------- 1 | const config = { 2 | ios: { 3 | path: 'ios/App', 4 | }, 5 | android: { 6 | path: 'android', 7 | }, 8 | }; 9 | 10 | export default config; 11 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/.gitignore: -------------------------------------------------------------------------------- 1 | App/build 2 | App/Pods 3 | App/Podfile.lock 4 | App/App/public 5 | DerivedData 6 | xcuserdata 7 | 8 | # Cordova plugins for Capacitor 9 | capacitor-cordova-ios-plugins 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/App.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "capacitor-configure-test", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-cfbundleversion-pbx-83/ios/App/App/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/capacitor.config.ts: -------------------------------------------------------------------------------- 1 | const config = { 2 | ios: { 3 | path: 'ios/App', 4 | }, 5 | android: { 6 | path: 'android', 7 | }, 8 | }; 9 | 10 | export default config; 11 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/.gitignore: -------------------------------------------------------------------------------- 1 | App/build 2 | App/Pods 3 | App/Podfile.lock 4 | App/App/public 5 | DerivedData 6 | xcuserdata 7 | 8 | # Cordova plugins for Capacitor 9 | capacitor-cordova-ios-plugins 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/App.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "capacitor-configure-test", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-current-project-version/ios/App/App/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/capacitor.config.ts: -------------------------------------------------------------------------------- 1 | const config = { 2 | ios: { 3 | path: 'ios/App', 4 | }, 5 | android: { 6 | path: 'android', 7 | }, 8 | }; 9 | 10 | export default config; 11 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/.gitignore: -------------------------------------------------------------------------------- 1 | App/build 2 | App/Pods 3 | App/Podfile.lock 4 | App/App/public 5 | DerivedData 6 | xcuserdata 7 | 8 | # Cordova plugins for Capacitor 9 | capacitor-cordova-ios-plugins 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/App.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-no-info-plist/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "capacitor-configure-test", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-no-info-plist/ios/App/App/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/capacitor.config.ts: -------------------------------------------------------------------------------- 1 | const config = { 2 | ios: { 3 | path: 'ios/App', 4 | }, 5 | android: { 6 | path: 'android', 7 | }, 8 | }; 9 | 10 | export default config; 11 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/.gitignore: -------------------------------------------------------------------------------- 1 | App/build 2 | App/Pods 3 | App/Podfile.lock 4 | App/App/public 5 | DerivedData 6 | xcuserdata 7 | 8 | # Cordova plugins for Capacitor 9 | capacitor-cordova-ios-plugins 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/App.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/ios-only/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "capacitor-configure-test", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/App/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/My App Clip/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios-only/ios/App/My App Clip/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios.notargets.nobuilds.yml: -------------------------------------------------------------------------------- 1 | platforms: 2 | ios: 3 | bundleId: com.ionicframework.testBundle 4 | version: 16.4 5 | incrementBuild: true 6 | productName: Awesome App 7 | displayName: My Awesome App 8 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/ios.targets.nobuilds.yml: -------------------------------------------------------------------------------- 1 | platforms: 2 | ios: 3 | targets: 4 | App: 5 | bundleId: com.ionicframework.testBundle 6 | version: 16.4 7 | incrementBuild: true 8 | productName: Awesome App 9 | displayName: My Awesome App 10 | -------------------------------------------------------------------------------- /packages/common/test/fixtures/json-file.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "json", 3 | "favoriteDay": "Friday, 13th", 4 | "wardrobe": [ 5 | "mask" 6 | ], 7 | "info": { 8 | "age": 34 9 | } 10 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/test/fixtures/splash.png -------------------------------------------------------------------------------- /packages/common/test/fixtures/strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Insert Element": "New3", 3 | "ErrorString_1": "New4" 4 | } -------------------------------------------------------------------------------- /packages/common/test/fixtures/web-only/capacitor.config.ts: -------------------------------------------------------------------------------- 1 | const config = { 2 | ios: { 3 | path: 'ios/App', 4 | }, 5 | android: { 6 | path: 'android', 7 | }, 8 | }; 9 | 10 | export default config; 11 | -------------------------------------------------------------------------------- /packages/common/trapeze.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/common/trapeze.config.ts -------------------------------------------------------------------------------- /packages/configure/bin/trapeze: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | 4 | process.on('unhandledRejection', err => { 5 | console.error('Unhandled Rejection', err); 6 | throw err; 7 | }); 8 | 9 | // import { run } from '../dist/cli'; 10 | const { run } = require('../dist/index'); 11 | 12 | run(); 13 | -------------------------------------------------------------------------------- /packages/configure/src/util/plural.ts: -------------------------------------------------------------------------------- 1 | export function pluralize(v: number, msg: string) { 2 | if (v === 0 || v > 1) { 3 | return `${msg}s`; 4 | } 5 | return msg; 6 | } -------------------------------------------------------------------------------- /packages/configure/test/utils.ts: -------------------------------------------------------------------------------- 1 | import { Operation } from "../src/definitions"; 2 | 3 | export const makeOp = (platform: string, name: string, value: any): Operation => ({ 4 | id: `${platform}.${name}`, 5 | platform, 6 | name, 7 | value, 8 | iosTarget: null, 9 | iosBuild: null, 10 | displayText: expect.anything(), 11 | }); -------------------------------------------------------------------------------- /packages/gradle-parse/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Created-By: Ionic 3 | Main-Class: com.capacitorjs.gradle.Parse 4 | -------------------------------------------------------------------------------- /packages/gradle-parse/capacitor-gradle-parse.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/gradle-parse/capacitor-gradle-parse.jar -------------------------------------------------------------------------------- /packages/gradle-parse/com/capacitorjs/gradle/Parse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/gradle-parse/com/capacitorjs/gradle/Parse.class -------------------------------------------------------------------------------- /packages/gradle-parse/com/capacitorjs/gradle/Visitor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/gradle-parse/com/capacitorjs/gradle/Visitor.class -------------------------------------------------------------------------------- /packages/gradle-parse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/gradle-parse/index.js -------------------------------------------------------------------------------- /packages/gradle-parse/lib/groovy-3.0.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/gradle-parse/lib/groovy-3.0.9.jar -------------------------------------------------------------------------------- /packages/gradle-parse/lib/json-20210307.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/gradle-parse/lib/json-20210307.jar -------------------------------------------------------------------------------- /packages/gradle-parse/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | java -cp lib/*:capacitor-gradle-parse.jar:. com.capacitorjs.gradle.Parse $1 3 | -------------------------------------------------------------------------------- /packages/project/src/config.ts: -------------------------------------------------------------------------------- 1 | export interface MobileProjectConfig { 2 | projectRoot?: string; 3 | ios?: { 4 | path: string; 5 | } 6 | android?: { 7 | path: string; 8 | }, 9 | enableAndroid?: boolean; 10 | enableIos?: boolean; 11 | } -------------------------------------------------------------------------------- /packages/project/src/frameworks/index.ts: -------------------------------------------------------------------------------- 1 | import { MobileProject } from "../project"; 2 | 3 | export class Framework { 4 | static getFramework(project: MobileProject): Promise { 5 | return Promise.resolve(null); 6 | } 7 | } -------------------------------------------------------------------------------- /packages/project/src/util/fs.ts: -------------------------------------------------------------------------------- 1 | import { mkdirp, pathExists } from '@ionic/utils-fs'; 2 | import { dirname } from 'path'; 3 | 4 | export async function assertParentDirs(path: string) { 5 | const dirs = dirname(path); 6 | await mkdirp(dirs); 7 | } -------------------------------------------------------------------------------- /packages/utils/src/utils.mjs: -------------------------------------------------------------------------------- 1 | import kleur from 'kleur'; 2 | 3 | export function exit(msg, e) { 4 | console.error(kleur.red(`ERROR: ${msg}`)); 5 | if (e) { 6 | console.error(e); 7 | } 8 | return process.exit(0); 9 | } -------------------------------------------------------------------------------- /packages/website/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # configure-website 2 | 3 | ## 0.0.1 4 | 5 | ### Patch Changes 6 | 7 | - 7f9e319: Target older JDK for gradle parser" 8 | - Improved version code handling 9 | 10 | ## 0.0.1-next.0 11 | 12 | ### Patch Changes 13 | 14 | - Target older JDK for gradle parser" 15 | -------------------------------------------------------------------------------- /packages/website/README.md: -------------------------------------------------------------------------------- 1 | # Intune Docs 2 | 3 | To start the development server: 4 | 5 | * `npm ci` 6 | * `npm start` 7 | -------------------------------------------------------------------------------- /packages/website/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [require.resolve('@docusaurus/core/lib/babel/preset')], 3 | }; 4 | -------------------------------------------------------------------------------- /packages/website/docs/Frameworks/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "position": 3, 3 | "label": "Frameworks" 4 | } 5 | -------------------------------------------------------------------------------- /packages/website/docs/Operations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "position": 2, 3 | "collapsed": false, 4 | "label": "Operations" 5 | } 6 | -------------------------------------------------------------------------------- /packages/website/static/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/.nojekyll -------------------------------------------------------------------------------- /packages/website/static/fonts/inter/Inter-variable-ASCII-subset.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/fonts/inter/Inter-variable-ASCII-subset.woff2 -------------------------------------------------------------------------------- /packages/website/static/fonts/roboto-mono/roboto-mono-var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/fonts/roboto-mono/roboto-mono-var.woff2 -------------------------------------------------------------------------------- /packages/website/static/img/index/community-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/img/index/community-0.png -------------------------------------------------------------------------------- /packages/website/static/img/index/community-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/img/index/community-1.png -------------------------------------------------------------------------------- /packages/website/static/img/index/community-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/img/index/community-2.png -------------------------------------------------------------------------------- /packages/website/static/img/index/features-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/img/index/features-0.png -------------------------------------------------------------------------------- /packages/website/static/img/index/features-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/img/index/features-1.png -------------------------------------------------------------------------------- /packages/website/static/img/index/features-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/img/index/features-2.png -------------------------------------------------------------------------------- /packages/website/static/img/index/top-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/img/index/top-0.png -------------------------------------------------------------------------------- /packages/website/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/trapeze/c19c6e4471089cac640934ad392de7f39b49dfd9/packages/website/static/img/logo.png -------------------------------------------------------------------------------- /packages/website/vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "cleanUrls": true, 3 | "redirects": [ 4 | { "source": "/docs/configuration-tool", "destination": "/docs/operations/getting-started" }, 5 | { "source": "/docs/examples", "destination": "/docs/resources" } 6 | ] 7 | } 8 | --------------------------------------------------------------------------------