0

私はintent-filter自分のアプリでカスタムURLを開くために使用していますが、正常に動作します。

グーグルクロームブラウザまたはフェイスブックネイティブアプリの投稿からカスタムURLを開こうとすると(プライベートメッセージではうまくいきます)、それは機能せず、ウェブサイトとして開きます。

私のコード:

<intent-filter>
  <category android:name="android.intent.category.DEFAULT" />
  <category android:name="android.intent.category.BROWSABLE" />
  <action android:name="android.intent.action.VIEW" />
  <action android:name="android.intent.action.SEND" />
  <data
    android:host="mydomain.co.il"
    android:scheme="http" />
  <data
    android:host="www.mydomain.co.il"
    android:scheme="http" />
  <data
    android:host="www.mydomain.co.il"
    android:scheme="myscheme" />
</intent-filter>
4

1 に答える 1