Launch External Apps
Sample
Android
iOS / MacCatalyst
Usage (Wisej.NET Hybrid)
Further Reading
Last updated
Last updated
<activity android:name="appName" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="lyft"/>
<data android:scheme="fb"/>
</intent-filter>
</activity><data android:scheme="appName"/><key>LSApplicationQueriesSchemes</key>
<array>
<string>lyft</string>
<string>fb</string>
</array>private void button1_Click(object sender, System.EventArgs e)
{
if (Device.Launcher.CanOpen("lyft://"))
Device.Launcher.Open("lyft://ridetype?id=lyft_line");
}