pushwoosh-cordova-plugin
Version:
This plugin allows you to send and receive push notifications. Powered by Pushwoosh (www.pushwoosh.com).
19 lines (16 loc) • 354 B
text/typescript
import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.pushwoosh.demovoip',
appName: 'PW Capacitor VoIP Demo',
webDir: 'www',
android: {
path: 'android',
},
cordova: {
preferences: {
LOG_LEVEL: 'DEBUG',
ANDROID_FOREGROUND_PUSH: 'true',
},
},
};
export default config;