`
+5. Run `pnpm pods` to reinstall iOS pods
+
+### SDK exports
+
+`packages/sdk` is a shared singleton federated across all mini apps. It exports:
+- `KrakenWebSocketService` — singleton WebSocket to Kraken, shared across Trading and Wallet
+- `PriceProvider` / `PriceContext` — React context wrapping the WS service
+- `usePrices()` / `useAssetPrice(symbol)` — price subscription hooks (updates wrapped in `useTransition`)
+- `useHistoricalPrices(krakenPair)` — fetches OHLC history from Kraken REST API
+- `useFlashAnimation(value)` — Reanimated hook for green/red flash on value change
+- `useConnectionStatus()` — WebSocket connection status hook
+- `ConnectionBanner` — UI component showing reconnecting/disconnected state
+- `ASSETS`, `ASSET_MAP`, `colors`, `formatPrice`, `formatValue`, `getAssetIconUri`
+
+### Auth flow
+
+`AuthProvider` (from `auth` remote) uses a render-prop pattern — it calls `children` with `{ isLoading, isSignout }`. Host's `App.tsx` gates the navigation container behind auth state. Initial state is `isLoading: true` to prevent an unauthenticated shell flash before token restore completes.
+
+### Performance patterns
+
+- **Leaf components**: `PriceCell` (trading) and `ValueCell` (wallet) isolate `useAssetPrice` subscriptions so only the price node re-renders on ticks. The outer row (`AssetRow`, `HoldingRow`) owns Reanimated shared values for the flash animation and never re-renders on price ticks.
+- **useTransition**: All price state updates in `usePrices` are wrapped in `startTransition` — price ticks are non-priority and won't block user interactions.
+- **startTransition on chart**: `setChartData` in `AssetDetailsScreen` is wrapped in `React.startTransition` to defer chart rebuilds.
+- **React Compiler**: `babel-plugin-react-compiler` is enabled across all packages for automatic memoization.
+
+### Dev server ports
+
+| App | Port |
+|---|---|
+| host | 8081 |
+| auth | 9003 |
+| trading | 9001 |
+| wallet | 9002 |
+
+### Mocks for standalone development
+
+Each mini app has a `mocks/` folder with local stubs for federated modules (e.g. `auth/AuthProvider`). These are used when running a mini app standalone without the host.
+
+### Rspack / Re.Pack config
+
+Each package has an `rspack.config.ts`. The loader used is `@callstack/repack/babel-swc-loader`. Asset transforms use `getAssetTransformRules()` — mini apps use `{inline: true}`.
+
+### Testing
+
+Host has a Jest test suite (`pnpm --filter host test`). Key mocks in `packages/host/jest.setup.js`:
+- `react-native-gesture-handler/jestSetup`
+- `@bottom-tabs/react-navigation` — mocked (native-only, can't run in Jest)
+- `react-native-bootsplash` — mocked
+- `@callstack/repack/client` — mocked with `auth`, `trading`, `wallet` container stubs
\ No newline at end of file
diff --git a/README.md b/README.md
index 98a43daf..22261b8d 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
-
+
-Super Apps in React Native with Re.Pack
+Fintech Super App — React Native with Re.Pack & Module Federation
[![mit licence][license-badge]][license]
@@ -10,130 +10,156 @@
-Bring micro-frontend architecture to your mobile [React Native](https://reactnative.dev) app with [Re.Pack](https://re-pack.dev) and make it a Super App. [Learn more.](https://www.callstack.com/services/super-app-development?utm_campaign=super_apps&utm_source=github&utm_content=super_app_showcase)
-
## The problem
-As small apps grow, offering multiple services (payments, messaging, social network, gaming, news, etc.), maintaining them becomes challenging. The codebase can become cluttered, and the app size may deter users who only need a few services. Today, teams dealing with such a challenge can either use monorepo to help draw the boundaries between functionalities, or leverage publishing and consuming packages from npm. However, both approaches have their drawbacks. At the same time, web teams have acccess to micro-frontend architecture, which allows them to split the app into smaller, more manageable parts downloadable on demand.
+As fintech products grow, they need to offer multiple services — trading, portfolio management, account settings — while maintaining independent release cycles and team ownership. A classic monorepo helps draw boundaries but still ships everything together: one team's change can block another's deployment, and every user downloads the entire app regardless of which services they actually use.
+
+At the same time, web teams have had micro-frontend architecture for years. Mobile hasn't had an equivalent — until now.
## The solution
-This showcase demonstrates how to achieve a proper micro-frontend architecture for mobile apps with [Module Federation](https://module-federation.io). It simplifies setup and maintenance, allowing independent apps to be deployed separately or as part of a super app. Micro-frontends can be moved to separate repositories, enabling independent team work or external contributions. Unlike classic monorepos, this setup uses runtime dependencies, so updating a micro-frontend automatically updates all apps using it without redeployment.
+This showcase demonstrates a **production-grade micro-frontend architecture for React Native** using [Re.Pack](https://re-pack.dev) and [Module Federation](https://module-federation.io). Each mini app (Trading, Wallet, Auth) is an independent JavaScript bundle, loaded at runtime by the host shell. Teams can develop, test, and deploy their mini app independently. Users only download the bundles they need.
+
+Key properties of this architecture:
+- **Runtime dependencies** — updating a mini app takes effect immediately without a host app release
+- **Independent deployability** — each mini app has its own dev server, bundle, and release pipeline
+- **Shared singletons** — native libraries (`react-native`, `react-native-reanimated`, etc.) and the live price feed (`KrakenWebSocketService`) are shared across all mini apps at runtime, keeping bundle sizes small and behaviour consistent
-## The Super App
+## The App
- Host App
- Mini Apps Interaction
- Booking Standalone App
+ Trading App
+ Wallet App
+ Auth App
-
-
-
+
+
+
-## Structure
+A dark-themed Fintech Super App with three tabs:
-
+| Tab | Mini App | Description |
+|---|---|---|
+| Trading | `packages/trading` | Live crypto asset list, Skia price chart, trade bottom sheet |
+| Wallet | `packages/wallet` | Real-time portfolio balance, per-asset holdings |
+| Account | `packages/auth` | Demo user profile, sign-out |
-The super app contains 4 apps:
+Authentication is handled by a shared `AuthProvider` federated from `packages/auth`, gating the tab bar until the user signs in.
-- `host` - the main app, which is a super app. It contains all the micro-frontends and provides a way to navigate between them.
-- `booking` - micro-frontend for booking service.
- Booking exposes `UpcomingAppointments` screen and `MainNavigator`. `MainNavigator` is Booking app itself. `UpcomingAppointments` screen is a screen, which is used in the super app in its own navigation.
-- `shopping` - micro-frontend for shopping service.
- Shopping exposes `MainNavigator`. `MainNavigator` is Shopping app itself.
-- `news` - micro-frontend for news service.
- News exposes `MainNavigator`. `MainNavigator` is News app itself. News mini app stored in separate repository https://github.com/callstack/news-mini-app-showcase to provide the example of using remote container outside of the monorepo.
-- `dashboard` - micro-frontend for dashboard service.
- Dashboard exposes `MainNavigator`. `MainNavigator` is Dashboard app itself.
-- `auth` - module that is used by other modules to provide authentication and authorization flow and UI.
+## Architecture
-Each of the mini apps could be deployed and run as a standalone app.
+```mermaid
+flowchart LR
+ subgraph HostBox["Host app"]
+ direction TB
+ Host["Host (port 8081) Native shell Navigation + auth gate"]
+ SDK["SDK KrakenWS svc PriceProvider Shared types"]
+ end
-## How to use
+ Trading["Trading (port 9001) Asset list Chart + Trade"]
+ Wallet["Wallet (port 9002) Portfolio Live Balance"]
+ Auth["Auth (port 9003) SignInScreen AuthProvider"]
-### Requirements
+ HostBox --> Trading
+ HostBox --> Wallet
+ HostBox --> Auth
+```
-⚠️ **Important:** This project requires:
+**Key design decisions:**
-- Node.js version 22 or higher
-- pnpm as package manager
+- All native dependencies live in `host`. Mini apps declare them as `peerDependencies` and consume them as Module Federation shared singletons — no duplicate native modules, no double-initialisation crashes.
+- `sdk` is a shared singleton: its `PriceContext` and `KrakenWebSocketService` instance are the same object across host and all mini apps, providing a single WebSocket connection shared by Trading and Wallet.
+- Each mini app's `rspack.config.ts` points `resolve.modules` at `../host/node_modules` so the bundler can locate peer deps during compilation without duplicating them.
+- `useTransition` wraps all price state updates, marking them as non-priority so live ticks never block user interactions.
-Please refer to the official [pnpm installation guide](https://pnpm.io/installation) for detailed setup instructions.
+## Stack
-After installation, it's recommended to align your pnpm version with the project:
+| | |
+|---|---|
+| React Native | 0.84 |
+| React | 19 |
+| Re.Pack | 5.2 (Rspack-based) |
+| Module Federation | V2 |
+| Animations | react-native-reanimated 4 + react-native-worklets |
+| Charts | victory-native 41 (Skia-based) |
+| Lists | @legendapp/list 2 |
+| Bottom sheet | @gorhom/bottom-sheet 5 |
+| Navigation | @react-navigation/native 7 + react-native-bottom-tabs |
+| React Compiler | babel-plugin-react-compiler 1.0 |
-```bash
-pnpm self-update
-```
+## Structure
-### Setup
+| Package | Role |
+|---|---|
+| `packages/host` | Native shell — owns binary, all native deps, top-level navigation, MF remote wiring |
+| `packages/auth` | Auth mini app — `AuthProvider`, `SignInScreen`, `AccountScreen` |
+| `packages/trading` | Trading mini app — live asset list, Skia chart, trade bottom sheet |
+| `packages/wallet` | Wallet mini app — real-time portfolio balance and holdings |
+| `packages/sdk` | Shared library — `KrakenWebSocketService`, `PriceProvider`, hooks, utils, types |
-Install dependencies for all apps:
+## Requirements
-```
-pnpm install
-```
+- Node.js 22+
+- pnpm 9.15.3
-#### iOS
+```bash
+npm install -g pnpm@9.15.3
+```
-In case automatic pods installation doesn't work when running iOS project, you can install manually:
+On macOS, Homebrew Ruby is required for pod install:
-```
-pnpm pods
+```bash
+export PATH="/opt/homebrew/opt/ruby/bin:$PATH"
```
-### Running the Super App
+## Setup
-Start DevServer for Host and Mini apps:
+Install dependencies for all packages:
+```bash
+pnpm install
+pnpm pods # iOS only — install CocoaPods
```
-pnpm start
-```
-
-Run Super App on iOS or Android (ios | android):
-```
-pnpm run:host:
-```
+## Running
-### Running the Mini App as a standalone app
+Start all dev servers (host + all mini apps) via mprocs:
-> **💡 NOTE**
->
-> The "booking" and "shopping" mini-apps can't be run in standalone mode (i.e. without the host running). This is a deliberate decision of this repository to showcase the possibility and to reduce the amount of work to keep the mini-apps dependencies up-to-date.
->
-> It's up to you to decide on what kind of developer experience your super app has.
+```bash
+pnpm start
+```
-Start DevServer for a Dashboard Mini App as a standalone app:
+Run on device/simulator:
+```bash
+pnpm run:host:ios
+pnpm run:host:android
```
-pnpm start:dashboard
-```
-
-### Code Quality Scripts
-Run tests for all apps:
+### Dev server ports
-```
-pnpm test
-```
+| App | Port |
+|---|---|
+| host | 8081 |
+| trading | 9001 |
+| wallet | 9002 |
+| auth | 9003 |
-Run linter for all apps:
+## Code quality
-```
-pnpm lint
+```bash
+pnpm test # run all tests
+pnpm lint # ESLint across all packages
+pnpm typecheck # TypeScript across all packages
```
-Run type check for all apps:
+## Demo guide
-```
-pnpm typecheck
-```
+Looking to run this in a client demo or build a business case? Read the [Module Federation Demo Guide](docs/MODULE_FEDERATION_DEMO_GUIDE.md) — it covers the architecture, a step-by-step demo script, and a business case template with bundle size and CI time tables.
## Contributing
@@ -141,7 +167,7 @@ Read the [contribution guidelines](/CONTRIBUTING.md) before contributing.
## Made with ❤️ at Callstack
-Super App showcase is an open source project and will always remain free to use. If you think it's cool, please star it 🌟. [Callstack][callstack-readme-with-love] is a group of React and React Native geeks, contact us at [hello@callstack.com](mailto:hello@callstack.com) if you need any help with these or just want to say hi!
+Fintech Super App is an open source project and will always remain free to use. If you think it's cool, please star it 🌟. [Callstack][callstack-readme-with-love] is a group of React and React Native geeks, contact us at [hello@callstack.com](mailto:hello@callstack.com) if you need any help with these or just want to say hi!
diff --git a/docs/MODULE_FEDERATION_DEMO_GUIDE.md b/docs/MODULE_FEDERATION_DEMO_GUIDE.md
new file mode 100644
index 00000000..0fabc80e
--- /dev/null
+++ b/docs/MODULE_FEDERATION_DEMO_GUIDE.md
@@ -0,0 +1,341 @@
+# Micro-Frontends for React Native: A Fintech Case Study
+
+> How Re.Pack and Module Federation bring web-style micro-frontend architecture to mobile — and why fintech teams should care.
+
+---
+
+## The Problem
+
+Fintech products grow fast. A trading app becomes a trading app with a wallet. The wallet adds a crypto exchange. The exchange needs KYC. Before long, a single codebase is owned by four teams who have never met, a change to the auth module blocks the trading release, and every user downloads the full app regardless of which services they actually use.
+
+Web teams solved this years ago with micro-frontends: independently deployable UI slices, each owned by one team, composed at runtime. Mobile hasn't had an equivalent — until now.
+
+---
+
+## The Solution: Module Federation for React Native
+
+[Re.Pack](https://re-pack.dev) is a Webpack/Rspack-based bundler for React Native. Its Module Federation V2 plugin lets you do something React Native was never designed to support: **load a JavaScript bundle from a remote URL at runtime, after the app has shipped**.
+
+Each mini app is:
+- A separate bundle, hosted on your CDN
+- Independently deployable — no App Store release required
+- Developed and tested by its own team in isolation
+- Downloaded only when (and if) the user navigates to it
+
+This showcase makes that concrete with a production-grade Fintech app: a trading screen with live crypto prices, a wallet showing real-time portfolio value, and a shared auth layer — all running as independent bundles inside a single native shell.
+
+---
+
+## Architecture
+
+
+
+### Packages
+
+| Package | Role |
+|---|---|
+| `packages/host` | Native shell — owns the binary, all native deps, top-level navigation, MF remote wiring |
+| `packages/trading` | Trading mini app — live asset list, Skia chart, trade bottom sheet |
+| `packages/wallet` | Wallet mini app — real-time portfolio balance and holdings |
+| `packages/auth` | Auth mini app — `AuthProvider`, `SignInScreen`, `AccountScreen` |
+| `packages/sdk` | Shared library — `KrakenWebSocketService`, `PriceProvider`, hooks, types, utilities |
+
+### Key design decisions
+
+**All native dependencies live in `host`.** Mini apps declare them as `peerDependencies` and consume them as Module Federation shared singletons — no duplicate native modules, no double-initialisation crashes, no native code in mini app bundles.
+
+**`sdk` is a shared singleton.** Its `PriceContext` and `KrakenWebSocketService` instance are the same object in memory across host and all mini apps. Trading and Wallet share one WebSocket connection, not two.
+
+**Independent deployability is real.** Each mini app has its own rspack config, dev server, and bundle output. Updating the trading screen is a CDN deploy — no App Store review, no host release.
+
+---
+
+## How Module Federation Is Configured
+
+### Host: consuming remotes
+
+```ts
+// packages/host/rspack.config.ts
+new Repack.plugins.ModuleFederationPluginV2({
+ name: 'host',
+ remotes: {
+ auth: `auth@https://cdn.example.com/${platform}/mf-manifest.json`,
+ trading: `trading@https://cdn.example.com/${platform}/mf-manifest.json`,
+ wallet: `wallet@https://cdn.example.com/${platform}/mf-manifest.json`,
+ },
+ shared: getSharedDependencies({eager: true}),
+}),
+```
+
+The host loads remotes eagerly (`eager: true`) and is the only package that actually runs natively. It provides all shared singletons to the mini apps.
+
+### Mini app: exposing a surface
+
+```ts
+// packages/trading/rspack.config.ts
+new Repack.plugins.ModuleFederationPluginV2({
+ name: 'trading',
+ exposes: {
+ './App': './src/navigation/MainNavigator',
+ },
+ shared: getSharedDependencies({eager: false}),
+}),
+```
+
+Each mini app exposes a single entry point — its navigator. It consumes shared deps lazily (`eager: false`), deferring to whatever version the host has already loaded.
+
+### Loading a mini app in the host
+
+```tsx
+// packages/host/src/navigation/TabsNavigator.tsx
+const TradingApp = React.lazy(() =>
+ randomDelay().then(() => import('trading/App'))
+);
+
+ }>
+
+
+```
+
+`React.lazy` + `Suspense` gives you code splitting and loading states for free. The `randomDelay()` in this showcase makes the loading state visible during demos — in production you'd remove it.
+
+---
+
+## Performance Patterns
+
+The showcase is also a reference implementation of several React Native performance patterns that matter especially in high-frequency UIs like trading dashboards.
+
+### 1. Leaf-component isolation for live data
+
+Subscribing to a live price feed at the row level re-renders the entire row — icon, name, symbol, and price — on every tick. Instead, subscribe in a tiny leaf component that renders only the price text:
+
+```tsx
+// PriceCell only re-renders when its price changes
+const PriceCell = React.memo(({symbol, flashProgress, flashIsUp}: Props) => {
+ const price = useAssetPrice(symbol);
+ // updates shared values → triggers UI-thread animation on outer Animated.View
+ // does NOT re-render the row
+ return {formatPrice(price)} ;
+});
+
+// AssetRow never re-renders on price ticks
+const AssetRow = React.memo(({asset, onPress}: AssetRowProps) => {
+ const flashProgress = useSharedValue(0);
+ const flashIsUp = useSharedValue(true);
+ const rowStyle = useAnimatedStyle(() => ({ ... }));
+
+ return (
+
+
+ {asset.name}
+
+
+ );
+});
+```
+
+The flash animation (green/red row highlight on price change) runs on the UI thread via Reanimated shared values — it doesn't cause any React re-renders.
+
+### 2. useTransition for non-priority state
+
+Price ticks should never compete with user interactions like scrolling or opening a bottom sheet:
+
+```tsx
+// sdk/src/hooks/usePrices.ts
+const [prices, setPrices] = React.useState({});
+const [, startTransition] = React.useTransition();
+
+service.subscribe(symbol, price => {
+ startTransition(() => setPrices(prev => ({...prev, [symbol]: price})));
+});
+```
+
+React treats state updates inside `startTransition` as interruptible — if a user taps or scrolls, React finishes the interaction first and applies the price update after.
+
+### 3. startTransition for chart rebuilds
+
+The same principle applies to the 60-tick chart buffer. Rebuilding chart data synchronously on every tick blocks the JS thread:
+
+```tsx
+React.useEffect(() => {
+ bufferRef.current = [...bufferRef.current, price].slice(-MAX_TICKS);
+ React.startTransition(() => {
+ setChartData(bufferRef.current.map((p, i) => ({index: i, price: p})));
+ });
+}, [price]);
+```
+
+### 4. Historical data seeding
+
+The chart is pre-populated with the last 60 1-minute OHLC candles from the Kraken REST API, so it shows meaningful data immediately rather than waiting for 60 live ticks to accumulate:
+
+```tsx
+const historicalPrices = useHistoricalPrices(asset.krakenPair);
+
+React.useEffect(() => {
+ if (historicalPrices.length === 0 || seededRef.current) return;
+ seededRef.current = true;
+ bufferRef.current = historicalPrices;
+ setChartData(historicalPrices.map((p, i) => ({index: i, price: p})));
+}, [historicalPrices]);
+```
+
+### 5. React Compiler
+
+`babel-plugin-react-compiler` is configured across all packages. It automatically inserts memoization for components and hooks that would otherwise re-render unnecessarily — no manual `useMemo`/`useCallback` required for the common cases.
+
+---
+
+## The Live Price Feed: One Connection, Many Consumers
+
+This is one of the most important demos in the app. Open the Trading tab and the Wallet tab on the same device. Both show live prices — but there is only one WebSocket connection to Kraken, shared via the Module Federation singleton:
+
+```ts
+// KrakenWebSocketService is a singleton
+class KrakenWebSocketService {
+ private static _instance: KrakenWebSocketService;
+
+ static get shared(): KrakenWebSocketService {
+ if (!KrakenWebSocketService._instance) {
+ KrakenWebSocketService._instance = new KrakenWebSocketService();
+ }
+ return KrakenWebSocketService._instance;
+ }
+}
+```
+
+Because `sdk` is declared as a shared singleton in the MF config, `KrakenWebSocketService._instance` is the same object in the host process regardless of which mini app accesses it. Trading subscribes to BTC and ETH. Wallet also subscribes to BTC and ETH. They share the same listeners on the same connection.
+
+In a production app this matters for: battery life, data usage, connection limits, and consistent prices across screens.
+
+---
+
+## Running the Demo
+
+### Setup
+
+```bash
+npm install -g pnpm@9.15.3
+pnpm install
+pnpm pods # iOS only
+```
+
+### Start everything
+
+```bash
+pnpm start # starts host + all mini apps via mprocs
+pnpm run:host:ios # or run:host:android
+```
+
+### Demo script
+
+**Step 1 — Authentication gate**
+> "The host shell owns authentication. The sign-in screen is a federated module from the `auth` package — the host doesn't ship auth UI code, it loads it at runtime."
+
+Sign in as Demo User. The tab bar appears.
+
+**Step 2 — Live trading list**
+> "Every price on this list is a real WebSocket tick from Kraken. Watch the green and red flashes — that's Reanimated running on the UI thread, not the JS thread. The list itself is LegendList, a high-performance alternative to FlatList."
+
+Scroll the list while prices are updating. No jank.
+
+**Step 3 — Asset details and chart**
+> "The chart is pre-populated with 60 minutes of real OHLC history. As new ticks arrive, the chart extends — but we wrap those updates in `startTransition`, so opening the trade sheet is always instant."
+
+Tap an asset. Open the trade sheet while prices are updating.
+
+**Step 4 — Trade flow**
+> "The trade sheet is `@gorhom/bottom-sheet`. Entering an amount uses an uncontrolled input — no re-render per keystroke. Confirm navigates to a modal success screen."
+
+Complete a trade.
+
+**Step 5 — Wallet with shared price feed**
+> "Switch to Wallet. The portfolio balance is updating in real time — same prices as Trading, because both mini apps share the same singleton WebSocket connection via Module Federation. No second connection, no duplication."
+
+Switch to Wallet. Watch the total balance update.
+
+**Step 6 — Independent deployment (the key point)**
+> "Now here's the business case argument: if I push a fix to the Trading mini app, I deploy a new bundle to the CDN. The host app on your device gets the update on the next launch — no App Store submission, no waiting for review, no forcing users to update."
+
+---
+
+## Building the Business Case
+
+### Deployment independence
+
+| Scenario | Without MF | With MF |
+|---|---|---|
+| Trading bug fix ships to users | Next App Store release (~1–7 days review) | CDN deploy, available on next app launch |
+| Wallet team adds a new feature | Full app release, all teams coordinate | Wallet deploys independently |
+| Rollback a bad trading release | Re-submit previous version to store | Swap CDN manifest to previous bundle |
+
+### Bundle sizes
+
+_Run `pnpm build` for each package and fill in actuals:_
+
+| Bundle | Size (gzip) |
+|---|---|
+| host (shell only, no mini apps) | _TBD_ |
+| trading | _TBD_ |
+| wallet | _TBD_ |
+| auth | _TBD_ |
+| **Total download for new user** | _TBD_ |
+| **If user never opens Wallet** | host + trading + auth only |
+
+A user who only uses the trading feature never downloads the wallet bundle. At scale, across millions of installs, this is meaningful bandwidth and storage savings.
+
+### CI build times
+
+_Run per-package builds in CI and fill in actuals:_
+
+| Build scope | Time |
+|---|---|
+| Full monorepo build | _TBD_ |
+| Trading only (`pnpm --filter trading build`) | _TBD_ |
+| Wallet only (`pnpm --filter wallet build`) | _TBD_ |
+| Auth only (`pnpm --filter auth build`) | _TBD_ |
+
+Teams building their mini app independently skip the host build entirely. If the full build takes N minutes, a team working only on Trading runs only the Trading build.
+
+### Team independence
+
+Each mini app has its own:
+- Dev server (separate port, separate terminal)
+- Bundle pipeline
+- Release cadence
+- Mock implementations for other remotes (in `mocks/` folder)
+
+The Trading team can develop, test, and deploy the trading feature without ever touching the host or wallet repos.
+
+---
+
+## Objections and Answers
+
+**"We already use code splitting in Metro."**
+Metro's code splitting is static — you split at build time and can't update the split points without a new release. Module Federation splits at runtime and makes each split independently deployable.
+
+**"What about native modules? Can mini apps add them?"**
+No — and that's by design. All native code lives in the host binary. Mini apps are JS-only bundles. This is the correct constraint: native code requires a store release anyway, so centralising it in the host is the right model.
+
+**"What about security? We can't load arbitrary JS."**
+Re.Pack's `CodeSigningPlugin` lets you sign bundles and verify signatures at load time — only bundles signed with your key will execute. The `auth` remote in this showcase is signed; the same can be applied to all remotes.
+
+**"Doesn't this add operational complexity?"**
+Yes, there is a CDN to manage and bundle versioning to think about. The trade-off is: operational complexity in your deploy pipeline, in exchange for deployment independence and smaller user-facing bundles. For teams at scale, this is the right trade.
+
+---
+
+## Stack Reference
+
+| | |
+|---|---|
+| React Native | 0.84 |
+| React | 19 |
+| Re.Pack | 5.2 (Rspack-based) |
+| Module Federation | V2 |
+| Animations | react-native-reanimated 4 + react-native-worklets |
+| Charts | victory-native 41 (Skia-based) |
+| Lists | @legendapp/list 2 |
+| Bottom sheet | @gorhom/bottom-sheet 5 |
+| Navigation | @react-navigation/native 7 + react-native-bottom-tabs |
+| React Compiler | babel-plugin-react-compiler 1.0 |
\ No newline at end of file
diff --git a/images/auth-app.png b/images/auth-app.png
new file mode 100644
index 00000000..13357527
Binary files /dev/null and b/images/auth-app.png differ
diff --git a/images/booking.gif b/images/booking.gif
deleted file mode 100644
index 5ea35500..00000000
Binary files a/images/booking.gif and /dev/null differ
diff --git a/images/diagram.png b/images/diagram.png
new file mode 100644
index 00000000..5c0699ba
Binary files /dev/null and b/images/diagram.png differ
diff --git a/images/host-main-screen.png b/images/host-main-screen.png
deleted file mode 100644
index 18bd799a..00000000
Binary files a/images/host-main-screen.png and /dev/null differ
diff --git a/images/host.gif b/images/host.gif
deleted file mode 100644
index af698414..00000000
Binary files a/images/host.gif and /dev/null differ
diff --git a/images/trading-app.gif b/images/trading-app.gif
new file mode 100644
index 00000000..193fe828
Binary files /dev/null and b/images/trading-app.gif differ
diff --git a/images/wallet-app.png b/images/wallet-app.png
new file mode 100644
index 00000000..7a739d21
Binary files /dev/null and b/images/wallet-app.png differ
diff --git a/mprocs/host-android.yaml b/mprocs/host-android.yaml
index abc50c0f..b3f1184d 100644
--- a/mprocs/host-android.yaml
+++ b/mprocs/host-android.yaml
@@ -5,12 +5,9 @@ procs:
Auth:
shell: pnpm --filter auth start --platform android
stop: SIGKILL
- Booking:
- shell: pnpm --filter booking start --platform android
- stop: SIGKILL
- Dashboard:
- shell: pnpm --filter dashboard start --platform android
- stop: SIGKILL
- Shopping:
- shell: pnpm --filter shopping start --platform android
+ Trading:
+ shell: pnpm --filter trading start --platform android
stop: SIGKILL
+ Wallet:
+ shell: pnpm --filter wallet start --platform android
+ stop: SIGKILL
\ No newline at end of file
diff --git a/mprocs/host-ios.yaml b/mprocs/host-ios.yaml
index 16d76d03..055421bd 100644
--- a/mprocs/host-ios.yaml
+++ b/mprocs/host-ios.yaml
@@ -5,12 +5,9 @@ procs:
Auth:
shell: pnpm --filter auth start --platform ios
stop: SIGKILL
- Booking:
- shell: pnpm --filter booking start --platform ios
- stop: SIGKILL
- Dashboard:
- shell: pnpm --filter dashboard start --platform ios
- stop: SIGKILL
- Shopping:
- shell: pnpm --filter shopping start --platform ios
+ Trading:
+ shell: pnpm --filter trading start --platform ios
stop: SIGKILL
+ Wallet:
+ shell: pnpm --filter wallet start --platform ios
+ stop: SIGKILL
\ No newline at end of file
diff --git a/mprocs/host.yaml b/mprocs/host.yaml
index b2cc39de..36968087 100644
--- a/mprocs/host.yaml
+++ b/mprocs/host.yaml
@@ -5,12 +5,9 @@ procs:
Auth:
shell: pnpm --filter auth start
stop: SIGKILL
- Booking:
- shell: pnpm --filter booking start
- stop: SIGKILL
- Dashboard:
- shell: pnpm --filter dashboard start
- stop: SIGKILL
- Shopping:
- shell: pnpm --filter shopping start
+ Trading:
+ shell: pnpm --filter trading start
stop: SIGKILL
+ Wallet:
+ shell: pnpm --filter wallet start
+ stop: SIGKILL
\ No newline at end of file
diff --git a/package.json b/package.json
index d7d92230..aeade167 100644
--- a/package.json
+++ b/package.json
@@ -11,10 +11,7 @@
"scripts": {
"run:host:ios": "pnpm --filter host ios",
"run:host:android": "pnpm --filter host android",
- "run:dashboard:ios": "pnpm --filter dashboard ios",
- "run:dashboard:android": "pnpm --filter dashboard android",
"start": "mprocs -c mprocs/host.yaml",
- "start:dashboard": "mprocs -c mprocs/dashboard.yaml",
"pods": "pnpm -r pods",
"pods:update": "pnpm -r pods:update",
"lint": "pnpm -r lint",
@@ -24,11 +21,11 @@
"check-deps": "pnpm -r check-deps"
},
"dependencies": {
+ "babel-plugin-react-compiler": "^1.0.0",
"mprocs": "^0.7.1"
},
"pnpm": {
"patchedDependencies": {
- "@react-native/community-cli-plugin": "patches/@react-native__community-cli-plugin.patch",
"react-native-paper": "patches/react-native-paper.patch"
},
"packageExtensions": {
diff --git a/packages/auth/package.json b/packages/auth/package.json
index 9cbb6761..4b0180db 100644
--- a/packages/auth/package.json
+++ b/packages/auth/package.json
@@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"scripts": {
- "start": "react-native start --port 9003",
+ "start": "NODE_OPTIONS=--disable-warning=DEP0155 react-native start --port 9003",
"test": "jest --passWithNoTests",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"bundle": "pnpm bundle:ios && pnpm bundle:android",
diff --git a/packages/auth/rspack.config.ts b/packages/auth/rspack.config.ts
index 73f244b7..a153cd7d 100644
--- a/packages/auth/rspack.config.ts
+++ b/packages/auth/rspack.config.ts
@@ -18,6 +18,21 @@ export default Repack.defineRspackConfig(({mode}) => {
return {
mode,
context: __dirname,
+ // Ignore benign "Critical dependency" warnings from reanimated/worklets'
+ // dynamic require()s that Rspack can't statically extract. Neither path
+ // runs in the app bundle under Re.Pack:
+ // - worklets bundleMode/metroOverrides: Metro-only runtime APIs
+ // - reanimated jestUtils: only executes when IS_JEST is true
+ // Use the {module} form — a bare RegExp is matched against the warning
+ // message, not the module path, so it would never match here.
+ // Also ignore @gorhom/bottom-sheet's optional require('@shopify/flash-list')
+ // (wrapped in try/catch) — flash-list isn't installed and the component
+ // falls back to a regular list when it's absent.
+ ignoreWarnings: [
+ {module: /react-native-worklets[\\/]src[\\/]bundleMode[\\/]metroOverrides/},
+ {module: /react-native-reanimated[\\/]src[\\/]jestUtils/},
+ {module: /@gorhom[\\/]bottom-sheet[\\/].*BottomSheetFlashList/},
+ ],
entry: {},
resolve: {...Repack.getResolveOptions({enablePackageExports: true})},
output: {
diff --git a/packages/auth/src/providers/AuthProvider.tsx b/packages/auth/src/providers/AuthProvider.tsx
index c67a5d24..7300087b 100644
--- a/packages/auth/src/providers/AuthProvider.tsx
+++ b/packages/auth/src/providers/AuthProvider.tsx
@@ -8,10 +8,10 @@ enum ActionTypes {
SIGN_OUT = 'SIGN_OUT',
}
-type Action = {
- type: ActionTypes;
- payload?: any;
-};
+type Action =
+ | {type: ActionTypes.RESTORE_TOKEN; payload: boolean}
+ | {type: ActionTypes.SIGN_IN}
+ | {type: ActionTypes.SIGN_OUT};
type State = {
isLoading: boolean;
@@ -47,7 +47,7 @@ const AuthProvider = ({
children: (data: State) => React.ReactNode;
}) => {
const [state, dispatch] = React.useReducer(reducer, {
- isLoading: false,
+ isLoading: true,
isSignout: false,
});
@@ -56,29 +56,24 @@ const AuthProvider = ({
signIn: async () => {
try {
await AuthService.shared.setCredentials('dummy-auth-token');
- } catch (e) {
- // Handle error
+ dispatch({type: ActionTypes.SIGN_IN});
+ } catch {
+ // credentials failed to persist — remain signed out
}
-
- dispatch({type: ActionTypes.SIGN_IN});
},
signOut: async () => {
try {
await AuthService.shared.removeCredentials();
- } catch (e) {
- // Handle error
- }
-
+ } catch {}
dispatch({type: ActionTypes.SIGN_OUT});
},
signUp: async () => {
try {
await AuthService.shared.setCredentials('dummy-auth-token');
- } catch (e) {
- // Handle error
+ dispatch({type: ActionTypes.SIGN_IN});
+ } catch {
+ // credentials failed to persist — remain signed out
}
-
- dispatch({type: ActionTypes.SIGN_IN});
},
}),
[],
@@ -90,8 +85,8 @@ const AuthProvider = ({
try {
userToken = await AuthService.shared.getCredentials();
- } catch (e) {
- // Handle error
+ } catch {
+ // no stored credentials — fall through and treat as signed out
}
dispatch({type: ActionTypes.RESTORE_TOKEN, payload: !userToken});
diff --git a/packages/auth/src/screens/AccountScreen.tsx b/packages/auth/src/screens/AccountScreen.tsx
index 64bca521..632aaba3 100644
--- a/packages/auth/src/screens/AccountScreen.tsx
+++ b/packages/auth/src/screens/AccountScreen.tsx
@@ -1,32 +1,93 @@
import React from 'react';
-import {Pressable, StyleSheet, View} from 'react-native';
-import {MD3Colors, Text} from 'react-native-paper';
+import {Pressable, ScrollView, StyleSheet, Text, View} from 'react-native';
+import {useBottomTabBarHeight} from 'react-native-bottom-tabs';
import {useAuth} from '../contexts/AuthContext';
+const colors = {
+ background: '#0A0E1A',
+ surface: '#131929',
+ surfaceVariant: '#1C2438',
+ primary: '#4F8EF7',
+ onPrimary: '#FFFFFF',
+ secondary: '#A0AEC0',
+ onSurface: '#E2E8F0',
+ onBackground: '#E2E8F0',
+ border: '#2D3748',
+};
+
const AccountScreen = () => {
const {signOut} = useAuth();
+ const tabBarHeight = useBottomTabBarHeight();
return (
-
- Logout
-
+
+
+ Demo User
+ demo@fintechapp.com
+
+
+
+
+ [styles.button, pressed && styles.buttonPressed]}
+ onPress={signOut}>
+ Sign Out
+
+
);
};
const styles = StyleSheet.create({
container: {
- backgroundColor: '#fff',
flex: 1,
- justifyContent: 'center',
- alignItems: 'center',
+ backgroundColor: colors.background,
},
- button: {
- backgroundColor: MD3Colors.primary90,
+ scroll: {
+ flex: 1,
+ },
+ scrollContent: {
padding: 16,
+ },
+ card: {
+ backgroundColor: colors.surface,
borderRadius: 16,
+ padding: 24,
+ gap: 6,
+ },
+ title: {
+ color: colors.onSurface,
+ fontSize: 20,
+ fontWeight: '700',
+ },
+ subtitle: {
+ color: colors.secondary,
+ fontSize: 14,
+ },
+ footer: {
+ padding: 16,
+ backgroundColor: colors.background,
+ borderTopWidth: StyleSheet.hairlineWidth,
+ borderTopColor: colors.border,
+ },
+ button: {
+ backgroundColor: colors.primary,
+ paddingVertical: 16,
+ borderRadius: 12,
+ alignItems: 'center',
+ },
+ buttonPressed: {
+ opacity: 0.8,
+ },
+ buttonText: {
+ color: colors.onPrimary,
+ fontSize: 16,
+ fontWeight: '600',
},
});
-export default AccountScreen;
+export default AccountScreen;
\ No newline at end of file
diff --git a/packages/auth/src/screens/SignInScreen.tsx b/packages/auth/src/screens/SignInScreen.tsx
index a969f526..571c1aa8 100644
--- a/packages/auth/src/screens/SignInScreen.tsx
+++ b/packages/auth/src/screens/SignInScreen.tsx
@@ -1,6 +1,6 @@
import React from 'react';
import {Pressable, StyleSheet, View} from 'react-native';
-import {MD3Colors, Text} from 'react-native-paper';
+import {Text} from 'react-native-paper';
import {useAuth} from '../contexts/AuthContext';
const SignInScreen = () => {
@@ -8,39 +8,79 @@ const SignInScreen = () => {
return (
-
- Welcome!
-
-
- This is a dummy login screen. Just press the button and have a look
- around this super app 🚀
-
-
- Login
-
+
+ ₿
+
+ Fintech Super App
+
+
+ Trading & Portfolio Management
+
+
+
+
+ [styles.button, pressed && styles.buttonPressed]}
+ onPress={signIn}>
+
+ Sign In as Demo User
+
+
+
+ Demo mode — no real credentials required
+
+
);
};
const styles = StyleSheet.create({
container: {
- backgroundColor: '#fff',
+ backgroundColor: '#0A0E1A',
flex: 1,
- justifyContent: 'center',
+ justifyContent: 'space-between',
+ padding: 32,
+ paddingTop: 120,
+ paddingBottom: 64,
+ },
+ header: {
alignItems: 'center',
+ gap: 12,
+ },
+ logo: {
+ fontSize: 64,
+ color: '#4F8EF7',
},
- welcomeHeadline: {
- color: MD3Colors.primary20,
+ appName: {
+ color: '#E2E8F0',
+ fontWeight: '700',
+ textAlign: 'center',
},
- welcomeText: {
- padding: 16,
- paddingBottom: 32,
+ tagline: {
+ color: '#A0AEC0',
+ textAlign: 'center',
+ },
+ footer: {
+ gap: 16,
+ alignItems: 'center',
},
button: {
- backgroundColor: MD3Colors.primary90,
- padding: 16,
- borderRadius: 16,
+ backgroundColor: '#4F8EF7',
+ paddingVertical: 16,
+ paddingHorizontal: 32,
+ borderRadius: 12,
+ width: '100%',
+ alignItems: 'center',
+ },
+ buttonPressed: {
+ opacity: 0.8,
+ },
+ buttonText: {
+ color: '#FFFFFF',
+ },
+ disclaimer: {
+ color: '#A0AEC0',
},
});
-export default SignInScreen;
+export default SignInScreen;
\ No newline at end of file
diff --git a/packages/auth/src/services/AuthService.ts b/packages/auth/src/services/AuthService.ts
index 39d20a9c..8752dd44 100644
--- a/packages/auth/src/services/AuthService.ts
+++ b/packages/auth/src/services/AuthService.ts
@@ -1,7 +1,7 @@
import AsyncStorage from '@react-native-async-storage/async-storage';
class AuthService {
- TOKEN_KEY = 'token';
+ private readonly TOKEN_KEY = 'token';
getCredentials(): Promise {
return AsyncStorage.getItem(this.TOKEN_KEY);
diff --git a/packages/booking/.eslintrc.js b/packages/booking/.eslintrc.js
deleted file mode 100644
index 2406aa68..00000000
--- a/packages/booking/.eslintrc.js
+++ /dev/null
@@ -1,22 +0,0 @@
-module.exports = {
- root: true,
- extends: '@react-native',
- parser: '@typescript-eslint/parser',
- plugins: ['@typescript-eslint'],
- overrides: [
- {
- files: ['*.ts', '*.tsx'],
- rules: {
- '@typescript-eslint/no-shadow': ['error'],
- 'no-shadow': 'off',
- 'no-undef': 'off',
- },
- },
- {
- files: ['jest.setup.js'],
- env: {
- jest: true,
- },
- },
- ],
-};
diff --git a/packages/booking/.gitignore b/packages/booking/.gitignore
deleted file mode 100644
index 370d7737..00000000
--- a/packages/booking/.gitignore
+++ /dev/null
@@ -1,69 +0,0 @@
-# OSX
-#
-.DS_Store
-
-# Xcode
-#
-build/
-*.pbxuser
-!default.pbxuser
-*.mode1v3
-!default.mode1v3
-*.mode2v3
-!default.mode2v3
-*.perspectivev3
-!default.perspectivev3
-xcuserdata
-*.xccheckout
-*.moved-aside
-DerivedData
-*.hmap
-*.ipa
-*.xcuserstate
-**/.xcode.env.local
-
-
-# Android/IntelliJ
-#
-build/
-.idea
-.gradle
-local.properties
-*.iml
-*.hprof
-.cxx/
-
-# node.js
-#
-node_modules/
-npm-debug.log
-yarn-error.log
-
-# BUCK
-buck-out/
-\.buckd/
-*.keystore
-!debug.keystore
-.kotlin/
-
-# fastlane
-#
-# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
-# screenshots whenever they are needed.
-# For more information about the recommended setup visit:
-# https://docs.fastlane.tools/best-practices/source-control/
-
-**/fastlane/report.xml
-**/fastlane/Preview.html
-**/fastlane/screenshots
-**/fastlane/test_output
-
-# Bundle artifact
-*.jsbundle
-
-# Ruby / CocoaPods
-**/Pods/
-/vendor/bundle/
-
-# dist dir
-dist/
diff --git a/packages/booking/.prettierrc.js b/packages/booking/.prettierrc.js
deleted file mode 100644
index 2b540746..00000000
--- a/packages/booking/.prettierrc.js
+++ /dev/null
@@ -1,7 +0,0 @@
-module.exports = {
- arrowParens: 'avoid',
- bracketSameLine: true,
- bracketSpacing: false,
- singleQuote: true,
- trailingComma: 'all',
-};
diff --git a/packages/booking/.watchmanconfig b/packages/booking/.watchmanconfig
deleted file mode 100644
index 9e26dfee..00000000
--- a/packages/booking/.watchmanconfig
+++ /dev/null
@@ -1 +0,0 @@
-{}
\ No newline at end of file
diff --git a/packages/booking/README.md b/packages/booking/README.md
deleted file mode 100644
index c46c2d4c..00000000
--- a/packages/booking/README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# Booking Application
-
-This is mini app for booking service. Booking exposes `UpcomingAppointments` screen and `MainNavigator`. `MainNavigator` is Booking app itself. `UpcomingAppointments` screen is a screen, which is used in the super app in its own navigation. Booking app uses auth logic and UI (`SignInScreen`, `AccountScreen`) from Auth remote module, so we suggest to run Auth dev server to prevent issues with Booking app. If Auth dev server will no be run, Booking app will not work as standalone app.
-
-## Setup
-
-Install dependencies for all apps in root directory of this monorepo:
-
-```
-pnpm install
-```
-
-### Run
-
-Start dev server for all apps in root directory of this monorepo if you need to work as a part of host app. Booking app server will run on 9000 port:
-
-```
-pnpm start
-```
-
-Or start dev server for Booking app as a standalone app:
-
-```
-pnpm start:standalone:booking
-```
-
-Run iOS or Android app (ios | android):
-
-```
-pnpm run:booking:
-```
diff --git a/packages/booking/app.json b/packages/booking/app.json
deleted file mode 100644
index 20e4665a..00000000
--- a/packages/booking/app.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "booking",
- "displayName": "booking"
-}
\ No newline at end of file
diff --git a/packages/booking/babel.config.js b/packages/booking/babel.config.js
deleted file mode 100644
index f7b3da3b..00000000
--- a/packages/booking/babel.config.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = {
- presets: ['module:@react-native/babel-preset'],
-};
diff --git a/packages/booking/jest.config.js b/packages/booking/jest.config.js
deleted file mode 100644
index 9480dd5b..00000000
--- a/packages/booking/jest.config.js
+++ /dev/null
@@ -1,10 +0,0 @@
-module.exports = {
- preset: 'react-native',
- fakeTimers: {
- enableGlobally: true,
- },
- setupFiles: ['./jest.setup.js'],
- transformIgnorePatterns: [
- 'node_modules/(?!(?:.pnpm/)?((jest-)?react-native|@react-native(-community)?|react-navigation|@react-navigation|react-native-svg))',
- ],
-};
diff --git a/packages/booking/jest.setup.js b/packages/booking/jest.setup.js
deleted file mode 100644
index 307ed9b5..00000000
--- a/packages/booking/jest.setup.js
+++ /dev/null
@@ -1,10 +0,0 @@
-jest.mock('@callstack/repack/client', () => ({
- Federated: {
- importModule: jest.fn((container, module) => {
- if (container === 'auth') {
- const authMock = require('../auth/mocks/federated');
- return Promise.resolve(authMock.default(module));
- }
- }),
- },
-}));
diff --git a/packages/booking/mocks/App.tsx b/packages/booking/mocks/App.tsx
deleted file mode 100644
index 3d1c7bfb..00000000
--- a/packages/booking/mocks/App.tsx
+++ /dev/null
@@ -1,3 +0,0 @@
-import React from 'react';
-
-export const AppMock = () => <>>;
diff --git a/packages/booking/mocks/federated.ts b/packages/booking/mocks/federated.ts
deleted file mode 100644
index 72e16fe1..00000000
--- a/packages/booking/mocks/federated.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import {AppMock} from './App';
-
-export default (module: string) => {
- switch (module) {
- case './App':
- return AppMock;
- default:
- throw new Error(`BookingMock: unknown module: ${module}`);
- }
-};
diff --git a/packages/booking/package.json b/packages/booking/package.json
deleted file mode 100644
index 38e03029..00000000
--- a/packages/booking/package.json
+++ /dev/null
@@ -1,71 +0,0 @@
-{
- "name": "booking",
- "version": "0.0.1",
- "private": true,
- "scripts": {
- "start": "react-native start --port 9000",
- "test": "jest",
- "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
- "typecheck": "tsc",
- "bundle": "pnpm bundle:ios && pnpm bundle:android",
- "bundle:ios": "react-native bundle --platform ios --entry-file index.js --dev false",
- "bundle:android": "react-native bundle --platform android --entry-file index.js --dev false",
- "align-deps": "rnx-align-deps --write",
- "check-deps": "rnx-align-deps"
- },
- "dependencies": {
- "@bottom-tabs/react-navigation": "1.1.0",
- "@module-federation/enhanced": "2.3.1",
- "@react-native-async-storage/async-storage": "3.0.2",
- "@react-navigation/native": "7.2.2",
- "@react-navigation/native-stack": "7.14.10",
- "react": "19.2.3",
- "react-native": "0.84.1",
- "react-native-bottom-tabs": "1.1.0",
- "react-native-calendars": "1.1291.1",
- "react-native-edge-to-edge": "1.8.1",
- "react-native-paper": "5.15.0",
- "react-native-safe-area-context": "5.7.0",
- "react-native-screens": "4.24.0",
- "react-native-vector-icons": "10.3.0"
- },
- "devDependencies": {
- "@babel/core": "^7.25.2",
- "@babel/preset-env": "^7.25.3",
- "@babel/runtime": "^7.25.0",
- "@callstack/repack": "5.2.5",
- "@react-native-community/cli": "20.1.0",
- "@react-native/babel-preset": "0.84.1",
- "@react-native/eslint-config": "0.84.1",
- "@react-native/typescript-config": "0.84.1",
- "@rnx-kit/align-deps": "^3.4.3",
- "@rspack/core": "1.7.11",
- "@swc/helpers": "^0.5.20",
- "@types/jest": "^29.5.14",
- "@types/react": "^19.2.0",
- "@types/react-native-vector-icons": "^6.4.18",
- "@types/react-test-renderer": "^19.1.0",
- "@typescript-eslint/eslint-plugin": "^8.12.2",
- "@typescript-eslint/parser": "^8.12.2",
- "eslint": "^8.57.0",
- "jest": "^29.6.3",
- "prettier": "^2.8.8",
- "react-test-renderer": "^19.2.3",
- "super-app-showcase-sdk": "0.0.2",
- "typescript": "^5.8.3"
- },
- "rnx-kit": {
- "kitType": "app",
- "alignDeps": {
- "presets": [
- "./node_modules/super-app-showcase-sdk/preset"
- ],
- "requirements": [
- "super-app-showcase-sdk@0.0.2"
- ],
- "capabilities": [
- "super-app"
- ]
- }
- }
-}
diff --git a/packages/booking/src/App.tsx b/packages/booking/src/App.tsx
deleted file mode 100644
index b1b88d43..00000000
--- a/packages/booking/src/App.tsx
+++ /dev/null
@@ -1,40 +0,0 @@
-import React from 'react';
-import {NavigationContainer} from '@react-navigation/native';
-import MainNavigator from './navigation/MainNavigator';
-import SplashScreen from './components/SplashScreen';
-import ErrorBoundary from './components/ErrorBoundary';
-
-const AuthProvider = React.lazy(() => import('auth/AuthProvider'));
-const SignInScreen = React.lazy(() => import('auth/SignInScreen'));
-
-const App = () => {
- return (
-
- }>
-
- {(authData: {isSignout: boolean; isLoading: boolean}) => {
- if (authData.isLoading) {
- return ;
- }
-
- if (authData.isSignout) {
- return (
- }>
-
-
- );
- }
-
- return (
-
-
-
- );
- }}
-
-
-
- );
-};
-
-export default App;
diff --git a/packages/booking/src/__tests__/App-test.tsx b/packages/booking/src/__tests__/App-test.tsx
deleted file mode 100644
index 085b231a..00000000
--- a/packages/booking/src/__tests__/App-test.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import React from 'react';
-import renderer from 'react-test-renderer';
-
-import App from '../App';
-
-it('renders correctly', () => {
- renderer.create( );
-});
diff --git a/packages/booking/src/components/ErrorBoundary.tsx b/packages/booking/src/components/ErrorBoundary.tsx
deleted file mode 100644
index 359cdb67..00000000
--- a/packages/booking/src/components/ErrorBoundary.tsx
+++ /dev/null
@@ -1,59 +0,0 @@
-import React from 'react';
-import {StyleSheet, Text, SafeAreaView} from 'react-native';
-import {MD3Colors} from 'react-native-paper';
-import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
-
-type Props = {
- children: React.ReactNode;
- name: string;
-};
-
-type State = {
- hasError: boolean;
-};
-
-class ErrorBoundary extends React.Component {
- name: string;
-
- constructor(props: Props) {
- super(props);
- this.name = props.name;
- this.state = {hasError: false};
- }
-
- static getDerivedStateFromError() {
- return {hasError: true};
- }
-
- componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
- console.log(error, errorInfo);
- }
-
- render() {
- if (this.state.hasError) {
- return (
-
-
- {`Failed to load ${this.name}`}
-
- );
- }
-
- return this.props.children;
- }
-}
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- alignItems: 'center',
- },
- text: {
- fontSize: 24,
- color: MD3Colors.primary20,
- textAlign: 'center',
- },
-});
-
-export default ErrorBoundary;
diff --git a/packages/booking/src/components/NavBar.tsx b/packages/booking/src/components/NavBar.tsx
deleted file mode 100644
index 2d77508b..00000000
--- a/packages/booking/src/components/NavBar.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import React from 'react';
-import {NativeStackHeaderProps} from '@react-navigation/native-stack';
-import {Appbar, MD3Colors} from 'react-native-paper';
-
-const NavBar = ({navigation, back, route, options}: NativeStackHeaderProps) => {
- return (
-
- {back ? : null}
-
-
- );
-};
-
-export default NavBar;
diff --git a/packages/booking/src/components/Placeholder.tsx b/packages/booking/src/components/Placeholder.tsx
deleted file mode 100644
index d63ab4f0..00000000
--- a/packages/booking/src/components/Placeholder.tsx
+++ /dev/null
@@ -1,32 +0,0 @@
-import React, {FC} from 'react';
-import {SafeAreaView, StyleSheet, Text} from 'react-native';
-import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
-import {MD3Colors} from 'react-native-paper';
-
-type Props = {
- label: string;
- icon: string;
-};
-
-const Placeholder: FC = ({label, icon}) => {
- return (
-
-
- {label}
-
- );
-};
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- alignItems: 'center',
- },
- text: {
- fontSize: 24,
- color: MD3Colors.primary20,
- },
-});
-
-export default Placeholder;
diff --git a/packages/booking/src/components/SplashScreen.tsx b/packages/booking/src/components/SplashScreen.tsx
deleted file mode 100644
index ba3e9fcd..00000000
--- a/packages/booking/src/components/SplashScreen.tsx
+++ /dev/null
@@ -1,48 +0,0 @@
-import React from 'react';
-import {StyleSheet, SafeAreaView} from 'react-native';
-import {MD3Colors, ProgressBar, Text} from 'react-native-paper';
-import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
-
-const SplashScreen = () => {
- return (
-
-
-
- Booking application is loading. Please wait...
-
-
-
- );
-};
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- },
- icon: {
- textAlign: 'center',
- },
- text: {
- paddingVertical: 16,
- paddingHorizontal: 32,
- fontSize: 24,
- color: MD3Colors.primary20,
- textAlign: 'center',
- },
- progress: {
- marginVertical: 16,
- marginHorizontal: 32,
- },
-});
-
-export default SplashScreen;
diff --git a/packages/booking/src/data/featuredServices.json b/packages/booking/src/data/featuredServices.json
deleted file mode 100644
index 9579eeb2..00000000
--- a/packages/booking/src/data/featuredServices.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "data": [
- {
- "id": "1",
- "type": "haircut",
- "title": "Haircut",
- "place": "Barbershop",
- "address": "123 Main St",
- "image": "https://picsum.photos/700?a"
- },
- {
- "id": "2",
- "type": "nails",
- "title": "Nails",
- "place": "Beauty salon",
- "address": "456 Main St",
- "image": "https://picsum.photos/700"
- },
- {
- "id": "3",
- "type": "hair coloring",
- "title": "Hair coloring",
- "place": "Beauty salon",
- "address": "789 Main St",
- "image": "https://picsum.photos/700"
- },
- {
- "id": "4",
- "type": "haircut",
- "title": "Haircut",
- "place": "Barbershop",
- "address": "123 Main St",
- "image": "https://picsum.photos/700"
- }
- ]
-}
\ No newline at end of file
diff --git a/packages/booking/src/data/recentBookings.json b/packages/booking/src/data/recentBookings.json
deleted file mode 100644
index 32815456..00000000
--- a/packages/booking/src/data/recentBookings.json
+++ /dev/null
@@ -1,60 +0,0 @@
-{
- "data": [
- {
- "id": "1",
- "title": "Haircut",
- "provider": "John Doe",
- "date": "01.01.2018",
- "time": "10:00"
- },
- {
- "id": "2",
- "title": "Coloring",
- "provider": "John Doe",
- "date": "02.01.2018",
- "time": "09:00"
- },
- {
- "id": "3",
- "title": "Beard trim",
- "provider": "John Doe",
- "date": "03.01.2018",
- "time": "12:00"
- },
- {
- "id": "4",
- "title": "Beard shave",
- "provider": "John Doe",
- "date": "04.01.2018",
- "time": "12:00"
- },
- {
- "id": "5",
- "title": "Haircut",
- "provider": "John Doe",
- "date": "05.01.2018",
- "time": "12:00"
- },
- {
- "id": "6",
- "title": "Haircut",
- "provider": "John Doe",
- "date": "06.01.2018",
- "time": "12:00"
- },
- {
- "id": "7",
- "title": "Nail polish",
- "provider": "John Doe",
- "date": "07.01.2018",
- "time": "12:00"
- },
- {
- "id": "8",
- "title": "Head massage",
- "provider": "John Doe",
- "date": "08.01.2018",
- "time": "12:00"
- }
- ]
-}
\ No newline at end of file
diff --git a/packages/booking/src/data/upcomingBookings.json b/packages/booking/src/data/upcomingBookings.json
deleted file mode 100644
index 32815456..00000000
--- a/packages/booking/src/data/upcomingBookings.json
+++ /dev/null
@@ -1,60 +0,0 @@
-{
- "data": [
- {
- "id": "1",
- "title": "Haircut",
- "provider": "John Doe",
- "date": "01.01.2018",
- "time": "10:00"
- },
- {
- "id": "2",
- "title": "Coloring",
- "provider": "John Doe",
- "date": "02.01.2018",
- "time": "09:00"
- },
- {
- "id": "3",
- "title": "Beard trim",
- "provider": "John Doe",
- "date": "03.01.2018",
- "time": "12:00"
- },
- {
- "id": "4",
- "title": "Beard shave",
- "provider": "John Doe",
- "date": "04.01.2018",
- "time": "12:00"
- },
- {
- "id": "5",
- "title": "Haircut",
- "provider": "John Doe",
- "date": "05.01.2018",
- "time": "12:00"
- },
- {
- "id": "6",
- "title": "Haircut",
- "provider": "John Doe",
- "date": "06.01.2018",
- "time": "12:00"
- },
- {
- "id": "7",
- "title": "Nail polish",
- "provider": "John Doe",
- "date": "07.01.2018",
- "time": "12:00"
- },
- {
- "id": "8",
- "title": "Head massage",
- "provider": "John Doe",
- "date": "08.01.2018",
- "time": "12:00"
- }
- ]
-}
\ No newline at end of file
diff --git a/packages/booking/src/navigation/AccountNavigator.tsx b/packages/booking/src/navigation/AccountNavigator.tsx
deleted file mode 100644
index 98fd781a..00000000
--- a/packages/booking/src/navigation/AccountNavigator.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import React from 'react';
-import {createNativeStackNavigator} from '@react-navigation/native-stack';
-import NavBar from '../components/NavBar';
-import AccountScreen from '../screens/AccountScreen';
-
-export type AccountStackParamList = {
- Account: undefined;
-};
-
-const Account = createNativeStackNavigator();
-
-const AccountNavigator = () => {
- return (
-
-
-
- );
-};
-
-export default AccountNavigator;
diff --git a/packages/booking/src/navigation/CalendarNavigator.tsx b/packages/booking/src/navigation/CalendarNavigator.tsx
deleted file mode 100644
index f6387f49..00000000
--- a/packages/booking/src/navigation/CalendarNavigator.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import React from 'react';
-import {createNativeStackNavigator} from '@react-navigation/native-stack';
-import NavBar from '../components/NavBar';
-import CalendarScreen from '../screens/CalendarScreen';
-
-export type CalendarStackParamList = {
- Calendar: undefined;
-};
-
-const Calendar = createNativeStackNavigator();
-
-const CalendarNavigator = () => {
- return (
-
-
-
- );
-};
-
-export default CalendarNavigator;
diff --git a/packages/booking/src/navigation/HomeNavigator.tsx b/packages/booking/src/navigation/HomeNavigator.tsx
deleted file mode 100644
index de1348b5..00000000
--- a/packages/booking/src/navigation/HomeNavigator.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-import React from 'react';
-import {createNativeStackNavigator} from '@react-navigation/native-stack';
-import HomeScreen from '../screens/HomeScreen';
-import NavBar from '../components/NavBar';
-import UpcomingScreen from '../screens/UpcomingScreen';
-
-export type HomeStackParamList = {
- Home: undefined;
- Upcoming: undefined;
-};
-
-const Home = createNativeStackNavigator();
-
-const HomeNavigator = () => {
- return (
-
-
-
-
- );
-};
-
-export default HomeNavigator;
diff --git a/packages/booking/src/navigation/MainNavigator.tsx b/packages/booking/src/navigation/MainNavigator.tsx
deleted file mode 100644
index 879e9e29..00000000
--- a/packages/booking/src/navigation/MainNavigator.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import React from 'react';
-import {createNativeStackNavigator} from '@react-navigation/native-stack';
-import TabsNavigator from './TabsNavigator';
-
-export type MainStackParamList = {
- Tabs: undefined;
- Booking: undefined;
-};
-
-const Main = createNativeStackNavigator();
-
-const MainNavigator = () => {
- return (
-
-
-
- );
-};
-
-export default MainNavigator;
diff --git a/packages/booking/src/navigation/TabsNavigator.tsx b/packages/booking/src/navigation/TabsNavigator.tsx
deleted file mode 100644
index 74a62db5..00000000
--- a/packages/booking/src/navigation/TabsNavigator.tsx
+++ /dev/null
@@ -1,55 +0,0 @@
-import React from 'react';
-import {createNativeBottomTabNavigator} from '@bottom-tabs/react-navigation';
-import {MD3Colors} from 'react-native-paper';
-import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
-import HomeNavigator from './HomeNavigator';
-import CalendarNavigator from './CalendarNavigator';
-import AccountNavigator from './AccountNavigator';
-
-export type TabsParamList = {
- HomeNavigator: undefined;
- CalendarNavigator: undefined;
- AccountNavigator: undefined;
-};
-
-const homeIcon = Icon.getImageSourceSync('home', 24);
-const calendarIcon = Icon.getImageSourceSync('calendar', 24);
-const accountIcon = Icon.getImageSourceSync('account', 24);
-
-const Tabs = createNativeBottomTabNavigator();
-
-const TabsNavigator = () => {
- return (
-
- homeIcon,
- }}
- />
- calendarIcon,
- }}
- />
- accountIcon,
- }}
- />
-
- );
-};
-
-export default TabsNavigator;
diff --git a/packages/booking/src/screens/AccountScreen.tsx b/packages/booking/src/screens/AccountScreen.tsx
deleted file mode 100644
index 6d952d5e..00000000
--- a/packages/booking/src/screens/AccountScreen.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-import ErrorBoundary from '../components/ErrorBoundary';
-import Placeholder from '../components/Placeholder';
-
-const Account = React.lazy(() => import('auth/AccountScreen'));
-
-const AccountScreen = () => {
- return (
-
- }>
-
-
-
- );
-};
-
-export default AccountScreen;
diff --git a/packages/booking/src/screens/CalendarScreen.tsx b/packages/booking/src/screens/CalendarScreen.tsx
deleted file mode 100644
index 49ccea1a..00000000
--- a/packages/booking/src/screens/CalendarScreen.tsx
+++ /dev/null
@@ -1,79 +0,0 @@
-import React, {useCallback, useMemo, useState} from 'react';
-import {FlatList, StyleSheet, View} from 'react-native';
-import {CalendarList, CalendarUtils, DateData} from 'react-native-calendars';
-import {FAB, List, MD3Colors} from 'react-native-paper';
-import recentBookings from '../data/recentBookings.json';
-
-const INITIAL_DATE = CalendarUtils.getCalendarDateString(new Date());
-
-const renderAppointment = ({item}: any) => (
- }
- />
-);
-
-const CalendarScreen = () => {
- const [selected, setSelected] = useState(INITIAL_DATE);
-
- const marked = useMemo(() => {
- return {
- [selected]: {
- selected: true,
- disableTouchEvent: true,
- },
- [INITIAL_DATE]: {
- selected: true,
- selectedColor: MD3Colors.primary50,
- },
- };
- }, [selected]);
-
- const onDayPress = useCallback((day: DateData) => {
- setSelected(day.dateString);
- }, []);
-
- return (
-
-
-
- {}}
- />
-
- );
-};
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: '#fff',
- },
- fab: {
- position: 'absolute',
- right: 0,
- margin: 16,
- bottom: 0,
- },
-});
-
-export default CalendarScreen;
diff --git a/packages/booking/src/screens/HomeScreen.tsx b/packages/booking/src/screens/HomeScreen.tsx
deleted file mode 100644
index d278b452..00000000
--- a/packages/booking/src/screens/HomeScreen.tsx
+++ /dev/null
@@ -1,147 +0,0 @@
-import React from 'react';
-import {
- Alert,
- FlatList,
- ListRenderItem,
- ScrollView,
- StyleSheet,
- View,
-} from 'react-native';
-import {CompositeScreenProps} from '@react-navigation/native';
-import {NativeStackScreenProps} from '@react-navigation/native-stack';
-import {NativeBottomTabScreenProps} from '@bottom-tabs/react-navigation';
-import {Avatar, Card, Button, Divider, Text} from 'react-native-paper';
-import {TabsParamList} from '../navigation/TabsNavigator';
-import {HomeStackParamList} from '../navigation/HomeNavigator';
-import upcomingBookings from '../data/upcomingBookings.json';
-import recentBookings from '../data/recentBookings.json';
-import featuredServices from '../data/featuredServices.json';
-
-type Props = CompositeScreenProps<
- NativeStackScreenProps,
- NativeBottomTabScreenProps
->;
-
-const renderAppointment = ({item}: any) => (
-
- }
- />
-
- {}}>
- Cancel
-
- {}}>
- Reschedule
-
-
-
-);
-
-const renderService: ListRenderItem = ({item, index}) => (
-
-
-
-
-);
-
-const renderDivider = () => ;
-
-const HomeScreen = ({navigation}: Props) => {
- return (
-
-
-
- Featured Services
-
- Alert.alert('Not implemented yet')}>
- See All
-
-
-
-
-
- Upcoming Appointments
-
- navigation.navigate('Upcoming')}>
- See All
-
-
-
-
-
- Recent Appointments
-
- Alert.alert('Not implemented yet')}>
- See All
-
-
-
-
- );
-};
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: '#fff',
- },
- contentContainer: {
- paddingHorizontal: 16,
- },
- divider: {
- backgroundColor: 'transparent',
- width: 16,
- },
- header: {
- padding: 16,
- flexDirection: 'row',
- alignItems: 'center',
- },
- headerTitle: {
- flex: 1,
- },
- cardWidth: {
- width: 270,
- },
-});
-
-export default HomeScreen;
diff --git a/packages/booking/src/screens/UpcomingScreen.tsx b/packages/booking/src/screens/UpcomingScreen.tsx
deleted file mode 100644
index 65e10749..00000000
--- a/packages/booking/src/screens/UpcomingScreen.tsx
+++ /dev/null
@@ -1,54 +0,0 @@
-import React from 'react';
-import {FlatList, StyleSheet} from 'react-native';
-import {Avatar, Button, Card, Divider} from 'react-native-paper';
-import upcomingBookings from '../data/upcomingBookings.json';
-
-const renderItem = ({item}: any) => (
-
- }
- />
-
- {}}>
- Cancel
-
- {}}>
- Reschedule
-
-
-
-);
-
-const renderDivider = () => ;
-
-const UpcomingScreen = () => {
- return (
-
- );
-};
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: '#fff',
- },
- contentContainer: {
- padding: 16,
- },
- divider: {
- backgroundColor: 'transparent',
- height: 8,
- },
-});
-
-export default UpcomingScreen;
diff --git a/packages/booking/tsconfig.json b/packages/booking/tsconfig.json
deleted file mode 100644
index 511c11be..00000000
--- a/packages/booking/tsconfig.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "extends": "@react-native/typescript-config",
- "compilerOptions": {
- "types": ["jest"],
- "module": "es2020",
- "paths": {
- "*": ["./@mf-types/*"]
- }
- },
- "include": ["**/*.ts", "**/*.tsx", "./@mf-types/*"],
- "exclude": ["**/node_modules", "**/Pods"]
-}
diff --git a/packages/dashboard/.bundle/config b/packages/dashboard/.bundle/config
deleted file mode 100644
index 848943bb..00000000
--- a/packages/dashboard/.bundle/config
+++ /dev/null
@@ -1,2 +0,0 @@
-BUNDLE_PATH: "vendor/bundle"
-BUNDLE_FORCE_RUBY_PLATFORM: 1
diff --git a/packages/dashboard/.gitignore b/packages/dashboard/.gitignore
deleted file mode 100644
index 728a0eb2..00000000
--- a/packages/dashboard/.gitignore
+++ /dev/null
@@ -1,68 +0,0 @@
-# OSX
-#
-.DS_Store
-
-# Xcode
-#
-build/
-*.pbxuser
-!default.pbxuser
-*.mode1v3
-!default.mode1v3
-*.mode2v3
-!default.mode2v3
-*.perspectivev3
-!default.perspectivev3
-xcuserdata
-*.xccheckout
-*.moved-aside
-DerivedData
-*.hmap
-*.ipa
-*.xcuserstate
-**/.xcode.env.local
-
-
-# Android/IntelliJ
-#
-build/
-.idea
-.gradle
-local.properties
-*.iml
-*.hprof
-.cxx/
-*.keystore
-!debug.keystore
-.kotlin/
-
-# node.js
-#
-node_modules/
-npm-debug.log
-yarn-error.log
-
-# fastlane
-#
-# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
-# screenshots whenever they are needed.
-# For more information about the recommended setup visit:
-# https://docs.fastlane.tools/best-practices/source-control/
-
-**/fastlane/report.xml
-**/fastlane/Preview.html
-**/fastlane/screenshots
-**/fastlane/test_output
-
-# Bundle artifact
-*.jsbundle
-
-# Ruby / CocoaPods
-**/Pods/
-/vendor/bundle/
-
-# Temporary files created by Metro to check the health of the file watcher
-.metro-health-check*
-
-# dist dir
-dist/
\ No newline at end of file
diff --git a/packages/dashboard/.prettierrc.js b/packages/dashboard/.prettierrc.js
deleted file mode 100644
index 2b540746..00000000
--- a/packages/dashboard/.prettierrc.js
+++ /dev/null
@@ -1,7 +0,0 @@
-module.exports = {
- arrowParens: 'avoid',
- bracketSameLine: true,
- bracketSpacing: false,
- singleQuote: true,
- trailingComma: 'all',
-};
diff --git a/packages/dashboard/.watchmanconfig b/packages/dashboard/.watchmanconfig
deleted file mode 100644
index 9e26dfee..00000000
--- a/packages/dashboard/.watchmanconfig
+++ /dev/null
@@ -1 +0,0 @@
-{}
\ No newline at end of file
diff --git a/packages/dashboard/Gemfile b/packages/dashboard/Gemfile
deleted file mode 100644
index 6a4c5f17..00000000
--- a/packages/dashboard/Gemfile
+++ /dev/null
@@ -1,16 +0,0 @@
-source 'https://rubygems.org'
-
-# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
-ruby ">= 2.6.10"
-
-# Exclude problematic versions of cocoapods and activesupport that causes build failures.
-gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
-gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
-gem 'xcodeproj', '< 1.26.0'
-gem 'concurrent-ruby', '< 1.3.4'
-
-# Ruby 3.4.0 has removed some libraries from the standard library.
-gem 'bigdecimal'
-gem 'logger'
-gem 'benchmark'
-gem 'mutex_m'
diff --git a/packages/dashboard/Gemfile.lock b/packages/dashboard/Gemfile.lock
deleted file mode 100644
index a89b6684..00000000
--- a/packages/dashboard/Gemfile.lock
+++ /dev/null
@@ -1,120 +0,0 @@
-GEM
- remote: https://rubygems.org/
- specs:
- CFPropertyList (3.0.7)
- base64
- nkf
- rexml
- activesupport (7.1.4.2)
- base64
- bigdecimal
- concurrent-ruby (~> 1.0, >= 1.0.2)
- connection_pool (>= 2.2.5)
- drb
- i18n (>= 1.6, < 2)
- minitest (>= 5.1)
- mutex_m
- tzinfo (~> 2.0)
- addressable (2.8.7)
- public_suffix (>= 2.0.2, < 7.0)
- algoliasearch (1.27.5)
- httpclient (~> 2.8, >= 2.8.3)
- json (>= 1.5.1)
- atomos (0.1.3)
- base64 (0.2.0)
- benchmark (0.5.0)
- bigdecimal (3.1.8)
- claide (1.1.0)
- cocoapods (1.15.2)
- addressable (~> 2.8)
- claide (>= 1.0.2, < 2.0)
- cocoapods-core (= 1.15.2)
- cocoapods-deintegrate (>= 1.0.3, < 2.0)
- cocoapods-downloader (>= 2.1, < 3.0)
- cocoapods-plugins (>= 1.0.0, < 2.0)
- cocoapods-search (>= 1.0.0, < 2.0)
- cocoapods-trunk (>= 1.6.0, < 2.0)
- cocoapods-try (>= 1.1.0, < 2.0)
- colored2 (~> 3.1)
- escape (~> 0.0.4)
- fourflusher (>= 2.3.0, < 3.0)
- gh_inspector (~> 1.0)
- molinillo (~> 0.8.0)
- nap (~> 1.0)
- ruby-macho (>= 2.3.0, < 3.0)
- xcodeproj (>= 1.23.0, < 2.0)
- cocoapods-core (1.15.2)
- activesupport (>= 5.0, < 8)
- addressable (~> 2.8)
- algoliasearch (~> 1.0)
- concurrent-ruby (~> 1.1)
- fuzzy_match (~> 2.0.4)
- nap (~> 1.0)
- netrc (~> 0.11)
- public_suffix (~> 4.0)
- typhoeus (~> 1.0)
- cocoapods-deintegrate (1.0.5)
- cocoapods-downloader (2.1)
- cocoapods-plugins (1.0.0)
- nap
- cocoapods-search (1.0.1)
- cocoapods-trunk (1.6.0)
- nap (>= 0.8, < 2.0)
- netrc (~> 0.11)
- cocoapods-try (1.2.0)
- colored2 (3.1.2)
- concurrent-ruby (1.3.3)
- connection_pool (2.4.1)
- drb (2.2.1)
- escape (0.0.4)
- ethon (0.16.0)
- ffi (>= 1.15.0)
- ffi (1.17.0)
- fourflusher (2.3.1)
- fuzzy_match (2.0.4)
- gh_inspector (1.1.3)
- httpclient (2.8.3)
- i18n (1.14.6)
- concurrent-ruby (~> 1.0)
- json (2.7.4)
- logger (1.7.0)
- minitest (5.25.1)
- molinillo (0.8.0)
- mutex_m (0.2.0)
- nanaimo (0.3.0)
- nap (1.1.0)
- netrc (0.11.0)
- nkf (0.2.0)
- public_suffix (4.0.7)
- rexml (3.3.9)
- ruby-macho (2.5.1)
- typhoeus (1.4.1)
- ethon (>= 0.9.0)
- tzinfo (2.0.6)
- concurrent-ruby (~> 1.0)
- xcodeproj (1.25.1)
- CFPropertyList (>= 2.3.3, < 4.0)
- atomos (~> 0.1.3)
- claide (>= 1.0.2, < 2.0)
- colored2 (~> 3.1)
- nanaimo (~> 0.3.0)
- rexml (>= 3.3.6, < 4.0)
-
-PLATFORMS
- ruby
-
-DEPENDENCIES
- activesupport (>= 6.1.7.5, != 7.1.0)
- benchmark
- bigdecimal
- cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
- concurrent-ruby (< 1.3.4)
- logger
- mutex_m
- xcodeproj (< 1.26.0)
-
-RUBY VERSION
- ruby 2.7.6p219
-
-BUNDLED WITH
- 2.4.20
diff --git a/packages/dashboard/README.md b/packages/dashboard/README.md
deleted file mode 100644
index 1a8ad981..00000000
--- a/packages/dashboard/README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# Dashboard Application
-
-This is mini app for handling business management flow. Dashboard exposes `MainNavigator`. `MainNavigator` is Dashboard app itself. Dashboard app uses auth logic and UI (`SignInScreen`, `AccountScreen`) from Auth remote module, so we suggest to run Auth dev server to prevent issues with Dashboard app. If Auth dev server will no be run, Dashboard app will not work as standalone app.
-
-## Setup
-
-Install dependencies for all apps in root directory of this monorepo:
-
-```
-pnpm install
-```
-
-Install pods:
-
-```
-pnpm pods
-```
-
-Pods might sometimes be outdated, and they might fail to install, in that case you can update them by running:
-
-```
-pnpm pods:update
-```
-
-### Run
-
-Start dev server for all apps in root directory of this monorepo if you need to work as a part of host app. Dashboard app server will run on 9002 port:
-
-```
-pnpm start
-```
diff --git a/packages/dashboard/android/app/build.gradle b/packages/dashboard/android/app/build.gradle
deleted file mode 100644
index cb0dde11..00000000
--- a/packages/dashboard/android/app/build.gradle
+++ /dev/null
@@ -1,131 +0,0 @@
-apply plugin: "com.android.application"
-apply plugin: "org.jetbrains.kotlin.android"
-apply plugin: "com.facebook.react"
-
-// [super-app-showcase change]
-// pnpm compliant way to resolve node modules path
-apply from: "../../node_modules/super-app-showcase-sdk/android/resolveNodePackage.gradle"
-
-def reactNativePath = resolveNodePackage('react-native', rootDir)
-def codegenPath = resolveNodePackage('@react-native/codegen', reactNativePath)
-
-/**
- * This is the configuration block to customize your React Native Android app.
- * By default you don't need to apply any configuration, just uncomment the lines you need.
- */
-react {
- /* Folders */
- // The root of your project, i.e. where "package.json" lives. Default is '../..'
- // root = file("../../")
- // The folder where the react-native NPM package is. Default is ../../node_modules/react-native
- // reactNativeDir = file("../../node_modules/react-native")
- // The folder where the react-native Codegen package is. Default is ../../node_modules/react-native-codegen
- codegenDir = codegenPath
- // The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js
- // cliFile = file("../../node_modules/react-native/cli.js")
- /* Variants */
- // The list of variants to that are debuggable. For those we're going to
- // skip the bundling of the JS bundle and the assets. Default is "debug", "debugOptimized".
- // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
- // debuggableVariants = ["liteDebug", "liteDebugOptimized", "prodDebug", "prodDebugOptimized"]
- /* Bundling */
- // A list containing the node command and its flags. Default is just 'node'.
- // nodeExecutableAndArgs = ["node"]
- //
- // The command to run when bundling. By default is 'bundle'
- bundleCommand = "bundle"
- //
- // The path to the CLI configuration file. Default is empty.
- // bundleConfig = file(../rn-cli.config.js)
- //
- // The name of the generated asset file containing your JS bundle
- // bundleAssetName = "MyApplication.android.bundle"
- //
- // The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
- // entryFile = file("../js/MyApplication.android.js")
- //
- // A list of extra flags to pass to the 'bundle' commands.
- // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
- // extraPackagerArgs = []
- /* Hermes Commands */
- // The hermes compiler command to run. By default it is 'hermesc'
- // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
- //
- // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
- // hermesFlags = ["-O", "-output-source-map"]
- /* Autolinking */
- autolinkLibrariesWithApp()
-}
-
-project.ext.vectoricons = [
- iconFontsDir: "../../node_modules/react-native-vector-icons/Fonts",
-]
-
-apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
-
-/**
- * Set this to true to Run Proguard on Release builds to minify the Java bytecode.
- */
-def enableProguardInReleaseBuilds = false
-
-/**
- * The preferred build flavor of JavaScriptCore (JSC)
- *
- * For example, to use the international variant, you can use:
- * `def jscFlavor = io.github.react-native-community:jsc-android-intl:2026004.+`
- *
- * The international variant includes ICU i18n library and necessary data
- * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
- * give correct results when using with locales other than en-US. Note that
- * this variant is about 6MiB larger per architecture than default.
- */
-def jscFlavor = 'io.github.react-native-community:jsc-android:2026004.+'
-
-
-android {
- ndkVersion rootProject.ext.ndkVersion
- buildToolsVersion rootProject.ext.buildToolsVersion
- compileSdk rootProject.ext.compileSdkVersion
-
- namespace "com.dashboard"
- defaultConfig {
- applicationId "com.dashboard"
- minSdkVersion rootProject.ext.minSdkVersion
- targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 1
- versionName "1.0"
- }
-
- signingConfigs {
- debug {
- storeFile file('debug.keystore')
- storePassword 'android'
- keyAlias 'androiddebugkey'
- keyPassword 'android'
- }
- }
- buildTypes {
- debug {
- signingConfig signingConfigs.debug
- }
- release {
- // Caution! In production, you need to generate your own keystore file.
- // see https://reactnative.dev/docs/signed-apk-android.
- signingConfig signingConfigs.debug
- minifyEnabled enableProguardInReleaseBuilds
- proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
- }
- }
-
-}
-
-dependencies {
- // The version of react-native is set by the React Native Gradle Plugin
- implementation("com.facebook.react:react-android")
-
- if (hermesEnabled.toBoolean()) {
- implementation("com.facebook.react:hermes-android")
- } else {
- implementation jscFlavor
- }
-}
diff --git a/packages/dashboard/android/app/debug.keystore b/packages/dashboard/android/app/debug.keystore
deleted file mode 100644
index 364e105e..00000000
Binary files a/packages/dashboard/android/app/debug.keystore and /dev/null differ
diff --git a/packages/dashboard/android/app/proguard-rules.pro b/packages/dashboard/android/app/proguard-rules.pro
deleted file mode 100644
index 11b02572..00000000
--- a/packages/dashboard/android/app/proguard-rules.pro
+++ /dev/null
@@ -1,10 +0,0 @@
-# Add project specific ProGuard rules here.
-# By default, the flags in this file are appended to flags specified
-# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
-# You can edit the include path and order by changing the proguardFiles
-# directive in build.gradle.
-#
-# For more details, see
-# http://developer.android.com/guide/developing/tools/proguard.html
-
-# Add any project specific keep options here:
diff --git a/packages/dashboard/android/app/src/main/AndroidManifest.xml b/packages/dashboard/android/app/src/main/AndroidManifest.xml
deleted file mode 100644
index 78b53512..00000000
--- a/packages/dashboard/android/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/packages/dashboard/android/app/src/main/java/com/dashboard/MainActivity.kt b/packages/dashboard/android/app/src/main/java/com/dashboard/MainActivity.kt
deleted file mode 100644
index 3bc721b9..00000000
--- a/packages/dashboard/android/app/src/main/java/com/dashboard/MainActivity.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.dashboard
-
-import com.facebook.react.ReactActivity
-import com.facebook.react.ReactActivityDelegate
-import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
-import com.facebook.react.defaults.DefaultReactActivityDelegate
-
-class MainActivity : ReactActivity() {
-
- /**
- * Returns the name of the main component registered from JavaScript. This is used to schedule
- * rendering of the component.
- */
- override fun getMainComponentName(): String = "dashboard"
-
- /**
- * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
- * which allows you to enable New Architecture with a single boolean flags [fabricEnabled]
- */
- override fun createReactActivityDelegate(): ReactActivityDelegate =
- DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled)
-}
\ No newline at end of file
diff --git a/packages/dashboard/android/app/src/main/java/com/dashboard/MainApplication.kt b/packages/dashboard/android/app/src/main/java/com/dashboard/MainApplication.kt
deleted file mode 100644
index c9a742c3..00000000
--- a/packages/dashboard/android/app/src/main/java/com/dashboard/MainApplication.kt
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.dashboard
-
-import android.app.Application
-import com.facebook.react.PackageList
-import com.facebook.react.ReactApplication
-import com.facebook.react.ReactHost
-import com.facebook.react.ReactNativeApplicationEntryPoint.loadReactNative
-import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
-
-class MainApplication : Application(), ReactApplication {
-
- override val reactHost: ReactHost by lazy {
- getDefaultReactHost(
- context = applicationContext,
- packageList =
- PackageList(this).packages.apply {
- // Packages that cannot be autolinked yet can be added manually here, for example:
- // add(MyReactNativePackage())
- },
- )
- }
-
- override fun onCreate() {
- super.onCreate()
- loadReactNative(this)
- }
-}
diff --git a/packages/dashboard/android/app/src/main/res/drawable/rn_edit_text_material.xml b/packages/dashboard/android/app/src/main/res/drawable/rn_edit_text_material.xml
deleted file mode 100644
index 58336319..00000000
--- a/packages/dashboard/android/app/src/main/res/drawable/rn_edit_text_material.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/packages/dashboard/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/packages/dashboard/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index a2f59082..00000000
Binary files a/packages/dashboard/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/packages/dashboard/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/packages/dashboard/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
deleted file mode 100644
index 1b523998..00000000
Binary files a/packages/dashboard/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ
diff --git a/packages/dashboard/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/packages/dashboard/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index ff10afd6..00000000
Binary files a/packages/dashboard/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/packages/dashboard/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/packages/dashboard/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
deleted file mode 100644
index 115a4c76..00000000
Binary files a/packages/dashboard/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ
diff --git a/packages/dashboard/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/packages/dashboard/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index dcd3cd80..00000000
Binary files a/packages/dashboard/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/packages/dashboard/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/packages/dashboard/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
deleted file mode 100644
index 459ca609..00000000
Binary files a/packages/dashboard/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/packages/dashboard/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/packages/dashboard/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 8ca12fe0..00000000
Binary files a/packages/dashboard/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/packages/dashboard/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/packages/dashboard/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
deleted file mode 100644
index 8e19b410..00000000
Binary files a/packages/dashboard/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/packages/dashboard/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/packages/dashboard/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index b824ebdd..00000000
Binary files a/packages/dashboard/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/packages/dashboard/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/packages/dashboard/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
deleted file mode 100644
index 4c19a13c..00000000
Binary files a/packages/dashboard/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/packages/dashboard/android/app/src/main/res/values/strings.xml b/packages/dashboard/android/app/src/main/res/values/strings.xml
deleted file mode 100644
index 5df95f13..00000000
--- a/packages/dashboard/android/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
- dashboard
-
diff --git a/packages/dashboard/android/app/src/main/res/values/styles.xml b/packages/dashboard/android/app/src/main/res/values/styles.xml
deleted file mode 100644
index dfb77a82..00000000
--- a/packages/dashboard/android/app/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
diff --git a/packages/dashboard/android/build.gradle b/packages/dashboard/android/build.gradle
deleted file mode 100644
index f192211f..00000000
--- a/packages/dashboard/android/build.gradle
+++ /dev/null
@@ -1,29 +0,0 @@
-buildscript {
- ext {
- buildToolsVersion = "36.0.0"
- minSdkVersion = 24
- compileSdkVersion = 36
- targetSdkVersion = 36
- ndkVersion = "27.1.12297006"
- kotlinVersion = "2.1.20"
- }
- repositories {
- google()
- mavenCentral()
- }
- dependencies {
- classpath("com.android.tools.build:gradle")
- classpath("com.facebook.react:react-native-gradle-plugin")
- classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
- }
-}
-
-allprojects {
- repositories {
- maven {
- url = uri(project(":react-native-async-storage_async-storage").file("local_repo"))
- }
- }
-}
-
-apply plugin: "com.facebook.react.rootproject"
diff --git a/packages/dashboard/android/gradle.properties b/packages/dashboard/android/gradle.properties
deleted file mode 100644
index 9afe6159..00000000
--- a/packages/dashboard/android/gradle.properties
+++ /dev/null
@@ -1,44 +0,0 @@
-# Project-wide Gradle settings.
-
-# IDE (e.g. Android Studio) users:
-# Gradle settings configured through the IDE *will override*
-# any settings specified in this file.
-
-# For more details on how to configure your build environment visit
-# http://www.gradle.org/docs/current/userguide/build_environment.html
-
-# Specifies the JVM arguments used for the daemon process.
-# The setting is particularly useful for tweaking memory settings.
-# Default value: -Xmx512m -XX:MaxMetaspaceSize=256m
-org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
-
-# When configured, Gradle will run in incubating parallel mode.
-# This option should only be used with decoupled projects. More details, visit
-# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
-# org.gradle.parallel=true
-
-# AndroidX package structure to make it clearer which packages are bundled with the
-# Android operating system, and which are packaged with your app's APK
-# https://developer.android.com/topic/libraries/support-library/androidx-rn
-android.useAndroidX=true
-
-# Use this property to specify which architecture you want to build.
-# You can also override it from the CLI using
-# ./gradlew -PreactNativeArchitectures=x86_64
-reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
-
-# Use this property to enable support to the new architecture.
-# This will allow you to use TurboModules and the Fabric render in
-# your application. You should enable this flag either if you want
-# to write custom TurboModules/Fabric components OR use libraries that
-# are providing them.
-newArchEnabled=true
-
-# Use this property to enable or disable the Hermes JS engine.
-# If set to false, you will be using JSC instead.
-hermesEnabled=true
-
-# Use this property to enable edge-to-edge display support.
-# This allows your app to draw behind system bars for an immersive UI.
-# Note: Only works with ReactActivity and should not be used with custom Activity.
-edgeToEdgeEnabled=false
diff --git a/packages/dashboard/android/gradle/wrapper/gradle-wrapper.jar b/packages/dashboard/android/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 8bdaf60c..00000000
Binary files a/packages/dashboard/android/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/packages/dashboard/android/gradle/wrapper/gradle-wrapper.properties b/packages/dashboard/android/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index 2a84e188..00000000
--- a/packages/dashboard/android/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,7 +0,0 @@
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
-networkTimeout=10000
-validateDistributionUrl=true
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
diff --git a/packages/dashboard/android/gradlew b/packages/dashboard/android/gradlew
deleted file mode 100755
index ef07e016..00000000
--- a/packages/dashboard/android/gradlew
+++ /dev/null
@@ -1,251 +0,0 @@
-#!/bin/sh
-
-#
-# Copyright © 2015 the original authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# https://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-# SPDX-License-Identifier: Apache-2.0
-#
-
-##############################################################################
-#
-# Gradle start up script for POSIX generated by Gradle.
-#
-# Important for running:
-#
-# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
-# noncompliant, but you have some other compliant shell such as ksh or
-# bash, then to run this script, type that shell name before the whole
-# command line, like:
-#
-# ksh Gradle
-#
-# Busybox and similar reduced shells will NOT work, because this script
-# requires all of these POSIX shell features:
-# * functions;
-# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
-# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
-# * compound commands having a testable exit status, especially «case»;
-# * various built-in commands including «command», «set», and «ulimit».
-#
-# Important for patching:
-#
-# (2) This script targets any POSIX shell, so it avoids extensions provided
-# by Bash, Ksh, etc; in particular arrays are avoided.
-#
-# The "traditional" practice of packing multiple parameters into a
-# space-separated string is a well documented source of bugs and security
-# problems, so this is (mostly) avoided, by progressively accumulating
-# options in "$@", and eventually passing that to Java.
-#
-# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
-# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
-# see the in-line comments for details.
-#
-# There are tweaks for specific operating systems such as AIX, CygWin,
-# Darwin, MinGW, and NonStop.
-#
-# (3) This script is generated from the Groovy template
-# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
-# within the Gradle project.
-#
-# You can find Gradle at https://github.com/gradle/gradle/.
-#
-##############################################################################
-
-# Attempt to set APP_HOME
-
-# Resolve links: $0 may be a link
-app_path=$0
-
-# Need this for daisy-chained symlinks.
-while
- APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
- [ -h "$app_path" ]
-do
- ls=$( ls -ld "$app_path" )
- link=${ls#*' -> '}
- case $link in #(
- /*) app_path=$link ;; #(
- *) app_path=$APP_HOME$link ;;
- esac
-done
-
-# This is normally unused
-# shellcheck disable=SC2034
-APP_BASE_NAME=${0##*/}
-# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
-APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD=maximum
-
-warn () {
- echo "$*"
-} >&2
-
-die () {
- echo
- echo "$*"
- echo
- exit 1
-} >&2
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-nonstop=false
-case "$( uname )" in #(
- CYGWIN* ) cygwin=true ;; #(
- Darwin* ) darwin=true ;; #(
- MSYS* | MINGW* ) msys=true ;; #(
- NONSTOP* ) nonstop=true ;;
-esac
-
-CLASSPATH="\\\"\\\""
-
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD=$JAVA_HOME/jre/sh/java
- else
- JAVACMD=$JAVA_HOME/bin/java
- fi
- if [ ! -x "$JAVACMD" ] ; then
- die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-else
- JAVACMD=java
- if ! command -v java >/dev/null 2>&1
- then
- die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-fi
-
-# Increase the maximum file descriptors if we can.
-if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
- case $MAX_FD in #(
- max*)
- # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
- # shellcheck disable=SC2039,SC3045
- MAX_FD=$( ulimit -H -n ) ||
- warn "Could not query maximum file descriptor limit"
- esac
- case $MAX_FD in #(
- '' | soft) :;; #(
- *)
- # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
- # shellcheck disable=SC2039,SC3045
- ulimit -n "$MAX_FD" ||
- warn "Could not set maximum file descriptor limit to $MAX_FD"
- esac
-fi
-
-# Collect all arguments for the java command, stacking in reverse order:
-# * args from the command line
-# * the main class name
-# * -classpath
-# * -D...appname settings
-# * --module-path (only if needed)
-# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
-
-# For Cygwin or MSYS, switch paths to Windows format before running java
-if "$cygwin" || "$msys" ; then
- APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
- CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
-
- JAVACMD=$( cygpath --unix "$JAVACMD" )
-
- # Now convert the arguments - kludge to limit ourselves to /bin/sh
- for arg do
- if
- case $arg in #(
- -*) false ;; # don't mess with options #(
- /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
- [ -e "$t" ] ;; #(
- *) false ;;
- esac
- then
- arg=$( cygpath --path --ignore --mixed "$arg" )
- fi
- # Roll the args list around exactly as many times as the number of
- # args, so each arg winds up back in the position where it started, but
- # possibly modified.
- #
- # NB: a `for` loop captures its iteration list before it begins, so
- # changing the positional parameters here affects neither the number of
- # iterations, nor the values presented in `arg`.
- shift # remove old arg
- set -- "$@" "$arg" # push replacement arg
- done
-fi
-
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
-
-# Collect all arguments for the java command:
-# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
-# and any embedded shellness will be escaped.
-# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
-# treated as '${Hostname}' itself on the command line.
-
-set -- \
- "-Dorg.gradle.appname=$APP_BASE_NAME" \
- -classpath "$CLASSPATH" \
- -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
- "$@"
-
-# Stop when "xargs" is not available.
-if ! command -v xargs >/dev/null 2>&1
-then
- die "xargs is not available"
-fi
-
-# Use "xargs" to parse quoted args.
-#
-# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
-#
-# In Bash we could simply go:
-#
-# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
-# set -- "${ARGS[@]}" "$@"
-#
-# but POSIX shell has neither arrays nor command substitution, so instead we
-# post-process each arg (as a line of input to sed) to backslash-escape any
-# character that might be a shell metacharacter, then use eval to reverse
-# that process (while maintaining the separation between arguments), and wrap
-# the whole thing up as a single "set" statement.
-#
-# This will of course break if any of these variables contains a newline or
-# an unmatched quote.
-#
-
-eval "set -- $(
- printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
- xargs -n1 |
- sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
- tr '\n' ' '
- )" '"$@"'
-
-exec "$JAVACMD" "$@"
diff --git a/packages/dashboard/android/gradlew.bat b/packages/dashboard/android/gradlew.bat
deleted file mode 100644
index 11bf1829..00000000
--- a/packages/dashboard/android/gradlew.bat
+++ /dev/null
@@ -1,99 +0,0 @@
-@REM Copyright (c) Meta Platforms, Inc. and affiliates.
-@REM
-@REM This source code is licensed under the MIT license found in the
-@REM LICENSE file in the root directory of this source tree.
-
-@rem
-@rem Copyright 2015 the original author or authors.
-@rem
-@rem Licensed under the Apache License, Version 2.0 (the "License");
-@rem you may not use this file except in compliance with the License.
-@rem You may obtain a copy of the License at
-@rem
-@rem https://www.apache.org/licenses/LICENSE-2.0
-@rem
-@rem Unless required by applicable law or agreed to in writing, software
-@rem distributed under the License is distributed on an "AS IS" BASIS,
-@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-@rem See the License for the specific language governing permissions and
-@rem limitations under the License.
-@rem
-@rem SPDX-License-Identifier: Apache-2.0
-@rem
-
-@if "%DEBUG%"=="" @echo off
-@rem ##########################################################################
-@rem
-@rem Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-set DIRNAME=%~dp0
-if "%DIRNAME%"=="" set DIRNAME=.
-@rem This is normally unused
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@rem Resolve any "." and ".." in APP_HOME to make it shorter.
-for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if %ERRORLEVEL% equ 0 goto execute
-
-echo. 1>&2
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
-echo. 1>&2
-echo Please set the JAVA_HOME variable in your environment to match the 1>&2
-echo location of your Java installation. 1>&2
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto execute
-
-echo. 1>&2
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
-echo. 1>&2
-echo Please set the JAVA_HOME variable in your environment to match the 1>&2
-echo location of your Java installation. 1>&2
-
-goto fail
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=
-
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
-
-:end
-@rem End local scope for the variables with windows NT shell
-if %ERRORLEVEL% equ 0 goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-set EXIT_CODE=%ERRORLEVEL%
-if %EXIT_CODE% equ 0 set EXIT_CODE=1
-if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
-exit /b %EXIT_CODE%
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/packages/dashboard/android/settings.gradle b/packages/dashboard/android/settings.gradle
deleted file mode 100644
index 3a796300..00000000
--- a/packages/dashboard/android/settings.gradle
+++ /dev/null
@@ -1,18 +0,0 @@
-pluginManagement {
- apply from: "../node_modules/super-app-showcase-sdk/android/resolveNodePackage.gradle"
- // [super-app-showcase change]
- // resolve react-native-gradle-plugin & CLI dynamically
- def reactNativePath = resolveNodePackage('react-native', rootDir)
- def gradlePluginPath = resolveNodePackage('@react-native/gradle-plugin', reactNativePath)
- // expose gradlePluginPath outside of pluginManagement block
- settings.ext.gradlePluginPath = gradlePluginPath.path
- includeBuild(gradlePluginPath.path)
-}
-
-plugins { id("com.facebook.react.settings") }
-extensions.configure(com.facebook.react.ReactSettingsExtension) { ex -> ex.autolinkLibrariesFromCommand() }
-
-rootProject.name = 'dashboard'
-
-include ':app'
-includeBuild(ext.gradlePluginPath)
diff --git a/packages/dashboard/app.json b/packages/dashboard/app.json
deleted file mode 100644
index 47e86da0..00000000
--- a/packages/dashboard/app.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "dashboard",
- "displayName": "dashboard"
-}
\ No newline at end of file
diff --git a/packages/dashboard/babel.config.js b/packages/dashboard/babel.config.js
deleted file mode 100644
index f7b3da3b..00000000
--- a/packages/dashboard/babel.config.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = {
- presets: ['module:@react-native/babel-preset'],
-};
diff --git a/packages/dashboard/index.js b/packages/dashboard/index.js
deleted file mode 100644
index 16e2dbb0..00000000
--- a/packages/dashboard/index.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import {ScriptManager} from '@callstack/repack/client';
-import {AppRegistry} from 'react-native';
-import App from './src/App';
-import {name as appName} from './app.json';
-import AsyncStorage from '@react-native-async-storage/async-storage';
-
-// Only set storage caching in production
-// @todo: fix this to be reliable in both dev and prod
-if (!__DEV__) {
- ScriptManager.shared.setStorage(AsyncStorage);
-}
-
-AppRegistry.registerComponent(appName, () => App);
diff --git a/packages/dashboard/ios/.xcode.env b/packages/dashboard/ios/.xcode.env
deleted file mode 100644
index 3d5782c7..00000000
--- a/packages/dashboard/ios/.xcode.env
+++ /dev/null
@@ -1,11 +0,0 @@
-# This `.xcode.env` file is versioned and is used to source the environment
-# used when running script phases inside Xcode.
-# To customize your local environment, you can create an `.xcode.env.local`
-# file that is not versioned.
-
-# NODE_BINARY variable contains the PATH to the node executable.
-#
-# Customize the NODE_BINARY variable here.
-# For example, to use nvm with brew, add the following line
-# . "$(brew --prefix nvm)/nvm.sh" --no-use
-export NODE_BINARY=$(command -v node)
diff --git a/packages/dashboard/ios/AppDelegate.swift b/packages/dashboard/ios/AppDelegate.swift
deleted file mode 100644
index 87d3dd0f..00000000
--- a/packages/dashboard/ios/AppDelegate.swift
+++ /dev/null
@@ -1,48 +0,0 @@
-import React
-import ReactAppDependencyProvider
-import React_RCTAppDelegate
-import UIKit
-
-@main
-class AppDelegate: UIResponder, UIApplicationDelegate {
- var window: UIWindow?
-
- var reactNativeDelegate: ReactNativeDelegate?
- var reactNativeFactory: RCTReactNativeFactory?
-
- func application(
- _ application: UIApplication,
- didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
- ) -> Bool {
- let delegate = ReactNativeDelegate()
- let factory = RCTReactNativeFactory(delegate: delegate)
- delegate.dependencyProvider = RCTAppDependencyProvider()
-
- reactNativeDelegate = delegate
- reactNativeFactory = factory
-
- window = UIWindow(frame: UIScreen.main.bounds)
-
- factory.startReactNative(
- withModuleName: "dashboard",
- in: window,
- launchOptions: launchOptions
- )
-
- return true
- }
-}
-
-class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
- override func sourceURL(for bridge: RCTBridge) -> URL? {
- self.bundleURL()
- }
-
- override func bundleURL() -> URL? {
- #if DEBUG
- RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index")
- #else
- Bundle.main.url(forResource: "main", withExtension: "jsbundle")
- #endif
- }
-}
diff --git a/packages/dashboard/ios/Podfile b/packages/dashboard/ios/Podfile
deleted file mode 100644
index 4962766c..00000000
--- a/packages/dashboard/ios/Podfile
+++ /dev/null
@@ -1,36 +0,0 @@
-# require_relative '../node_modules/super-app-showcase-sdk/ios/react_native_setup.rb'
-require Pod::Executable.execute_command('node', ['-p',
- 'require.resolve(
- "react-native/scripts/react_native_pods.rb",
- {paths: [process.argv[1]]},
- )', __dir__]).strip
-
-platform :ios, min_ios_version_supported
-prepare_react_native_project!
-
-linkage = ENV['USE_FRAMEWORKS']
-if linkage != nil
- Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
- use_frameworks! :linkage => linkage.to_sym
-end
-
-target 'dashboard' do
- config = use_native_modules!
-
- use_react_native!(
- # An absolute path to your application root.
- :app_path => "#{Pod::Config.instance.installation_root}/.."
- )
-
- pod 'SDWebImage', :modular_headers => true
- pod 'SDWebImageSVGCoder', :modular_headers => true
-
- post_install do |installer|
- react_native_post_install(
- installer,
- config[:reactNativePath],
- :mac_catalyst_enabled => false,
- # :ccache_enabled => true
- )
- end
-end
diff --git a/packages/dashboard/ios/Podfile.lock b/packages/dashboard/ios/Podfile.lock
deleted file mode 100644
index cf675a4e..00000000
--- a/packages/dashboard/ios/Podfile.lock
+++ /dev/null
@@ -1,2372 +0,0 @@
-PODS:
- - AsyncStorage (3.0.2):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFabric
- - React-renderercss
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - callstack-repack (5.2.5):
- - hermes-engine
- - JWTDecode (~> 3.0.0)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFabric
- - React-renderercss
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - SwiftyRSA (~> 1.7)
- - Yoga
- - FBLazyVector (0.84.1)
- - hermes-engine (250829098.0.9):
- - hermes-engine/Pre-built (= 250829098.0.9)
- - hermes-engine/Pre-built (250829098.0.9)
- - JWTDecode (3.0.1)
- - RCTDeprecation (0.84.1)
- - RCTRequired (0.84.1)
- - RCTSwiftUI (0.84.1)
- - RCTSwiftUIWrapper (0.84.1):
- - RCTSwiftUI
- - RCTTypeSafety (0.84.1):
- - FBLazyVector (= 0.84.1)
- - RCTRequired (= 0.84.1)
- - React-Core (= 0.84.1)
- - React (0.84.1):
- - React-Core (= 0.84.1)
- - React-Core/DevSupport (= 0.84.1)
- - React-Core/RCTWebSocket (= 0.84.1)
- - React-RCTActionSheet (= 0.84.1)
- - React-RCTAnimation (= 0.84.1)
- - React-RCTBlob (= 0.84.1)
- - React-RCTImage (= 0.84.1)
- - React-RCTLinking (= 0.84.1)
- - React-RCTNetwork (= 0.84.1)
- - React-RCTSettings (= 0.84.1)
- - React-RCTText (= 0.84.1)
- - React-RCTVibration (= 0.84.1)
- - React-callinvoker (0.84.1)
- - React-Core (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default (= 0.84.1)
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core-prebuilt (0.84.1):
- - ReactNativeDependencies
- - React-Core/CoreModulesHeaders (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/Default (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/DevSupport (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default (= 0.84.1)
- - React-Core/RCTWebSocket (= 0.84.1)
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/RCTActionSheetHeaders (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/RCTAnimationHeaders (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/RCTBlobHeaders (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/RCTImageHeaders (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/RCTLinkingHeaders (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/RCTNetworkHeaders (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/RCTSettingsHeaders (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/RCTTextHeaders (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/RCTVibrationHeaders (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-Core/RCTWebSocket (0.84.1):
- - hermes-engine
- - RCTDeprecation
- - React-Core-prebuilt
- - React-Core/Default (= 0.84.1)
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-CoreModules (0.84.1):
- - RCTTypeSafety (= 0.84.1)
- - React-Core-prebuilt
- - React-Core/CoreModulesHeaders (= 0.84.1)
- - React-debug
- - React-jsi (= 0.84.1)
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsinspectortracing
- - React-NativeModulesApple
- - React-RCTBlob
- - React-RCTFBReactNativeSpec
- - React-RCTImage (= 0.84.1)
- - React-runtimeexecutor
- - React-utils
- - ReactCommon
- - ReactNativeDependencies
- - React-cxxreact (0.84.1):
- - hermes-engine
- - React-callinvoker (= 0.84.1)
- - React-Core-prebuilt
- - React-debug (= 0.84.1)
- - React-jsi (= 0.84.1)
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsinspectortracing
- - React-logger (= 0.84.1)
- - React-perflogger (= 0.84.1)
- - React-runtimeexecutor
- - React-timing (= 0.84.1)
- - React-utils
- - ReactNativeDependencies
- - React-debug (0.84.1)
- - React-defaultsnativemodule (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-domnativemodule
- - React-featureflags
- - React-featureflagsnativemodule
- - React-idlecallbacksnativemodule
- - React-intersectionobservernativemodule
- - React-jsi
- - React-jsiexecutor
- - React-microtasksnativemodule
- - React-RCTFBReactNativeSpec
- - React-webperformancenativemodule
- - ReactNativeDependencies
- - Yoga
- - React-domnativemodule (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-Fabric
- - React-Fabric/bridging
- - React-FabricComponents
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-RCTFBReactNativeSpec
- - React-runtimeexecutor
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-Fabric (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric/animated (= 0.84.1)
- - React-Fabric/animationbackend (= 0.84.1)
- - React-Fabric/animations (= 0.84.1)
- - React-Fabric/attributedstring (= 0.84.1)
- - React-Fabric/bridging (= 0.84.1)
- - React-Fabric/componentregistry (= 0.84.1)
- - React-Fabric/componentregistrynative (= 0.84.1)
- - React-Fabric/components (= 0.84.1)
- - React-Fabric/consistency (= 0.84.1)
- - React-Fabric/core (= 0.84.1)
- - React-Fabric/dom (= 0.84.1)
- - React-Fabric/imagemanager (= 0.84.1)
- - React-Fabric/leakchecker (= 0.84.1)
- - React-Fabric/mounting (= 0.84.1)
- - React-Fabric/observers (= 0.84.1)
- - React-Fabric/scheduler (= 0.84.1)
- - React-Fabric/telemetry (= 0.84.1)
- - React-Fabric/templateprocessor (= 0.84.1)
- - React-Fabric/uimanager (= 0.84.1)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/animated (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/animationbackend (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/animations (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/attributedstring (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/bridging (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/componentregistry (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/componentregistrynative (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/components (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric/components/legacyviewmanagerinterop (= 0.84.1)
- - React-Fabric/components/root (= 0.84.1)
- - React-Fabric/components/scrollview (= 0.84.1)
- - React-Fabric/components/view (= 0.84.1)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/components/legacyviewmanagerinterop (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/components/root (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/components/scrollview (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/components/view (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-renderercss
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-Fabric/consistency (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/core (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/dom (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/imagemanager (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/leakchecker (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/mounting (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/observers (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric/observers/events (= 0.84.1)
- - React-Fabric/observers/intersection (= 0.84.1)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/observers/events (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/observers/intersection (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/scheduler (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric/observers/events
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-performancecdpmetrics
- - React-performancetimeline
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/telemetry (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/templateprocessor (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/uimanager (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric/uimanager/consistency (= 0.84.1)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererconsistency
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-Fabric/uimanager/consistency (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererconsistency
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-FabricComponents (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-FabricComponents/components (= 0.84.1)
- - React-FabricComponents/textlayoutmanager (= 0.84.1)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-FabricComponents/components/inputaccessory (= 0.84.1)
- - React-FabricComponents/components/iostextinput (= 0.84.1)
- - React-FabricComponents/components/modal (= 0.84.1)
- - React-FabricComponents/components/rncore (= 0.84.1)
- - React-FabricComponents/components/safeareaview (= 0.84.1)
- - React-FabricComponents/components/scrollview (= 0.84.1)
- - React-FabricComponents/components/switch (= 0.84.1)
- - React-FabricComponents/components/text (= 0.84.1)
- - React-FabricComponents/components/textinput (= 0.84.1)
- - React-FabricComponents/components/unimplementedview (= 0.84.1)
- - React-FabricComponents/components/virtualview (= 0.84.1)
- - React-FabricComponents/components/virtualviewexperimental (= 0.84.1)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/inputaccessory (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/iostextinput (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/modal (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/rncore (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/safeareaview (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/scrollview (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/switch (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/text (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/textinput (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/unimplementedview (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/virtualview (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/components/virtualviewexperimental (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricComponents/textlayoutmanager (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-RCTFBReactNativeSpec
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-FabricImage (0.84.1):
- - hermes-engine
- - RCTRequired (= 0.84.1)
- - RCTTypeSafety (= 0.84.1)
- - React-Core-prebuilt
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-jsiexecutor (= 0.84.1)
- - React-logger
- - React-rendererdebug
- - React-utils
- - ReactCommon
- - ReactNativeDependencies
- - Yoga
- - React-featureflags (0.84.1):
- - React-Core-prebuilt
- - ReactNativeDependencies
- - React-featureflagsnativemodule (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-featureflags
- - React-jsi
- - React-jsiexecutor
- - React-RCTFBReactNativeSpec
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-graphics (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-jsi
- - React-jsiexecutor
- - React-utils
- - ReactNativeDependencies
- - React-hermes (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-cxxreact (= 0.84.1)
- - React-jsi
- - React-jsiexecutor (= 0.84.1)
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsinspectortracing
- - React-jsitooling
- - React-oscompat
- - React-perflogger (= 0.84.1)
- - React-runtimeexecutor
- - ReactNativeDependencies
- - React-idlecallbacksnativemodule (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-jsi
- - React-jsiexecutor
- - React-RCTFBReactNativeSpec
- - React-runtimeexecutor
- - React-runtimescheduler
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-ImageManager (0.84.1):
- - React-Core-prebuilt
- - React-Core/Default
- - React-debug
- - React-Fabric
- - React-graphics
- - React-rendererdebug
- - React-utils
- - ReactNativeDependencies
- - React-intersectionobservernativemodule (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-cxxreact
- - React-Fabric
- - React-Fabric/bridging
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-RCTFBReactNativeSpec
- - React-runtimeexecutor
- - React-runtimescheduler
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-jserrorhandler (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-jsi
- - ReactCommon/turbomodule/bridging
- - ReactNativeDependencies
- - React-jsi (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - ReactNativeDependencies
- - React-jsiexecutor (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-jserrorhandler
- - React-jsi
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsinspectortracing
- - React-jsitooling
- - React-perflogger
- - React-runtimeexecutor
- - React-utils
- - ReactNativeDependencies
- - React-jsinspector (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-featureflags
- - React-jsi
- - React-jsinspectorcdp
- - React-jsinspectornetwork
- - React-jsinspectortracing
- - React-oscompat
- - React-perflogger (= 0.84.1)
- - React-runtimeexecutor
- - React-utils
- - ReactNativeDependencies
- - React-jsinspectorcdp (0.84.1):
- - React-Core-prebuilt
- - ReactNativeDependencies
- - React-jsinspectornetwork (0.84.1):
- - React-Core-prebuilt
- - React-jsinspectorcdp
- - ReactNativeDependencies
- - React-jsinspectortracing (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-jsi
- - React-jsinspectornetwork
- - React-oscompat
- - React-timing
- - ReactNativeDependencies
- - React-jsitooling (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-cxxreact (= 0.84.1)
- - React-debug
- - React-jsi (= 0.84.1)
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsinspectortracing
- - React-runtimeexecutor
- - React-utils
- - ReactNativeDependencies
- - React-jsitracing (0.84.1):
- - React-jsi
- - React-logger (0.84.1):
- - React-Core-prebuilt
- - ReactNativeDependencies
- - React-Mapbuffer (0.84.1):
- - React-Core-prebuilt
- - React-debug
- - ReactNativeDependencies
- - React-microtasksnativemodule (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-jsi
- - React-jsiexecutor
- - React-RCTFBReactNativeSpec
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - react-native-bottom-tabs (1.1.0):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - react-native-bottom-tabs/common (= 1.1.0)
- - React-NativeModulesApple
- - React-RCTFabric
- - React-renderercss
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - SwiftUIIntrospect (~> 1.0)
- - Yoga
- - react-native-bottom-tabs/common (1.1.0):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFabric
- - React-renderercss
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - SwiftUIIntrospect (~> 1.0)
- - Yoga
- - react-native-safe-area-context (5.7.0):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - react-native-safe-area-context/common (= 5.7.0)
- - react-native-safe-area-context/fabric (= 5.7.0)
- - React-NativeModulesApple
- - React-RCTFabric
- - React-renderercss
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - react-native-safe-area-context/common (5.7.0):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFabric
- - React-renderercss
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - react-native-safe-area-context/fabric (5.7.0):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - react-native-safe-area-context/common
- - React-NativeModulesApple
- - React-RCTFabric
- - React-renderercss
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - React-NativeModulesApple (0.84.1):
- - hermes-engine
- - React-callinvoker
- - React-Core
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-jsi
- - React-jsinspector
- - React-jsinspectorcdp
- - React-runtimeexecutor
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - React-networking (0.84.1):
- - React-Core-prebuilt
- - React-jsinspectornetwork
- - React-jsinspectortracing
- - React-performancetimeline
- - React-timing
- - ReactNativeDependencies
- - React-oscompat (0.84.1)
- - React-perflogger (0.84.1):
- - React-Core-prebuilt
- - ReactNativeDependencies
- - React-performancecdpmetrics (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-jsi
- - React-performancetimeline
- - React-runtimeexecutor
- - React-timing
- - ReactNativeDependencies
- - React-performancetimeline (0.84.1):
- - React-Core-prebuilt
- - React-featureflags
- - React-jsinspector
- - React-jsinspectortracing
- - React-perflogger
- - React-timing
- - ReactNativeDependencies
- - React-RCTActionSheet (0.84.1):
- - React-Core/RCTActionSheetHeaders (= 0.84.1)
- - React-RCTAnimation (0.84.1):
- - RCTTypeSafety
- - React-Core-prebuilt
- - React-Core/RCTAnimationHeaders
- - React-debug
- - React-featureflags
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFBReactNativeSpec
- - ReactCommon
- - ReactNativeDependencies
- - React-RCTAppDelegate (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-CoreModules
- - React-debug
- - React-defaultsnativemodule
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-hermes
- - React-jsitooling
- - React-NativeModulesApple
- - React-RCTFabric
- - React-RCTFBReactNativeSpec
- - React-RCTImage
- - React-RCTNetwork
- - React-RCTRuntime
- - React-rendererdebug
- - React-RuntimeApple
- - React-RuntimeCore
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactCommon
- - ReactNativeDependencies
- - React-RCTBlob (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-Core/RCTBlobHeaders
- - React-Core/RCTWebSocket
- - React-jsi
- - React-jsinspector
- - React-jsinspectorcdp
- - React-NativeModulesApple
- - React-RCTFBReactNativeSpec
- - React-RCTNetwork
- - ReactCommon
- - ReactNativeDependencies
- - React-RCTFabric (0.84.1):
- - hermes-engine
- - RCTSwiftUIWrapper
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-FabricComponents
- - React-FabricImage
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsinspectortracing
- - React-networking
- - React-performancecdpmetrics
- - React-performancetimeline
- - React-RCTAnimation
- - React-RCTFBReactNativeSpec
- - React-RCTImage
- - React-RCTText
- - React-rendererconsistency
- - React-renderercss
- - React-rendererdebug
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - Yoga
- - React-RCTFBReactNativeSpec (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFBReactNativeSpec/components (= 0.84.1)
- - ReactCommon
- - ReactNativeDependencies
- - React-RCTFBReactNativeSpec/components (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-NativeModulesApple
- - React-rendererdebug
- - React-utils
- - ReactCommon
- - ReactNativeDependencies
- - Yoga
- - React-RCTImage (0.84.1):
- - RCTTypeSafety
- - React-Core-prebuilt
- - React-Core/RCTImageHeaders
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFBReactNativeSpec
- - React-RCTNetwork
- - ReactCommon
- - ReactNativeDependencies
- - React-RCTLinking (0.84.1):
- - React-Core/RCTLinkingHeaders (= 0.84.1)
- - React-jsi (= 0.84.1)
- - React-NativeModulesApple
- - React-RCTFBReactNativeSpec
- - ReactCommon
- - ReactCommon/turbomodule/core (= 0.84.1)
- - React-RCTNetwork (0.84.1):
- - RCTTypeSafety
- - React-Core-prebuilt
- - React-Core/RCTNetworkHeaders
- - React-debug
- - React-featureflags
- - React-jsi
- - React-jsinspectorcdp
- - React-jsinspectornetwork
- - React-NativeModulesApple
- - React-networking
- - React-RCTFBReactNativeSpec
- - ReactCommon
- - ReactNativeDependencies
- - React-RCTRuntime (0.84.1):
- - hermes-engine
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-jsi
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsinspectortracing
- - React-jsitooling
- - React-RuntimeApple
- - React-RuntimeCore
- - React-runtimeexecutor
- - React-RuntimeHermes
- - React-utils
- - ReactNativeDependencies
- - React-RCTSettings (0.84.1):
- - RCTTypeSafety
- - React-Core-prebuilt
- - React-Core/RCTSettingsHeaders
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFBReactNativeSpec
- - ReactCommon
- - ReactNativeDependencies
- - React-RCTText (0.84.1):
- - React-Core/RCTTextHeaders (= 0.84.1)
- - Yoga
- - React-RCTVibration (0.84.1):
- - React-Core-prebuilt
- - React-Core/RCTVibrationHeaders
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFBReactNativeSpec
- - ReactCommon
- - ReactNativeDependencies
- - React-rendererconsistency (0.84.1)
- - React-renderercss (0.84.1):
- - React-debug
- - React-utils
- - React-rendererdebug (0.84.1):
- - React-Core-prebuilt
- - React-debug
- - ReactNativeDependencies
- - React-RuntimeApple (0.84.1):
- - hermes-engine
- - React-callinvoker
- - React-Core-prebuilt
- - React-Core/Default
- - React-CoreModules
- - React-cxxreact
- - React-featureflags
- - React-jserrorhandler
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsitooling
- - React-Mapbuffer
- - React-NativeModulesApple
- - React-RCTFabric
- - React-RCTFBReactNativeSpec
- - React-RuntimeCore
- - React-runtimeexecutor
- - React-RuntimeHermes
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - React-RuntimeCore (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-cxxreact
- - React-Fabric
- - React-featureflags
- - React-jserrorhandler
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-jsitooling
- - React-performancetimeline
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - ReactNativeDependencies
- - React-runtimeexecutor (0.84.1):
- - React-Core-prebuilt
- - React-debug
- - React-featureflags
- - React-jsi (= 0.84.1)
- - React-utils
- - ReactNativeDependencies
- - React-RuntimeHermes (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsinspector
- - React-jsinspectorcdp
- - React-jsinspectortracing
- - React-jsitooling
- - React-jsitracing
- - React-RuntimeCore
- - React-runtimeexecutor
- - React-utils
- - ReactNativeDependencies
- - React-runtimescheduler (0.84.1):
- - hermes-engine
- - React-callinvoker
- - React-Core-prebuilt
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-jsi
- - React-jsinspectortracing
- - React-performancetimeline
- - React-rendererconsistency
- - React-rendererdebug
- - React-runtimeexecutor
- - React-timing
- - React-utils
- - ReactNativeDependencies
- - React-timing (0.84.1):
- - React-debug
- - React-utils (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-debug
- - React-jsi (= 0.84.1)
- - ReactNativeDependencies
- - React-webperformancenativemodule (0.84.1):
- - hermes-engine
- - React-Core-prebuilt
- - React-cxxreact
- - React-jsi
- - React-jsiexecutor
- - React-performancetimeline
- - React-RCTFBReactNativeSpec
- - React-runtimeexecutor
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - ReactAppDependencyProvider (0.84.1):
- - ReactCodegen
- - ReactCodegen (0.84.1):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-FabricImage
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-NativeModulesApple
- - React-RCTAppDelegate
- - React-rendererdebug
- - React-utils
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - ReactCommon (0.84.1):
- - React-Core-prebuilt
- - ReactCommon/turbomodule (= 0.84.1)
- - ReactNativeDependencies
- - ReactCommon/turbomodule (0.84.1):
- - hermes-engine
- - React-callinvoker (= 0.84.1)
- - React-Core-prebuilt
- - React-cxxreact (= 0.84.1)
- - React-jsi (= 0.84.1)
- - React-logger (= 0.84.1)
- - React-perflogger (= 0.84.1)
- - ReactCommon/turbomodule/bridging (= 0.84.1)
- - ReactCommon/turbomodule/core (= 0.84.1)
- - ReactNativeDependencies
- - ReactCommon/turbomodule/bridging (0.84.1):
- - hermes-engine
- - React-callinvoker (= 0.84.1)
- - React-Core-prebuilt
- - React-cxxreact (= 0.84.1)
- - React-jsi (= 0.84.1)
- - React-logger (= 0.84.1)
- - React-perflogger (= 0.84.1)
- - ReactNativeDependencies
- - ReactCommon/turbomodule/core (0.84.1):
- - hermes-engine
- - React-callinvoker (= 0.84.1)
- - React-Core-prebuilt
- - React-cxxreact (= 0.84.1)
- - React-debug (= 0.84.1)
- - React-featureflags (= 0.84.1)
- - React-jsi (= 0.84.1)
- - React-logger (= 0.84.1)
- - React-perflogger (= 0.84.1)
- - React-utils (= 0.84.1)
- - ReactNativeDependencies
- - ReactNativeDependencies (0.84.1)
- - RNScreens (4.24.0):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFabric
- - React-RCTImage
- - React-renderercss
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - RNScreens/common (= 4.24.0)
- - Yoga
- - RNScreens/common (4.24.0):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFabric
- - React-RCTImage
- - React-renderercss
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - RNVectorIcons (10.3.0):
- - hermes-engine
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-Core-prebuilt
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-NativeModulesApple
- - React-RCTFabric
- - React-renderercss
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactNativeDependencies
- - Yoga
- - SDWebImage (5.21.6):
- - SDWebImage/Core (= 5.21.6)
- - SDWebImage/Core (5.21.6)
- - SDWebImageSVGCoder (1.8.0):
- - SDWebImage/Core (~> 5.6)
- - SwiftUIIntrospect (1.3.0)
- - SwiftyRSA (1.7.0):
- - SwiftyRSA/ObjC (= 1.7.0)
- - SwiftyRSA/ObjC (1.7.0)
- - Yoga (0.0.0)
-
-DEPENDENCIES:
- - "AsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
- - "callstack-repack (from `../node_modules/@callstack/repack`)"
- - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
- - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
- - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
- - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
- - RCTSwiftUI (from `../node_modules/react-native/ReactApple/RCTSwiftUI`)
- - RCTSwiftUIWrapper (from `../node_modules/react-native/ReactApple/RCTSwiftUIWrapper`)
- - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
- - React (from `../node_modules/react-native/`)
- - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
- - React-Core (from `../node_modules/react-native/`)
- - React-Core-prebuilt (from `../node_modules/react-native/React-Core-prebuilt.podspec`)
- - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
- - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
- - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
- - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
- - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
- - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
- - React-Fabric (from `../node_modules/react-native/ReactCommon`)
- - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
- - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
- - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
- - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
- - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
- - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
- - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
- - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
- - React-intersectionobservernativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver`)
- - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
- - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
- - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
- - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
- - React-jsinspectorcdp (from `../node_modules/react-native/ReactCommon/jsinspector-modern/cdp`)
- - React-jsinspectornetwork (from `../node_modules/react-native/ReactCommon/jsinspector-modern/network`)
- - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)
- - React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`)
- - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
- - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
- - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
- - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
- - react-native-bottom-tabs (from `../node_modules/react-native-bottom-tabs`)
- - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
- - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
- - React-networking (from `../node_modules/react-native/ReactCommon/react/networking`)
- - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`)
- - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
- - React-performancecdpmetrics (from `../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`)
- - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
- - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
- - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
- - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
- - React-RCTFabric (from `../node_modules/react-native/React`)
- - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`)
- - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
- - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
- - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
- - React-RCTRuntime (from `../node_modules/react-native/React/Runtime`)
- - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
- - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
- - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
- - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
- - React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`)
- - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
- - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
- - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
- - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
- - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
- - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
- - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
- - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
- - React-webperformancenativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`)
- - ReactAppDependencyProvider (from `build/generated/ios/ReactAppDependencyProvider`)
- - ReactCodegen (from `build/generated/ios/ReactCodegen`)
- - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
- - ReactNativeDependencies (from `../node_modules/react-native/third-party-podspecs/ReactNativeDependencies.podspec`)
- - RNScreens (from `../node_modules/react-native-screens`)
- - RNVectorIcons (from `../node_modules/react-native-vector-icons`)
- - SDWebImage
- - SDWebImageSVGCoder
- - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
-
-SPEC REPOS:
- trunk:
- - JWTDecode
- - SDWebImage
- - SDWebImageSVGCoder
- - SwiftUIIntrospect
- - SwiftyRSA
-
-EXTERNAL SOURCES:
- AsyncStorage:
- :path: "../node_modules/@react-native-async-storage/async-storage"
- callstack-repack:
- :path: "../node_modules/@callstack/repack"
- FBLazyVector:
- :path: "../node_modules/react-native/Libraries/FBLazyVector"
- hermes-engine:
- :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
- :tag: hermes-v250829098.0.9
- RCTDeprecation:
- :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
- RCTRequired:
- :path: "../node_modules/react-native/Libraries/Required"
- RCTSwiftUI:
- :path: "../node_modules/react-native/ReactApple/RCTSwiftUI"
- RCTSwiftUIWrapper:
- :path: "../node_modules/react-native/ReactApple/RCTSwiftUIWrapper"
- RCTTypeSafety:
- :path: "../node_modules/react-native/Libraries/TypeSafety"
- React:
- :path: "../node_modules/react-native/"
- React-callinvoker:
- :path: "../node_modules/react-native/ReactCommon/callinvoker"
- React-Core:
- :path: "../node_modules/react-native/"
- React-Core-prebuilt:
- :podspec: "../node_modules/react-native/React-Core-prebuilt.podspec"
- React-CoreModules:
- :path: "../node_modules/react-native/React/CoreModules"
- React-cxxreact:
- :path: "../node_modules/react-native/ReactCommon/cxxreact"
- React-debug:
- :path: "../node_modules/react-native/ReactCommon/react/debug"
- React-defaultsnativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
- React-domnativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
- React-Fabric:
- :path: "../node_modules/react-native/ReactCommon"
- React-FabricComponents:
- :path: "../node_modules/react-native/ReactCommon"
- React-FabricImage:
- :path: "../node_modules/react-native/ReactCommon"
- React-featureflags:
- :path: "../node_modules/react-native/ReactCommon/react/featureflags"
- React-featureflagsnativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
- React-graphics:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
- React-hermes:
- :path: "../node_modules/react-native/ReactCommon/hermes"
- React-idlecallbacksnativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
- React-ImageManager:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
- React-intersectionobservernativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver"
- React-jserrorhandler:
- :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
- React-jsi:
- :path: "../node_modules/react-native/ReactCommon/jsi"
- React-jsiexecutor:
- :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
- React-jsinspector:
- :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
- React-jsinspectorcdp:
- :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/cdp"
- React-jsinspectornetwork:
- :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/network"
- React-jsinspectortracing:
- :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"
- React-jsitooling:
- :path: "../node_modules/react-native/ReactCommon/jsitooling"
- React-jsitracing:
- :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
- React-logger:
- :path: "../node_modules/react-native/ReactCommon/logger"
- React-Mapbuffer:
- :path: "../node_modules/react-native/ReactCommon"
- React-microtasksnativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
- react-native-bottom-tabs:
- :path: "../node_modules/react-native-bottom-tabs"
- react-native-safe-area-context:
- :path: "../node_modules/react-native-safe-area-context"
- React-NativeModulesApple:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
- React-networking:
- :path: "../node_modules/react-native/ReactCommon/react/networking"
- React-oscompat:
- :path: "../node_modules/react-native/ReactCommon/oscompat"
- React-perflogger:
- :path: "../node_modules/react-native/ReactCommon/reactperflogger"
- React-performancecdpmetrics:
- :path: "../node_modules/react-native/ReactCommon/react/performance/cdpmetrics"
- React-performancetimeline:
- :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
- React-RCTActionSheet:
- :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
- React-RCTAnimation:
- :path: "../node_modules/react-native/Libraries/NativeAnimation"
- React-RCTAppDelegate:
- :path: "../node_modules/react-native/Libraries/AppDelegate"
- React-RCTBlob:
- :path: "../node_modules/react-native/Libraries/Blob"
- React-RCTFabric:
- :path: "../node_modules/react-native/React"
- React-RCTFBReactNativeSpec:
- :path: "../node_modules/react-native/React"
- React-RCTImage:
- :path: "../node_modules/react-native/Libraries/Image"
- React-RCTLinking:
- :path: "../node_modules/react-native/Libraries/LinkingIOS"
- React-RCTNetwork:
- :path: "../node_modules/react-native/Libraries/Network"
- React-RCTRuntime:
- :path: "../node_modules/react-native/React/Runtime"
- React-RCTSettings:
- :path: "../node_modules/react-native/Libraries/Settings"
- React-RCTText:
- :path: "../node_modules/react-native/Libraries/Text"
- React-RCTVibration:
- :path: "../node_modules/react-native/Libraries/Vibration"
- React-rendererconsistency:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
- React-renderercss:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/css"
- React-rendererdebug:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
- React-RuntimeApple:
- :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
- React-RuntimeCore:
- :path: "../node_modules/react-native/ReactCommon/react/runtime"
- React-runtimeexecutor:
- :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
- React-RuntimeHermes:
- :path: "../node_modules/react-native/ReactCommon/react/runtime"
- React-runtimescheduler:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
- React-timing:
- :path: "../node_modules/react-native/ReactCommon/react/timing"
- React-utils:
- :path: "../node_modules/react-native/ReactCommon/react/utils"
- React-webperformancenativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/webperformance"
- ReactAppDependencyProvider:
- :path: build/generated/ios/ReactAppDependencyProvider
- ReactCodegen:
- :path: build/generated/ios/ReactCodegen
- ReactCommon:
- :path: "../node_modules/react-native/ReactCommon"
- ReactNativeDependencies:
- :podspec: "../node_modules/react-native/third-party-podspecs/ReactNativeDependencies.podspec"
- RNScreens:
- :path: "../node_modules/react-native-screens"
- RNVectorIcons:
- :path: "../node_modules/react-native-vector-icons"
- Yoga:
- :path: "../node_modules/react-native/ReactCommon/yoga"
-
-SPEC CHECKSUMS:
- AsyncStorage: b9dbc3eecddb3ec3c5254c8eb57e9018724912d8
- callstack-repack: ac761bfc09e2d4c5946bcbe5d1ee7518aae8ac58
- FBLazyVector: e97c19a5a442429d1988f182a1940fb08df514da
- hermes-engine: 09800667f08d1bf10b4661e100bf5320637da57d
- JWTDecode: 2eed97c2fa46ccaf3049a787004eedf0be474a87
- RCTDeprecation: af44b104091a34482596cd9bd7e8d90c4e9b4bd7
- RCTRequired: bb77b070f75f53398ce43c0aaaa58337cebe2bf6
- RCTSwiftUI: afc0a0a635860da1040a0b894bfd529da06d7810
- RCTSwiftUIWrapper: cbb32eb90f09bd42ea9ed1eecd51fef3294da673
- RCTTypeSafety: d13e192a37f151ce354641184bf4239844a3be17
- React: 1ba7d364ade7d883a1ec055bfc3606f35fdee17b
- React-callinvoker: bc2a26f8d84fb01f003fc6de6c9337b64715f95b
- React-Core: bdaa87b276ca31877632a982ecf7c36f8c826414
- React-Core-prebuilt: 47f5d8d31e9dad5227dee69c6c9b5ea4846aa1ff
- React-CoreModules: b24989f62d56390ae08ca4f65e6f38fe6802de42
- React-cxxreact: 1a2dfcbc18a6b610664dba152adf327f063a0d12
- React-debug: 755200a6e7f5e6e0a40ff8d215493d43cce285fc
- React-defaultsnativemodule: 027cad46a2847719b5d3d20dd915463b06a5d4d1
- React-domnativemodule: 5ddfc6b3b73b48a31dfa12f52d6b62527f6f260c
- React-Fabric: 6ffcc768e2378e84ed428069c7e2d270ee78f2bf
- React-FabricComponents: ee6614287222dd4f04fdb1263d1ae6eb7fe952c6
- React-FabricImage: ab05740a08ad9e23e4e1701e9c354e9a9b048063
- React-featureflags: a8b0c8d9a93b5903f7620408659de160d95e4efe
- React-featureflagsnativemodule: 0f0fe1a044829f31d7565a4bdfded376fbcfdfc1
- React-graphics: c497dd295c88729525a4752d524d2d783aa205d4
- React-hermes: c2bde95033e6df1599b5c1b6d7e45736a8aa5cba
- React-idlecallbacksnativemodule: 6ceacabe93be052bbe822fb018602f63a8e280e2
- React-ImageManager: 820fe1d55add59ec053099a0c5abe830ecd6c699
- React-intersectionobservernativemodule: f84958aaf662f95f837dc4d26cbb5e7dcc4b8f09
- React-jserrorhandler: 390c6c46e2f639b5ba104385d7fba848396347e8
- React-jsi: 382de7964299bbf878458006a14f52cb66a36cfc
- React-jsiexecutor: b781400a9becfb24e36ac063dccb42a52dcb44ca
- React-jsinspector: 0644f32cc9b09eae2bc845ceb58d03420ae70821
- React-jsinspectorcdp: 96677569865afe25c737889e02d635db26131d9f
- React-jsinspectornetwork: 28c7cac2e92b1739561dcffd07f5554e54050a85
- React-jsinspectortracing: 58ee96f9580a143011f8b914ad6927b5116461a7
- React-jsitooling: bc79639489d610c35731dd26e8e54c37e078996d
- React-jsitracing: 1bb9fae4f2ccf891255a419cdfc13372d07ef4a5
- React-logger: 517377b1d2ba7ac722d47fb2183b98de86632063
- React-Mapbuffer: 45e088dfb58dc326ae20cca1814d3726553c4cad
- React-microtasksnativemodule: ab9d1a05fe1f58ea44a97d307ef1b53463f45a3f
- react-native-bottom-tabs: 484fe90c49d4d7d547d15ae78f4de75492a395fa
- react-native-safe-area-context: 29044d05d61f2c60d0828c373bd0ebe17eed58d0
- React-NativeModulesApple: b94faa2dce6d8c0a9d722ed7ee27b996d28b62d1
- React-networking: e409d8fb062162da6293e98b77f8d80cf4430e07
- React-oscompat: ff26abf0ae3e3fdbe47b44224571e3fc7226a573
- React-perflogger: 757c8c725cc20e94eba406885047f03cf83044fb
- React-performancecdpmetrics: fec7e28b711c95ccb6fc7e3bb16572d88bcf27ae
- React-performancetimeline: 4c6102f19df01db35c37a3e63a058cfbf1a056d9
- React-RCTActionSheet: fc1d5d419856868e7f8c13c14591ed63dadef43a
- React-RCTAnimation: 1ce166ec15ab1f8eca8ebaae7f8f709d9be6958c
- React-RCTAppDelegate: c752d93f597168a9a4d5678e9354bbb8d84df6d1
- React-RCTBlob: 147d41ee9f80cf27fe9b2f7adc1d6d24f68ec3fc
- React-RCTFabric: 712c4ad749a43712609011d178234c90a17cde12
- React-RCTFBReactNativeSpec: 032ea8783dc27290ec6b9af9d8df5351847539a2
- React-RCTImage: fd39f1c478f1e43357bc72c2dbdc2454aafe4035
- React-RCTLinking: 02ca1c83536dab08130f5db4852f293c53885dd6
- React-RCTNetwork: 85dc64c530e4b0be7436f9a15b03caba24e9a3a1
- React-RCTRuntime: c75950caa80e6884cbf0417d8738992256890508
- React-RCTSettings: df5da31865cc1bab7ef5314e65ca18f6b538d71d
- React-RCTText: 41587e426883c9a83fd8eb0c57fe328aad4ed57a
- React-RCTVibration: 8ca2f9839c53416dffb584adb94501431ba7f96e
- React-rendererconsistency: e91aba4bb482dac127ad955dba6333a8af629c5b
- React-renderercss: 1f15a79f3cc3c9416902b8f70266408116d93bd0
- React-rendererdebug: 77dcf1490ee5c0ce141d2b1eaceed02aa0996826
- React-RuntimeApple: 1074835708500a69770b713f718400137f30ce7a
- React-RuntimeCore: 148db945742d7ce2985cc35b8ddc61edfdb46e6d
- React-runtimeexecutor: 5742146dac0f8de9c21f5f703993df249c046d0d
- React-RuntimeHermes: a5bb378bea92d526341a65afa945a38c9bc787b2
- React-runtimescheduler: 91838dd32460920ed1b4da68590a2684b784aacc
- React-timing: 9c0e2b1532317148fa0487bbc3833c1f348981a0
- React-utils: 2f8dd43fed5c6d881ac5971666bbb34cc4a03fa1
- React-webperformancenativemodule: afbee7a9fd0b5bf92f6765eb41767f865b293bcc
- ReactAppDependencyProvider: 26bbf1e26768d08dd965a2b5e372e53f67b21fee
- ReactCodegen: cac18d8d019ac167415438d199aa944954b1b874
- ReactCommon: 309419492d417c4cbb87af06f67735afa40ecb9d
- ReactNativeDependencies: 3b93836d3ce58094a3b2514dc2af3aaaeccec499
- RNScreens: 088d923c4327c63c9f8c942cae17a9d038f47d97
- RNVectorIcons: af977c18ed27deba54ed038b439fca2911a08cfc
- SDWebImage: 1bb6a1b84b6fe87b972a102bdc77dd589df33477
- SDWebImageSVGCoder: 8e10c8f6cc879c7dfb317b284e13dd589379f01c
- SwiftUIIntrospect: fee9aa07293ee280373a591e1824e8ddc869ba5d
- SwiftyRSA: 8c6dd1ea7db1b8dc4fb517a202f88bb1354bc2c6
- Yoga: c0b3f2c7e8d3e327e450223a2414ca3fa296b9a2
-
-PODFILE CHECKSUM: c2fbbcb541e61a9ce35d29ec587f557734da3bfe
-
-COCOAPODS: 1.15.2
diff --git a/packages/dashboard/ios/PrivacyInfo.xcprivacy b/packages/dashboard/ios/PrivacyInfo.xcprivacy
deleted file mode 100644
index 41b8317f..00000000
--- a/packages/dashboard/ios/PrivacyInfo.xcprivacy
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
- NSPrivacyAccessedAPITypes
-
-
- NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategoryFileTimestamp
- NSPrivacyAccessedAPITypeReasons
-
- C617.1
-
-
-
- NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategoryUserDefaults
- NSPrivacyAccessedAPITypeReasons
-
- CA92.1
-
-
-
- NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategorySystemBootTime
- NSPrivacyAccessedAPITypeReasons
-
- 35F9.1
-
-
-
- NSPrivacyCollectedDataTypes
-
- NSPrivacyTracking
-
-
-
diff --git a/packages/dashboard/ios/dashboard.xcodeproj/project.pbxproj b/packages/dashboard/ios/dashboard.xcodeproj/project.pbxproj
deleted file mode 100644
index 5cd02da0..00000000
--- a/packages/dashboard/ios/dashboard.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,509 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 54;
- objects = {
-
-/* Begin PBXBuildFile section */
- 0C80B921A6F3F58F76C31292 /* libPods-dashboard.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-dashboard.a */; };
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
- 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
- B39E15AA2D9BCE5900326657 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B39E15A92D9BCE5900326657 /* AppDelegate.swift */; };
- C04BDCF4CE0CF54A9C593911 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 22A7F12A7700F42CC890B316 /* PrivacyInfo.xcprivacy */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXFileReference section */
- 13B07F961A680F5B00A75B9A /* dashboard.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = dashboard.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = dashboard/Images.xcassets; sourceTree = ""; };
- 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = dashboard/Info.plist; sourceTree = ""; };
- 19F6CBCC0A4E27FBF8BF4A61 /* libPods-dashboard-dashboardTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-dashboard-dashboardTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 22A7F12A7700F42CC890B316 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = dashboard/PrivacyInfo.xcprivacy; sourceTree = ""; };
- 3B4392A12AC88292D35C810B /* Pods-dashboard.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-dashboard.debug.xcconfig"; path = "Target Support Files/Pods-dashboard/Pods-dashboard.debug.xcconfig"; sourceTree = ""; };
- 5709B34CF0A7D63546082F79 /* Pods-dashboard.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-dashboard.release.xcconfig"; path = "Target Support Files/Pods-dashboard/Pods-dashboard.release.xcconfig"; sourceTree = ""; };
- 5B7EB9410499542E8C5724F5 /* Pods-dashboard-dashboardTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-dashboard-dashboardTests.debug.xcconfig"; path = "Target Support Files/Pods-dashboard-dashboardTests/Pods-dashboard-dashboardTests.debug.xcconfig"; sourceTree = ""; };
- 5DCACB8F33CDC322A6C60F78 /* libPods-dashboard.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-dashboard.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = dashboard/LaunchScreen.storyboard; sourceTree = ""; };
- 89C6BE57DB24E9ADA2F236DE /* Pods-dashboard-dashboardTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-dashboard-dashboardTests.release.xcconfig"; path = "Target Support Files/Pods-dashboard-dashboardTests/Pods-dashboard-dashboardTests.release.xcconfig"; sourceTree = ""; };
- B39E15A92D9BCE5900326657 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 0C80B921A6F3F58F76C31292 /* libPods-dashboard.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 13B07FAE1A68108700A75B9A /* dashboard */ = {
- isa = PBXGroup;
- children = (
- B39E15A92D9BCE5900326657 /* AppDelegate.swift */,
- 13B07FB51A68108700A75B9A /* Images.xcassets */,
- 13B07FB61A68108700A75B9A /* Info.plist */,
- 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
- 22A7F12A7700F42CC890B316 /* PrivacyInfo.xcprivacy */,
- );
- name = dashboard;
- sourceTree = "";
- };
- 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
- 5DCACB8F33CDC322A6C60F78 /* libPods-dashboard.a */,
- 19F6CBCC0A4E27FBF8BF4A61 /* libPods-dashboard-dashboardTests.a */,
- );
- name = Frameworks;
- sourceTree = "";
- };
- 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
- isa = PBXGroup;
- children = (
- );
- name = Libraries;
- sourceTree = "";
- };
- 83CBB9F61A601CBA00E9B192 = {
- isa = PBXGroup;
- children = (
- 13B07FAE1A68108700A75B9A /* dashboard */,
- 832341AE1AAA6A7D00B99B32 /* Libraries */,
- 83CBBA001A601CBA00E9B192 /* Products */,
- 2D16E6871FA4F8E400B85C8A /* Frameworks */,
- BBD78D7AC51CEA395F1C20DB /* Pods */,
- );
- indentWidth = 2;
- sourceTree = "";
- tabWidth = 2;
- usesTabs = 0;
- };
- 83CBBA001A601CBA00E9B192 /* Products */ = {
- isa = PBXGroup;
- children = (
- 13B07F961A680F5B00A75B9A /* dashboard.app */,
- );
- name = Products;
- sourceTree = "";
- };
- BBD78D7AC51CEA395F1C20DB /* Pods */ = {
- isa = PBXGroup;
- children = (
- 3B4392A12AC88292D35C810B /* Pods-dashboard.debug.xcconfig */,
- 5709B34CF0A7D63546082F79 /* Pods-dashboard.release.xcconfig */,
- 5B7EB9410499542E8C5724F5 /* Pods-dashboard-dashboardTests.debug.xcconfig */,
- 89C6BE57DB24E9ADA2F236DE /* Pods-dashboard-dashboardTests.release.xcconfig */,
- );
- path = Pods;
- sourceTree = "";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 13B07F861A680F5B00A75B9A /* dashboard */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "dashboard" */;
- buildPhases = (
- C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
- 13B07F871A680F5B00A75B9A /* Sources */,
- 13B07F8C1A680F5B00A75B9A /* Frameworks */,
- 13B07F8E1A680F5B00A75B9A /* Resources */,
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
- 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
- E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = dashboard;
- productName = dashboard;
- productReference = 13B07F961A680F5B00A75B9A /* dashboard.app */;
- productType = "com.apple.product-type.application";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 83CBB9F71A601CBA00E9B192 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 1210;
- TargetAttributes = {
- 13B07F861A680F5B00A75B9A = {
- LastSwiftMigration = 1620;
- };
- };
- };
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "dashboard" */;
- compatibilityVersion = "Xcode 12.0";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 83CBB9F61A601CBA00E9B192;
- productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 13B07F861A680F5B00A75B9A /* dashboard */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 13B07F8E1A680F5B00A75B9A /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
- C04BDCF4CE0CF54A9C593911 /* PrivacyInfo.xcprivacy in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXShellScriptBuildPhase section */
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "$(SRCROOT)/.xcode.env.local",
- "$(SRCROOT)/.xcode.env",
- );
- name = "Bundle React Native code and images";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\nexport BUNDLE_COMMAND=bundle\n\n/bin/sh -c \"\\\"$WITH_ENVIRONMENT\\\" \\\"$REACT_NATIVE_XCODE\\\"\"\n";
- };
- 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-dashboard/Pods-dashboard-frameworks-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Embed Pods Frameworks";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-dashboard/Pods-dashboard-frameworks-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-dashboard/Pods-dashboard-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-dashboard-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-dashboard/Pods-dashboard-resources-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Copy Pods Resources";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-dashboard/Pods-dashboard-resources-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-dashboard/Pods-dashboard-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
-/* End PBXShellScriptBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 13B07F871A680F5B00A75B9A /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- B39E15AA2D9BCE5900326657 /* AppDelegate.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin XCBuildConfiguration section */
- 13B07F941A680F5B00A75B9A /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-dashboard.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = 1;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = dashboard/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 15.1;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- MARKETING_VERSION = 1.0;
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = dashboard;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Debug;
- };
- 13B07F951A680F5B00A75B9A /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-dashboard.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = 1;
- INFOPLIST_FILE = dashboard/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 15.1;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- MARKETING_VERSION = 1.0;
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = dashboard;
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Release;
- };
- 83CBBA201A601CBA00E9B192 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "c++20";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
- );
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 15.1;
- LD_RUNPATH_SEARCH_PATHS = (
- /usr/lib/swift,
- "$(inherited)",
- );
- LIBRARY_SEARCH_PATHS = (
- "\"$(SDKROOT)/usr/lib/swift\"",
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
- "\"$(inherited)\"",
- );
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- OTHER_CFLAGS = (
- "$(inherited)",
- "-DRCT_REMOVE_LEGACY_ARCH=1",
- );
- OTHER_CPLUSPLUSFLAGS = (
- "$(OTHER_CFLAGS)",
- "-DFOLLY_NO_CONFIG",
- "-DFOLLY_MOBILE=1",
- "-DFOLLY_USE_LIBCPP=1",
- "-DFOLLY_CFG_NO_COROUTINES=1",
- "-DFOLLY_HAVE_CLOCK_GETTIME=1",
- "-DRCT_REMOVE_LEGACY_ARCH=1",
- );
- OTHER_LDFLAGS = (
- "$(inherited)",
- " ",
- );
- REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
- SDKROOT = iphoneos;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
- SWIFT_ENABLE_EXPLICIT_MODULES = NO;
- USE_HERMES = true;
- };
- name = Debug;
- };
- 83CBBA211A601CBA00E9B192 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "c++20";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = YES;
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 15.1;
- LD_RUNPATH_SEARCH_PATHS = (
- /usr/lib/swift,
- "$(inherited)",
- );
- LIBRARY_SEARCH_PATHS = (
- "\"$(SDKROOT)/usr/lib/swift\"",
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
- "\"$(inherited)\"",
- );
- MTL_ENABLE_DEBUG_INFO = NO;
- OTHER_CFLAGS = (
- "$(inherited)",
- "-DRCT_REMOVE_LEGACY_ARCH=1",
- );
- OTHER_CPLUSPLUSFLAGS = (
- "$(OTHER_CFLAGS)",
- "-DFOLLY_NO_CONFIG",
- "-DFOLLY_MOBILE=1",
- "-DFOLLY_USE_LIBCPP=1",
- "-DFOLLY_CFG_NO_COROUTINES=1",
- "-DFOLLY_HAVE_CLOCK_GETTIME=1",
- "-DRCT_REMOVE_LEGACY_ARCH=1",
- );
- OTHER_LDFLAGS = (
- "$(inherited)",
- " ",
- );
- REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
- SDKROOT = iphoneos;
- SWIFT_ENABLE_EXPLICIT_MODULES = NO;
- USE_HERMES = true;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "dashboard" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 13B07F941A680F5B00A75B9A /* Debug */,
- 13B07F951A680F5B00A75B9A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "dashboard" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 83CBBA201A601CBA00E9B192 /* Debug */,
- 83CBBA211A601CBA00E9B192 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
-}
diff --git a/packages/dashboard/ios/dashboard.xcodeproj/xcshareddata/xcschemes/dashboard.xcscheme b/packages/dashboard/ios/dashboard.xcodeproj/xcshareddata/xcschemes/dashboard.xcscheme
deleted file mode 100644
index 071b5fab..00000000
--- a/packages/dashboard/ios/dashboard.xcodeproj/xcshareddata/xcschemes/dashboard.xcscheme
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/packages/dashboard/ios/dashboard.xcworkspace/contents.xcworkspacedata b/packages/dashboard/ios/dashboard.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index 8527a14e..00000000
--- a/packages/dashboard/ios/dashboard.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
diff --git a/packages/dashboard/ios/dashboard.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/packages/dashboard/ios/dashboard.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
deleted file mode 100644
index 18d98100..00000000
--- a/packages/dashboard/ios/dashboard.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- IDEDidComputeMac32BitWarning
-
-
-
diff --git a/packages/dashboard/ios/dashboard/Images.xcassets/AppIcon.appiconset/Contents.json b/packages/dashboard/ios/dashboard/Images.xcassets/AppIcon.appiconset/Contents.json
deleted file mode 100644
index 81213230..00000000
--- a/packages/dashboard/ios/dashboard/Images.xcassets/AppIcon.appiconset/Contents.json
+++ /dev/null
@@ -1,53 +0,0 @@
-{
- "images" : [
- {
- "idiom" : "iphone",
- "scale" : "2x",
- "size" : "20x20"
- },
- {
- "idiom" : "iphone",
- "scale" : "3x",
- "size" : "20x20"
- },
- {
- "idiom" : "iphone",
- "scale" : "2x",
- "size" : "29x29"
- },
- {
- "idiom" : "iphone",
- "scale" : "3x",
- "size" : "29x29"
- },
- {
- "idiom" : "iphone",
- "scale" : "2x",
- "size" : "40x40"
- },
- {
- "idiom" : "iphone",
- "scale" : "3x",
- "size" : "40x40"
- },
- {
- "idiom" : "iphone",
- "scale" : "2x",
- "size" : "60x60"
- },
- {
- "idiom" : "iphone",
- "scale" : "3x",
- "size" : "60x60"
- },
- {
- "idiom" : "ios-marketing",
- "scale" : "1x",
- "size" : "1024x1024"
- }
- ],
- "info" : {
- "author" : "xcode",
- "version" : 1
- }
-}
diff --git a/packages/dashboard/ios/dashboard/Images.xcassets/Contents.json b/packages/dashboard/ios/dashboard/Images.xcassets/Contents.json
deleted file mode 100644
index 2d92bd53..00000000
--- a/packages/dashboard/ios/dashboard/Images.xcassets/Contents.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
diff --git a/packages/dashboard/ios/dashboard/Info.plist b/packages/dashboard/ios/dashboard/Info.plist
deleted file mode 100644
index 31eb8e3c..00000000
--- a/packages/dashboard/ios/dashboard/Info.plist
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
- CADisableMinimumFrameDurationOnPhone
-
- CFBundleDevelopmentRegion
- en
- CFBundleDisplayName
- dashboard
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- APPL
- CFBundleShortVersionString
- $(MARKETING_VERSION)
- CFBundleSignature
- ????
- CFBundleVersion
- $(CURRENT_PROJECT_VERSION)
- LSRequiresIPhoneOS
-
- NSAppTransportSecurity
-
- NSAllowsArbitraryLoads
-
- NSAllowsLocalNetworking
-
-
- NSLocationWhenInUseUsageDescription
-
- RCTNewArchEnabled
-
- UIAppFonts
-
- AntDesign.ttf
- Entypo.ttf
- EvilIcons.ttf
- Feather.ttf
- FontAwesome.ttf
- FontAwesome5_Brands.ttf
- FontAwesome5_Regular.ttf
- FontAwesome5_Solid.ttf
- Foundation.ttf
- Ionicons.ttf
- MaterialIcons.ttf
- MaterialCommunityIcons.ttf
- SimpleLineIcons.ttf
- Octicons.ttf
- Zocial.ttf
- Fontisto.ttf
-
- UILaunchStoryboardName
- LaunchScreen
- UIRequiredDeviceCapabilities
-
- arm64
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
-
- UISupportedInterfaceOrientations~ipad
-
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
-
- UIViewControllerBasedStatusBarAppearance
-
-
-
diff --git a/packages/dashboard/ios/dashboard/LaunchScreen.storyboard b/packages/dashboard/ios/dashboard/LaunchScreen.storyboard
deleted file mode 100644
index e5d1e741..00000000
--- a/packages/dashboard/ios/dashboard/LaunchScreen.storyboard
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/packages/dashboard/ios/dashboard/PrivacyInfo.xcprivacy b/packages/dashboard/ios/dashboard/PrivacyInfo.xcprivacy
deleted file mode 100644
index 41b8317f..00000000
--- a/packages/dashboard/ios/dashboard/PrivacyInfo.xcprivacy
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
- NSPrivacyAccessedAPITypes
-
-
- NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategoryFileTimestamp
- NSPrivacyAccessedAPITypeReasons
-
- C617.1
-
-
-
- NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategoryUserDefaults
- NSPrivacyAccessedAPITypeReasons
-
- CA92.1
-
-
-
- NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategorySystemBootTime
- NSPrivacyAccessedAPITypeReasons
-
- 35F9.1
-
-
-
- NSPrivacyCollectedDataTypes
-
- NSPrivacyTracking
-
-
-
diff --git a/packages/dashboard/jest.config.js b/packages/dashboard/jest.config.js
deleted file mode 100644
index 9480dd5b..00000000
--- a/packages/dashboard/jest.config.js
+++ /dev/null
@@ -1,10 +0,0 @@
-module.exports = {
- preset: 'react-native',
- fakeTimers: {
- enableGlobally: true,
- },
- setupFiles: ['./jest.setup.js'],
- transformIgnorePatterns: [
- 'node_modules/(?!(?:.pnpm/)?((jest-)?react-native|@react-native(-community)?|react-navigation|@react-navigation|react-native-svg))',
- ],
-};
diff --git a/packages/dashboard/jest.setup.js b/packages/dashboard/jest.setup.js
deleted file mode 100644
index 307ed9b5..00000000
--- a/packages/dashboard/jest.setup.js
+++ /dev/null
@@ -1,10 +0,0 @@
-jest.mock('@callstack/repack/client', () => ({
- Federated: {
- importModule: jest.fn((container, module) => {
- if (container === 'auth') {
- const authMock = require('../auth/mocks/federated');
- return Promise.resolve(authMock.default(module));
- }
- }),
- },
-}));
diff --git a/packages/dashboard/mocks/App.tsx b/packages/dashboard/mocks/App.tsx
deleted file mode 100644
index 3d1c7bfb..00000000
--- a/packages/dashboard/mocks/App.tsx
+++ /dev/null
@@ -1,3 +0,0 @@
-import React from 'react';
-
-export const AppMock = () => <>>;
diff --git a/packages/dashboard/mocks/federated.ts b/packages/dashboard/mocks/federated.ts
deleted file mode 100644
index e44c098d..00000000
--- a/packages/dashboard/mocks/federated.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import {AppMock} from './App';
-
-export default (module: string) => {
- switch (module) {
- case './App':
- return AppMock;
- default:
- throw new Error(`DashboardMock: unknown module: ${module}`);
- }
-};
diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json
deleted file mode 100644
index dae89be3..00000000
--- a/packages/dashboard/package.json
+++ /dev/null
@@ -1,78 +0,0 @@
-{
- "name": "dashboard",
- "version": "0.0.1",
- "private": true,
- "scripts": {
- "android": "react-native run-android",
- "ios": "react-native run-ios",
- "start": "react-native start --port 9002",
- "start:standalone": "STANDALONE=1 react-native start --port 8081",
- "test": "jest",
- "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
- "typecheck": "tsc",
- "bundle": "pnpm bundle:ios && pnpm bundle:android",
- "bundle:ios": "react-native bundle --platform ios --entry-file index.js --dev false",
- "bundle:android": "react-native bundle --platform android --entry-file index.js --dev false",
- "pods": "(cd ios && bundle install && bundle exec pod install)",
- "pods:update": "(cd ios && bundle exec pod update)",
- "align-deps": "rnx-align-deps --write",
- "check-deps": "rnx-align-deps"
- },
- "dependencies": {
- "@bottom-tabs/react-navigation": "1.1.0",
- "@module-federation/enhanced": "2.3.1",
- "@react-native-async-storage/async-storage": "3.0.2",
- "@react-navigation/native": "7.2.2",
- "@react-navigation/native-stack": "7.14.10",
- "react": "19.2.3",
- "react-native": "0.84.1",
- "react-native-bottom-tabs": "1.1.0",
- "react-native-calendars": "1.1291.1",
- "react-native-edge-to-edge": "1.8.1",
- "react-native-paper": "5.15.0",
- "react-native-safe-area-context": "5.7.0",
- "react-native-screens": "4.24.0",
- "react-native-vector-icons": "10.3.0"
- },
- "devDependencies": {
- "@babel/core": "^7.25.2",
- "@babel/preset-env": "^7.25.3",
- "@babel/runtime": "^7.25.0",
- "@callstack/repack": "5.2.5",
- "@react-native-community/cli": "20.1.0",
- "@react-native-community/cli-platform-android": "20.1.0",
- "@react-native-community/cli-platform-ios": "20.1.0",
- "@react-native/babel-preset": "0.84.1",
- "@react-native/eslint-config": "0.84.1",
- "@react-native/typescript-config": "0.84.1",
- "@rnx-kit/align-deps": "^3.4.3",
- "@rspack/core": "1.7.11",
- "@swc/helpers": "^0.5.20",
- "@types/jest": "^29.5.14",
- "@types/react": "^19.2.0",
- "@types/react-native-vector-icons": "^6.4.18",
- "@types/react-test-renderer": "^19.1.0",
- "@typescript-eslint/eslint-plugin": "^8.12.2",
- "@typescript-eslint/parser": "^8.12.2",
- "eslint": "^8.57.0",
- "jest": "^29.6.3",
- "prettier": "^2.8.8",
- "react-test-renderer": "^19.2.3",
- "super-app-showcase-sdk": "0.0.2",
- "typescript": "^5.8.3"
- },
- "rnx-kit": {
- "kitType": "app",
- "alignDeps": {
- "presets": [
- "./node_modules/super-app-showcase-sdk/preset"
- ],
- "requirements": [
- "super-app-showcase-sdk@0.0.2"
- ],
- "capabilities": [
- "super-app"
- ]
- }
- }
-}
diff --git a/packages/dashboard/react-native.config.js b/packages/dashboard/react-native.config.js
deleted file mode 100644
index cd91bac2..00000000
--- a/packages/dashboard/react-native.config.js
+++ /dev/null
@@ -1,8 +0,0 @@
-module.exports = {
- commands: require('@callstack/repack/commands/rspack'),
- project: {
- ios: {
- automaticPodsInstallation: true,
- },
- },
-};
diff --git a/packages/dashboard/rspack.config.ts b/packages/dashboard/rspack.config.ts
deleted file mode 100644
index 46b5e401..00000000
--- a/packages/dashboard/rspack.config.ts
+++ /dev/null
@@ -1,68 +0,0 @@
-import path from 'node:path';
-import {fileURLToPath} from 'node:url';
-import * as Repack from '@callstack/repack';
-import rspack from '@rspack/core';
-import {getSharedDependencies} from 'super-app-showcase-sdk';
-
-const __filename = fileURLToPath(import.meta.url);
-const __dirname = path.dirname(__filename);
-
-const STANDALONE = Boolean(process.env.STANDALONE);
-
-/**
- * Rspack configuration enhanced with Re.Pack defaults for React Native.
- *
- * Learn about Rspack configuration: https://rspack.dev/config/
- * Learn about Re.Pack configuration: https://re-pack.dev/docs/guides/configuration
- */
-
-export default Repack.defineRspackConfig(({mode, platform}) => {
- return {
- mode,
- context: __dirname,
- entry: './index.js',
- resolve: {
- ...Repack.getResolveOptions({enablePackageExports: true}),
- },
- output: {
- uniqueName: 'sas-dashboard',
- },
- module: {
- rules: [
- {
- test: /\.[cm]?[jt]sx?$/,
- use: {
- loader: '@callstack/repack/babel-swc-loader',
- parallel: true,
- options: {},
- },
- type: 'javascript/auto',
- },
- ...Repack.getAssetTransformRules({inline: !STANDALONE}),
- ],
- },
- plugins: [
- new Repack.RepackPlugin(),
- new Repack.plugins.ModuleFederationPluginV2({
- name: 'dashboard',
- filename: 'dashboard.container.js.bundle',
- dts: false,
- exposes: STANDALONE
- ? undefined
- : {'./App': './src/navigation/MainNavigator'},
- remotes: {
- auth: `auth@http://localhost:9003/${platform}/mf-manifest.json`,
- },
- shared: getSharedDependencies({eager: STANDALONE}),
- }),
- new Repack.plugins.CodeSigningPlugin({
- enabled: mode === 'production',
- privateKeyPath: path.join('..', '..', 'code-signing.pem'),
- }),
- // silence missing @react-native-masked-view optionally required by @react-navigation/elements
- new rspack.IgnorePlugin({
- resourceRegExp: /^@react-native-masked-view/,
- }),
- ],
- };
-});
diff --git a/packages/dashboard/src/App.tsx b/packages/dashboard/src/App.tsx
deleted file mode 100644
index b1b88d43..00000000
--- a/packages/dashboard/src/App.tsx
+++ /dev/null
@@ -1,40 +0,0 @@
-import React from 'react';
-import {NavigationContainer} from '@react-navigation/native';
-import MainNavigator from './navigation/MainNavigator';
-import SplashScreen from './components/SplashScreen';
-import ErrorBoundary from './components/ErrorBoundary';
-
-const AuthProvider = React.lazy(() => import('auth/AuthProvider'));
-const SignInScreen = React.lazy(() => import('auth/SignInScreen'));
-
-const App = () => {
- return (
-
- }>
-
- {(authData: {isSignout: boolean; isLoading: boolean}) => {
- if (authData.isLoading) {
- return ;
- }
-
- if (authData.isSignout) {
- return (
- }>
-
-
- );
- }
-
- return (
-
-
-
- );
- }}
-
-
-
- );
-};
-
-export default App;
diff --git a/packages/dashboard/src/__tests__/App-test.tsx b/packages/dashboard/src/__tests__/App-test.tsx
deleted file mode 100644
index 085b231a..00000000
--- a/packages/dashboard/src/__tests__/App-test.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import React from 'react';
-import renderer from 'react-test-renderer';
-
-import App from '../App';
-
-it('renders correctly', () => {
- renderer.create( );
-});
diff --git a/packages/dashboard/src/components/ErrorBoundary.tsx b/packages/dashboard/src/components/ErrorBoundary.tsx
deleted file mode 100644
index 359cdb67..00000000
--- a/packages/dashboard/src/components/ErrorBoundary.tsx
+++ /dev/null
@@ -1,59 +0,0 @@
-import React from 'react';
-import {StyleSheet, Text, SafeAreaView} from 'react-native';
-import {MD3Colors} from 'react-native-paper';
-import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
-
-type Props = {
- children: React.ReactNode;
- name: string;
-};
-
-type State = {
- hasError: boolean;
-};
-
-class ErrorBoundary extends React.Component {
- name: string;
-
- constructor(props: Props) {
- super(props);
- this.name = props.name;
- this.state = {hasError: false};
- }
-
- static getDerivedStateFromError() {
- return {hasError: true};
- }
-
- componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
- console.log(error, errorInfo);
- }
-
- render() {
- if (this.state.hasError) {
- return (
-
-
- {`Failed to load ${this.name}`}
-
- );
- }
-
- return this.props.children;
- }
-}
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- alignItems: 'center',
- },
- text: {
- fontSize: 24,
- color: MD3Colors.primary20,
- textAlign: 'center',
- },
-});
-
-export default ErrorBoundary;
diff --git a/packages/dashboard/src/components/NavBar.tsx b/packages/dashboard/src/components/NavBar.tsx
deleted file mode 100644
index 2d77508b..00000000
--- a/packages/dashboard/src/components/NavBar.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import React from 'react';
-import {NativeStackHeaderProps} from '@react-navigation/native-stack';
-import {Appbar, MD3Colors} from 'react-native-paper';
-
-const NavBar = ({navigation, back, route, options}: NativeStackHeaderProps) => {
- return (
-
- {back ? : null}
-
-
- );
-};
-
-export default NavBar;
diff --git a/packages/dashboard/src/components/Placeholder.tsx b/packages/dashboard/src/components/Placeholder.tsx
deleted file mode 100644
index d63ab4f0..00000000
--- a/packages/dashboard/src/components/Placeholder.tsx
+++ /dev/null
@@ -1,32 +0,0 @@
-import React, {FC} from 'react';
-import {SafeAreaView, StyleSheet, Text} from 'react-native';
-import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
-import {MD3Colors} from 'react-native-paper';
-
-type Props = {
- label: string;
- icon: string;
-};
-
-const Placeholder: FC = ({label, icon}) => {
- return (
-
-
- {label}
-
- );
-};
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- alignItems: 'center',
- },
- text: {
- fontSize: 24,
- color: MD3Colors.primary20,
- },
-});
-
-export default Placeholder;
diff --git a/packages/dashboard/src/components/ScreenPlaceholder.tsx b/packages/dashboard/src/components/ScreenPlaceholder.tsx
deleted file mode 100644
index 9e2630dc..00000000
--- a/packages/dashboard/src/components/ScreenPlaceholder.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import React from 'react';
-import {StyleSheet, View} from 'react-native';
-import {Text} from 'react-native-paper';
-
-const ScreenPlaceholder = () => {
- return (
-
- Not implemented yet
-
- );
-};
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- alignItems: 'center',
- },
- title: {
- fontSize: 24,
- },
-});
-
-export default ScreenPlaceholder;
diff --git a/packages/dashboard/src/components/SplashScreen.tsx b/packages/dashboard/src/components/SplashScreen.tsx
deleted file mode 100644
index 65e97f9f..00000000
--- a/packages/dashboard/src/components/SplashScreen.tsx
+++ /dev/null
@@ -1,48 +0,0 @@
-import React from 'react';
-import {StyleSheet, SafeAreaView} from 'react-native';
-import {MD3Colors, ProgressBar, Text} from 'react-native-paper';
-import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
-
-const SplashScreen = () => {
- return (
-
-
-
- Dashboard application is loading. Please wait...
-
-
-
- );
-};
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- },
- icon: {
- textAlign: 'center',
- },
- text: {
- paddingVertical: 16,
- paddingHorizontal: 32,
- fontSize: 24,
- color: MD3Colors.primary20,
- textAlign: 'center',
- },
- progress: {
- marginVertical: 16,
- marginHorizontal: 32,
- },
-});
-
-export default SplashScreen;
diff --git a/packages/dashboard/src/data/articles.json b/packages/dashboard/src/data/articles.json
deleted file mode 100644
index f373a003..00000000
--- a/packages/dashboard/src/data/articles.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "data": [
- {
- "id": "1",
- "title": "Article 1",
- "image": "https://picsum.photos/700",
- "content": "Lorem ipsum dolor sit amet consectetur adipiscing elit in taciti suscipit gravida, felis congue ad tincidunt nec habitasse erat massa potenti purus, morbi ut iaculis eget sodales quis etiam condimentum nullam vulputate. Netus penatibus etiam ultrices neque nostra augue class tincidunt dapibus libero cum odio tempor habitant, eu praesent ligula lacinia egestas eros turpis donec luctus nullam aliquet nibh orci. Hendrerit euismod massa blandit sagittis aptent mi imperdiet dictumst dui curabitur, nascetur nunc potenti vestibulum diam luctus class purus felis, phasellus primis porta per quam penatibus fringilla magnis metus."
- },
- {
- "id": "2",
- "title": "Article 2",
- "image": "https://picsum.photos/700",
- "content": "Lorem ipsum dolor sit amet consectetur adipiscing elit in taciti suscipit gravida, felis congue ad tincidunt nec habitasse erat massa potenti purus, morbi ut iaculis eget sodales quis etiam condimentum nullam vulputate. Netus penatibus etiam ultrices neque nostra augue class tincidunt dapibus libero cum odio tempor habitant, eu praesent ligula lacinia egestas eros turpis donec luctus nullam aliquet nibh orci. Hendrerit euismod massa blandit sagittis aptent mi imperdiet dictumst dui curabitur, nascetur nunc potenti vestibulum diam luctus class purus felis, phasellus primis porta per quam penatibus fringilla magnis metus."
- },
- {
- "id": "3",
- "title": "Article 3",
- "image": "https://picsum.photos/700",
- "content": "Lorem ipsum dolor sit amet consectetur adipiscing elit in taciti suscipit gravida, felis congue ad tincidunt nec habitasse erat massa potenti purus, morbi ut iaculis eget sodales quis etiam condimentum nullam vulputate. Netus penatibus etiam ultrices neque nostra augue class tincidunt dapibus libero cum odio tempor habitant, eu praesent ligula lacinia egestas eros turpis donec luctus nullam aliquet nibh orci. Hendrerit euismod massa blandit sagittis aptent mi imperdiet dictumst dui curabitur, nascetur nunc potenti vestibulum diam luctus class purus felis, phasellus primis porta per quam penatibus fringilla magnis metus."
- },
- {
- "id": "4",
- "title": "Article 4",
- "image": "https://picsum.photos/700",
- "content": "Lorem ipsum dolor sit amet consectetur adipiscing elit in taciti suscipit gravida, felis congue ad tincidunt nec habitasse erat massa potenti purus, morbi ut iaculis eget sodales quis etiam condimentum nullam vulputate. Netus penatibus etiam ultrices neque nostra augue class tincidunt dapibus libero cum odio tempor habitant, eu praesent ligula lacinia egestas eros turpis donec luctus nullam aliquet nibh orci. Hendrerit euismod massa blandit sagittis aptent mi imperdiet dictumst dui curabitur, nascetur nunc potenti vestibulum diam luctus class purus felis, phasellus primis porta per quam penatibus fringilla magnis metus."
- }
- ]
-}
\ No newline at end of file
diff --git a/packages/dashboard/src/data/bookings.json b/packages/dashboard/src/data/bookings.json
deleted file mode 100644
index 32815456..00000000
--- a/packages/dashboard/src/data/bookings.json
+++ /dev/null
@@ -1,60 +0,0 @@
-{
- "data": [
- {
- "id": "1",
- "title": "Haircut",
- "provider": "John Doe",
- "date": "01.01.2018",
- "time": "10:00"
- },
- {
- "id": "2",
- "title": "Coloring",
- "provider": "John Doe",
- "date": "02.01.2018",
- "time": "09:00"
- },
- {
- "id": "3",
- "title": "Beard trim",
- "provider": "John Doe",
- "date": "03.01.2018",
- "time": "12:00"
- },
- {
- "id": "4",
- "title": "Beard shave",
- "provider": "John Doe",
- "date": "04.01.2018",
- "time": "12:00"
- },
- {
- "id": "5",
- "title": "Haircut",
- "provider": "John Doe",
- "date": "05.01.2018",
- "time": "12:00"
- },
- {
- "id": "6",
- "title": "Haircut",
- "provider": "John Doe",
- "date": "06.01.2018",
- "time": "12:00"
- },
- {
- "id": "7",
- "title": "Nail polish",
- "provider": "John Doe",
- "date": "07.01.2018",
- "time": "12:00"
- },
- {
- "id": "8",
- "title": "Head massage",
- "provider": "John Doe",
- "date": "08.01.2018",
- "time": "12:00"
- }
- ]
-}
\ No newline at end of file
diff --git a/packages/dashboard/src/data/news.json b/packages/dashboard/src/data/news.json
deleted file mode 100644
index 400a498a..00000000
--- a/packages/dashboard/src/data/news.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "data": [
- {
- "id": "1",
- "title": "News 1",
- "image": "https://picsum.photos/700",
- "content": "Lorem ipsum dolor sit amet consectetur adipiscing elit in taciti suscipit gravida, felis congue ad tincidunt nec habitasse erat massa potenti purus, morbi ut iaculis eget sodales quis etiam condimentum nullam vulputate. Netus penatibus etiam ultrices neque nostra augue class tincidunt dapibus libero cum odio tempor habitant, eu praesent ligula lacinia egestas eros turpis donec luctus nullam aliquet nibh orci. Hendrerit euismod massa blandit sagittis aptent mi imperdiet dictumst dui curabitur, nascetur nunc potenti vestibulum diam luctus class purus felis, phasellus primis porta per quam penatibus fringilla magnis metus."
- },
- {
- "id": "2",
- "title": "News 2",
- "image": "https://picsum.photos/700",
- "content": "Lorem ipsum dolor sit amet consectetur adipiscing elit in taciti suscipit gravida, felis congue ad tincidunt nec habitasse erat massa potenti purus, morbi ut iaculis eget sodales quis etiam condimentum nullam vulputate. Netus penatibus etiam ultrices neque nostra augue class tincidunt dapibus libero cum odio tempor habitant, eu praesent ligula lacinia egestas eros turpis donec luctus nullam aliquet nibh orci. Hendrerit euismod massa blandit sagittis aptent mi imperdiet dictumst dui curabitur, nascetur nunc potenti vestibulum diam luctus class purus felis, phasellus primis porta per quam penatibus fringilla magnis metus."
- },
- {
- "id": "3",
- "title": "News 3",
- "image": "https://picsum.photos/700",
- "content": "Lorem ipsum dolor sit amet consectetur adipiscing elit in taciti suscipit gravida, felis congue ad tincidunt nec habitasse erat massa potenti purus, morbi ut iaculis eget sodales quis etiam condimentum nullam vulputate. Netus penatibus etiam ultrices neque nostra augue class tincidunt dapibus libero cum odio tempor habitant, eu praesent ligula lacinia egestas eros turpis donec luctus nullam aliquet nibh orci. Hendrerit euismod massa blandit sagittis aptent mi imperdiet dictumst dui curabitur, nascetur nunc potenti vestibulum diam luctus class purus felis, phasellus primis porta per quam penatibus fringilla magnis metus."
- },
- {
- "id": "4",
- "title": "News 4",
- "image": "https://picsum.photos/700",
- "content": "Lorem ipsum dolor sit amet consectetur adipiscing elit in taciti suscipit gravida, felis congue ad tincidunt nec habitasse erat massa potenti purus, morbi ut iaculis eget sodales quis etiam condimentum nullam vulputate. Netus penatibus etiam ultrices neque nostra augue class tincidunt dapibus libero cum odio tempor habitant, eu praesent ligula lacinia egestas eros turpis donec luctus nullam aliquet nibh orci. Hendrerit euismod massa blandit sagittis aptent mi imperdiet dictumst dui curabitur, nascetur nunc potenti vestibulum diam luctus class purus felis, phasellus primis porta per quam penatibus fringilla magnis metus."
- }
- ]
-}
\ No newline at end of file
diff --git a/packages/dashboard/src/data/products.json b/packages/dashboard/src/data/products.json
deleted file mode 100644
index 1a697ffb..00000000
--- a/packages/dashboard/src/data/products.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "data": [
- {
- "id": "1",
- "price": "100",
- "name": "Shampoo",
- "description": "Shampoo for hair",
- "image": "https://picsum.photos/700"
- },
- {
- "id": "2",
- "price": "200",
- "name": "Conditioner",
- "description": "Conditioner for hair and scalp",
- "image": "https://picsum.photos/700"
- },
- {
- "id": "3",
- "price": "300",
- "name": "Hair Oil",
- "description": "Hair Oil for hair growth",
- "image": "https://picsum.photos/700"
- },
- {
- "id": "4",
- "price": "400",
- "name": "Hair Gel",
- "description": "Hair Gel for hair styling",
- "image": "https://picsum.photos/700"
- }
- ]
-}
\ No newline at end of file
diff --git a/packages/dashboard/src/navigation/AccountNavigator.tsx b/packages/dashboard/src/navigation/AccountNavigator.tsx
deleted file mode 100644
index 98fd781a..00000000
--- a/packages/dashboard/src/navigation/AccountNavigator.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import React from 'react';
-import {createNativeStackNavigator} from '@react-navigation/native-stack';
-import NavBar from '../components/NavBar';
-import AccountScreen from '../screens/AccountScreen';
-
-export type AccountStackParamList = {
- Account: undefined;
-};
-
-const Account = createNativeStackNavigator();
-
-const AccountNavigator = () => {
- return (
-
-
-
- );
-};
-
-export default AccountNavigator;
diff --git a/packages/dashboard/src/navigation/CalendarNavigator.tsx b/packages/dashboard/src/navigation/CalendarNavigator.tsx
deleted file mode 100644
index f6387f49..00000000
--- a/packages/dashboard/src/navigation/CalendarNavigator.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import React from 'react';
-import {createNativeStackNavigator} from '@react-navigation/native-stack';
-import NavBar from '../components/NavBar';
-import CalendarScreen from '../screens/CalendarScreen';
-
-export type CalendarStackParamList = {
- Calendar: undefined;
-};
-
-const Calendar = createNativeStackNavigator();
-
-const CalendarNavigator = () => {
- return (
-
-
-
- );
-};
-
-export default CalendarNavigator;
diff --git a/packages/dashboard/src/navigation/HomeNavigator.tsx b/packages/dashboard/src/navigation/HomeNavigator.tsx
deleted file mode 100644
index 8d165000..00000000
--- a/packages/dashboard/src/navigation/HomeNavigator.tsx
+++ /dev/null
@@ -1,25 +0,0 @@
-import React from 'react';
-import {createNativeStackNavigator} from '@react-navigation/native-stack';
-import HomeScreen from '../screens/HomeScreen';
-import NavBar from '../components/NavBar';
-
-export type HomeStackParamList = {
- Home: undefined;
- Upcoming: undefined;
-};
-
-const Home = createNativeStackNavigator();
-
-const HomeNavigator = () => {
- return (
-
-
-
- );
-};
-
-export default HomeNavigator;
diff --git a/packages/dashboard/src/navigation/MainNavigator.tsx b/packages/dashboard/src/navigation/MainNavigator.tsx
deleted file mode 100644
index 0c4ca8e6..00000000
--- a/packages/dashboard/src/navigation/MainNavigator.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-import React from 'react';
-import {createNativeStackNavigator} from '@react-navigation/native-stack';
-import TabsNavigator from './TabsNavigator';
-
-export type MainStackParamList = {
- Tabs: undefined;
-};
-
-const Main = createNativeStackNavigator();
-
-const MainNavigator = () => {
- return (
-
-
-
- );
-};
-
-export default MainNavigator;
diff --git a/packages/dashboard/src/navigation/StatisticsNavigator.tsx b/packages/dashboard/src/navigation/StatisticsNavigator.tsx
deleted file mode 100644
index a774c4f3..00000000
--- a/packages/dashboard/src/navigation/StatisticsNavigator.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import React from 'react';
-import {createNativeStackNavigator} from '@react-navigation/native-stack';
-import NavBar from '../components/NavBar';
-import StatisticsScreen from '../screens/StatisticsScreen';
-
-export type StatisticsStackParamList = {
- Statistics: undefined;
-};
-
-const Statistics = createNativeStackNavigator();
-
-const StatisticsNavigator = () => {
- return (
-
-
-
- );
-};
-
-export default StatisticsNavigator;
diff --git a/packages/dashboard/src/navigation/TabsNavigator.tsx b/packages/dashboard/src/navigation/TabsNavigator.tsx
deleted file mode 100644
index 3839a09d..00000000
--- a/packages/dashboard/src/navigation/TabsNavigator.tsx
+++ /dev/null
@@ -1,65 +0,0 @@
-import React from 'react';
-import {createNativeBottomTabNavigator} from '@bottom-tabs/react-navigation';
-import {MD3Colors} from 'react-native-paper';
-import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
-import HomeNavigator from './HomeNavigator';
-import CalendarNavigator from './CalendarNavigator';
-import StatisticsNavigator from './StatisticsNavigator';
-import AccountNavigator from './AccountNavigator';
-
-export type TabsParamList = {
- HomeNavigator: undefined;
- CalendarNavigator: undefined;
- StatisticsNavigator: undefined;
- AccountNavigator: undefined;
-};
-
-const homeIcon = Icon.getImageSourceSync('home', 24);
-const calendarIcon = Icon.getImageSourceSync('calendar', 24);
-const chartBoxIcon = Icon.getImageSourceSync('chart-box', 24);
-const accountIcon = Icon.getImageSourceSync('account', 24);
-
-const Tabs = createNativeBottomTabNavigator();
-
-const TabsNavigator = () => {
- return (
-
- homeIcon,
- }}
- />
- calendarIcon,
- }}
- />
- chartBoxIcon,
- }}
- />
- accountIcon,
- }}
- />
-
- );
-};
-
-export default TabsNavigator;
diff --git a/packages/dashboard/src/screens/AccountScreen.tsx b/packages/dashboard/src/screens/AccountScreen.tsx
deleted file mode 100644
index 6d952d5e..00000000
--- a/packages/dashboard/src/screens/AccountScreen.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-import ErrorBoundary from '../components/ErrorBoundary';
-import Placeholder from '../components/Placeholder';
-
-const Account = React.lazy(() => import('auth/AccountScreen'));
-
-const AccountScreen = () => {
- return (
-
- }>
-
-
-
- );
-};
-
-export default AccountScreen;
diff --git a/packages/dashboard/src/screens/CalendarScreen.tsx b/packages/dashboard/src/screens/CalendarScreen.tsx
deleted file mode 100644
index 549d3830..00000000
--- a/packages/dashboard/src/screens/CalendarScreen.tsx
+++ /dev/null
@@ -1,79 +0,0 @@
-import React, {useCallback, useMemo, useState} from 'react';
-import {FlatList, StyleSheet, View} from 'react-native';
-import {CalendarList, CalendarUtils, DateData} from 'react-native-calendars';
-import {FAB, List, MD3Colors} from 'react-native-paper';
-import bookings from '../data/bookings.json';
-
-const INITIAL_DATE = CalendarUtils.getCalendarDateString(new Date());
-
-const renderAppointment = ({item}: any) => (
- }
- />
-);
-
-const CalendarScreen = () => {
- const [selected, setSelected] = useState(INITIAL_DATE);
-
- const marked = useMemo(() => {
- return {
- [selected]: {
- selected: true,
- disableTouchEvent: true,
- },
- [INITIAL_DATE]: {
- selected: true,
- selectedColor: MD3Colors.primary50,
- },
- };
- }, [selected]);
-
- const onDayPress = useCallback((day: DateData) => {
- setSelected(day.dateString);
- }, []);
-
- return (
-
-
-
- {}}
- />
-
- );
-};
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: '#fff',
- },
- fab: {
- position: 'absolute',
- right: 0,
- margin: 16,
- bottom: 0,
- },
-});
-
-export default CalendarScreen;
diff --git a/packages/dashboard/src/screens/HomeScreen.tsx b/packages/dashboard/src/screens/HomeScreen.tsx
deleted file mode 100644
index 2d3274fc..00000000
--- a/packages/dashboard/src/screens/HomeScreen.tsx
+++ /dev/null
@@ -1,174 +0,0 @@
-import React from 'react';
-import {
- Alert,
- FlatList,
- ListRenderItem,
- ScrollView,
- StyleSheet,
- View,
-} from 'react-native';
-import {
- Avatar,
- Card,
- Button,
- Divider,
- Text,
- Title,
- Paragraph,
-} from 'react-native-paper';
-import bookings from '../data/bookings.json';
-import products from '../data/products.json';
-import news from '../data/news.json';
-import articles from '../data/articles.json';
-
-const showNotImplementedAlert = () => Alert.alert('Not implemented yet');
-
-const renderUpcoming = ({item}: any) => (
-
- }
- />
-
-
- Cancel
-
-
- Edit
-
-
-
-);
-
-const renderProduct: ListRenderItem = ({item, index}) => (
-
-
-
- {`${item.name} • $${item.price}`}
- {item.description}
-
-
- Delete
- Edit
-
-
-);
-
-const renderArticle: ListRenderItem = ({item, index}) => (
-
-
-
- {item.title}
- {item.content}
-
-
- Delete
- Edit
-
-
-);
-
-const renderDivider = () => ;
-
-const HomeScreen = () => {
- return (
-
-
-
- My Appointments
-
-
- Manage
-
-
-
-
-
- My Products
-
-
- Manage
-
-
-
-
-
- My News
-
-
- Manage
-
-
-
-
-
- My Articles
-
-
- Manage
-
-
-
-
- );
-};
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: '#fff',
- },
- contentContainer: {
- paddingHorizontal: 16,
- },
- divider: {
- backgroundColor: 'transparent',
- width: 16,
- },
- header: {
- padding: 16,
- flexDirection: 'row',
- alignItems: 'center',
- },
- headerTitle: {
- flex: 1,
- },
- cardWidth: {
- width: 270,
- },
-});
-
-export default HomeScreen;
diff --git a/packages/dashboard/src/screens/StatisticsScreen.tsx b/packages/dashboard/src/screens/StatisticsScreen.tsx
deleted file mode 100644
index c6058abb..00000000
--- a/packages/dashboard/src/screens/StatisticsScreen.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import React from 'react';
-import ScreenPlaceholder from '../components/ScreenPlaceholder';
-
-const StatisticsScreen = () => {
- return ;
-};
-
-export default StatisticsScreen;
diff --git a/packages/dashboard/tsconfig.json b/packages/dashboard/tsconfig.json
deleted file mode 100644
index 511c11be..00000000
--- a/packages/dashboard/tsconfig.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "extends": "@react-native/typescript-config",
- "compilerOptions": {
- "types": ["jest"],
- "module": "es2020",
- "paths": {
- "*": ["./@mf-types/*"]
- }
- },
- "include": ["**/*.ts", "**/*.tsx", "./@mf-types/*"],
- "exclude": ["**/node_modules", "**/Pods"]
-}
diff --git a/packages/host/Gemfile.lock b/packages/host/Gemfile.lock
index 15509322..d89c2c13 100644
--- a/packages/host/Gemfile.lock
+++ b/packages/host/Gemfile.lock
@@ -78,13 +78,16 @@ GEM
concurrent-ruby (~> 1.0)
json (2.7.4)
logger (1.4.2)
- minitest (5.25.1)
+ minitest (6.0.5)
+ drb (~> 2.0)
+ prism (~> 1.5)
molinillo (0.8.0)
mutex_m (0.2.0)
nanaimo (0.3.0)
nap (1.1.0)
netrc (0.11.0)
nkf (0.2.0)
+ prism (1.9.0)
public_suffix (4.0.7)
rexml (3.3.9)
ruby-macho (2.5.1)
diff --git a/packages/host/android/app/build.gradle b/packages/host/android/app/build.gradle
index 28e0a62a..c9015fc1 100644
--- a/packages/host/android/app/build.gradle
+++ b/packages/host/android/app/build.gradle
@@ -66,7 +66,7 @@ apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
/**
* Set this to true to Run Proguard on Release builds to minify the Java bytecode.
*/
-def enableProguardInReleaseBuilds = false
+def enableProguardInReleaseBuilds = true
/**
* The preferred build flavor of JavaScriptCore (JSC)
diff --git a/packages/host/android/app/src/main/res/values/colors.xml b/packages/host/android/app/src/main/res/values/colors.xml
index d4aaff4f..4ce08805 100644
--- a/packages/host/android/app/src/main/res/values/colors.xml
+++ b/packages/host/android/app/src/main/res/values/colors.xml
@@ -1,3 +1,4 @@
#ffffff
+ #0A0E1A
diff --git a/packages/host/android/app/src/main/res/values/strings.xml b/packages/host/android/app/src/main/res/values/strings.xml
index 7e07c958..d6e1700b 100644
--- a/packages/host/android/app/src/main/res/values/strings.xml
+++ b/packages/host/android/app/src/main/res/values/strings.xml
@@ -1,5 +1,5 @@
- Super App Showcase
+ Fintech Super App
-----BEGIN PUBLIC KEY-----
MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvR2JseYMjDTie9MYo/Tw
diff --git a/packages/host/android/app/src/main/res/values/styles.xml b/packages/host/android/app/src/main/res/values/styles.xml
index db430954..f095b42b 100644
--- a/packages/host/android/app/src/main/res/values/styles.xml
+++ b/packages/host/android/app/src/main/res/values/styles.xml
@@ -3,6 +3,7 @@
parent="Theme.EdgeToEdge.Material3">
- @drawable/rn_edit_text_material
+ - @color/app_background