Apps marca blanca
Una base de código, marcas infinitas
Despliega actualizaciones a todas tus apps marca blanca simultáneamente o gestiona cada una individualmente.
Channel Per Brand
Each brand or client gets their own Capgo channel. Push brand-specific updates, content, and features without affecting other deployments.
Dynamic Channel Switching
Let users choose their experience. A restaurant app can let users select their location and download that specific restaurant's content.
Centralized Management
Manage all deployments from one dashboard. Push global updates to all channels or target specific brands.
Mini-App Platform
Build an app store within your app. Each mini-app is a Capgo channel - users download and switch between them seamlessly.
Casos de uso perfectos
Cadenas de restaurantes
Cada ubicación tiene su propia app con gestión centralizada
Plataformas SaaS
Da a los clientes su propia app con marca usando tu tecnología
Empresas plataforma
Escala a cientos de apps con marca con un equipo
Plataformas mini-apps
Aloja múltiples mini-apps dentro de una app contenedor
- 1Main app contains the shell and navigation
- 2Each mini-app is a separate Capgo channel
- 3Users browse available mini-apps in the main app
- 4Selecting a mini-app downloads that channel's content
- 5Mini-app developers upload via CLI or SDK - never touching production
- 6The platform owner reviews and promotes to production
import { CapacitorUpdater } from '@capgo/capacitor-updater'
// Get list of available mini-apps
const miniApps = [
{ name: 'Games', channel: 'miniapp-games' },
{ name: 'Utilities', channel: 'miniapp-utils' },
{ name: 'Finance', channel: 'miniapp-finance' },
]
// User selects a mini-app
async function loadMiniApp(channel: string) {
// Switch to the mini-app's channel
await CapacitorUpdater.setChannel({
channel: channel
})
// Download starts automatically
// App reloads with mini-app content
}
// Return to main app
async function returnToMainApp() {
await CapacitorUpdater.setChannel({
channel: 'production'
})
} Cómo funciona
Usa el sistema de canales de Capgo para actualizaciones específicas por marca