015a3a7e3f
- Update strings.xml to use 'Ditto' instead of 'ditto' - Update capacitor.config.ts appName to 'Ditto' - Update GitLab CI/CD artifact naming to use 'Ditto-' prefix - Ensures consistency with web version branding
20 lines
437 B
TypeScript
20 lines
437 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'pub.ditto.app',
|
|
appName: 'Ditto',
|
|
webDir: 'dist',
|
|
server: {
|
|
// Handle deep links from your domain
|
|
hostname: 'ditto.pub',
|
|
androidScheme: 'https'
|
|
},
|
|
android: {
|
|
// Enable safe area handling for notches and navigation bars
|
|
allowMixedContent: false,
|
|
backgroundColor: '#14161f'
|
|
}
|
|
};
|
|
|
|
export default config;
|