app MainApp {
    onCreate(intent: RouteInfo) {
        console.log('App onCreate.')
    }

    onForeground() {
        console.log('App onForeground.')
    }

    onBackground() {
        console.log('App onBackground.')
    }

    onDestroy() {
        console.log('App onDestroy.')
    }
}