- 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.
20 lines
502 B
TypeScript
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
|