feat: Android APP V1 - Experimental Alpha

This commit is contained in:
2026-06-05 07:40:25 +02:00
parent bf4e6891d1
commit 9a1305f976
179 changed files with 8031 additions and 120 deletions
@@ -9,6 +9,10 @@ import { Router } from '@angular/router';
import { Store } from '@ngrx/store';
import { Subject } from 'rxjs';
import { NotificationAudioService, AppSound } from '../../../../core/services/notification-audio.service';
import {
MobileCallSessionService,
MobileNotificationsService
} from '../../../../infrastructure/mobile';
import { ViewportService } from '../../../../core/platform';
import {
VoiceActivityService,
@@ -547,6 +551,22 @@ function createServiceContext(options: ServiceContextOptions): ServiceContext {
useValue: {
isMobile: vi.fn(() => false)
}
},
{
provide: MobileNotificationsService,
useValue: {
initialize: vi.fn(async () => undefined),
showIncomingCall: vi.fn(async () => undefined)
}
},
{
provide: MobileCallSessionService,
useValue: {
initialize: vi.fn(),
onCallControlAction: vi.fn(),
startActiveCall: vi.fn(async () => undefined),
endActiveCall: vi.fn(async () => undefined)
}
}
]
});