私はXamarinを使用してAndroidアプリケーションを開発しています。私は、ユーザーがリンクexample://gizmos
を開いたときにアプリを開くことができるようにしたいので、私は私のマニフェストファイルにこれを追加します。これはAndroidのドキュメントから直接取得されXamarin Androidディープリンクが動作しない
<activity android:name="mynamespace.MyActivity"
android:label="@string/application_name" >
<intent-filter android:label="@string/application_name">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://www.example.com/gizmos” -->
<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/gizmos" />
<!-- note that the leading "/" is required for pathPrefix-->
<!-- Accepts URIs that begin with "example://gizmos” -->
<data android:scheme="example"
android:host="gizmos" />
</intent-filter>
</activity>
。私は私の物理的なAndroidデバイス上のメールアプリケーションからリンクexample://gizmos
をクリックしてみてください、私はメッセージが表示されます:Unable to find application to perform this action
EDIT
それは、彼らが使用していない、提案重複と同じではありませんXamarin。 Xamarinで
[ディープリンク意図がヲないの可能性の重複:とあなたのリンクを開きますrk](http://stackoverflow.com/questions/24808777/deep-linking-intent-does-not-work) – Demitrian
重複していません。彼らはXamarinを使用していません。 – Darius
私も同じ問題を抱えています。クラスを取得するのに例外が見つかりませんでした https://stackoverflow.com/questions/48680875/getting-class-not-found-exception-when-doing-deeplinking-in-xamarin-forms –