iOS Question Check if Application is installed on iPhone/iPad

gregchao

Member
Licensed User
Longtime User
Question 1: Is there a way to check if an application like "Jitsi Meet" is installed on an iPhone/Ipad?

Question 2: And if so, how do I associate an url e.g. "https://meet.jit.si" to open the application?
 

gregchao

Member
Licensed User
Longtime User
OK, Got it to work. Used the following code.

B4X:
    #QueriesSchemes: org.jitsi.meet

B4X:
    If App.CanOpenURL("org.jitsi.meet://") = True Then
        Log("jitsi is installed")
    Else
        Log("jitsi is not installed")   
    End If
 
Upvote 0
Top