Files
tiptoi-sync/client/capacitor.config.ts
T
arnef ee9e802b09
CI / Type-Check (push) Successful in 10s
CI / Build Android APK (push) Successful in 6m8s
Rename app to 'tiptoi Sync' and add tiptoi pen icon/splash screens
- App display name: 'TipToi Sync' -> 'tiptoi Sync' (strings.xml,
  capacitor.config.ts).
- New app icon: stylized tiptoi pen (orange body, grip band, sensor
  tip) on dark background, regenerated for all mipmap densities plus
  the adaptive icon foreground and round variant.
- Matching splash screens (portrait + landscape, all densities) with
  the same pen motif centered on the dark background.
- Web favicon updated to match.
- Removed unused legacy vector icon assets
  (drawable/ic_launcher_background.xml,
  drawable-v24/ic_launcher_foreground.xml) that were superseded by the
  raster icons.
2026-08-12 18:20:22 +02:00

20 lines
502 B
TypeScript

import type { CapacitorConfig } from '@capacitor/cli'
// DEV_URL aktiviert den Capacitor Live-Reload gegen den Vite-Dev-Server.
// Beispiel: DEV_URL=http://192.168.1.42:5173 bun run cap:android
const devUrl = process.env.DEV_URL
const config: CapacitorConfig = {
appId: 'com.tiptoisync.app',
appName: 'tiptoi Sync',
webDir: 'dist',
server: devUrl
? { url: devUrl, cleartext: true }
: { androidScheme: 'https' },
android: {
allowMixedContent: true,
},
}
export default config