You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
557 B
25 lines
557 B
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.timesafari.dailynotification.androidtest',
|
|
appName: 'Daily Notification Android Test',
|
|
webDir: 'dist',
|
|
server: {
|
|
androidScheme: 'https'
|
|
},
|
|
plugins: {
|
|
DailyNotification: {
|
|
storage: 'shared',
|
|
ttlSeconds: 1800,
|
|
prefetchLeadMinutes: 15,
|
|
enableETagSupport: true,
|
|
enableErrorHandling: true,
|
|
enablePerformanceOptimization: true
|
|
}
|
|
},
|
|
android: {
|
|
allowMixedContent: true
|
|
}
|
|
};
|
|
|
|
export default config;
|
|
|