Live Caller ID Lookup Implementation

Hello I'm working on Live Caller ID Lookup implementation on my own pet-project, as I understood I need to create app and extension for this app. I also created test PIR-service. I did configure serviceURL, tokenIssuerURL and userTierToken. In My app I implemented following code


Task {
            if LiveCallerIDLookupManager.shared.status(forExtensionWithIdentifier: "some-extension") == .disabled {
        `//` Show an alert.
                
                print("LiveCallerIDLookupManager is disabled")
                
                
            }
            
            do {
                // Open Settings.
                try await LiveCallerIDLookupManager.shared.openSettings()
            } catch {
                
            }

It does open Call settings, but I don't understand what should I do next.

Live Caller ID Lookup Implementation
 
 
Q