2017-08-01 3 views
0

突然深いリンクがfacebookとtwitterのために働いていません。以前は正常に動作していました。ここでTwitterとfacebookのためのbranch.io stopと深くつながる他の他のソーシャルネットワーク

は私のマニフェストのコードです:

<meta-data android:name="io.branch.sdk.BranchKey" android:value="live-key" /> 

<intent-filter android:autoVerify="true"> 
     <data android:scheme="05media.com" android:host="open" /> 
     <action android:name="android.intent.action.VIEW" /> 
     <category android:name="android.intent.category.DEFAULT" /> 
     <category android:name="android.intent.category.BROWSABLE" /> 
     <data android:scheme="https" android:host="05media2.app.link" /> 
     <data android:scheme="https" android:host="05media2-alternate.app.link" /> 
    </intent-filter> 

また、私はカスタム検索を有効にして、パッケージ名(com.pinmedia.mediaguide)を追加します。 マニフェストでも同じように使用 SHA256 Cert Fingerprintsも追加してください。

これは、TwitterやFacebookのために働いていない理由は、私を助けてください、私はそれを探したが、何も私のため

を働かせることはできません。私はあなたがアプリのリンクと、通常のディープリンクの両方のためのセットアップである唯一のインテントフィルタを持っていることがわかり

を:他の場合には、Branch.ioここから細かい

答えて

0

Amruta仕事です。あなたは次のよう代わりにあなたのAndroidマニフェストに2つの別々のインテントフィルタを定義する必要があります。

<!-- Config for Deeplink --> 
<intent-filter> 
<data android:scheme="05media.com" /> 
<action android:name="android.intent.action.VIEW" /> 
<category android:name="android.intent.category.DEFAULT" /> 
<category android:name="android.intent.category.BROWSABLE" /> 
</intent-filter> 

<!-- Config for App Links --> 
<intent-filter android:autoVerify="true"> 
<action android:name="android.intent.action.VIEW" /> 
<category android:name="android.intent.category.DEFAULT" /> 
<category android:name="android.intent.category.BROWSABLE" /> 
<data android:scheme="https" android:host="05media2.app.link" /> 
<data android:scheme="https" android:host="05media2-alternate.app.link" /> 
</intent-filter> 

あなたがここにサンプルアプリケーションのいずれかのAndroidのマニフェストをチェックアウトすることができます:https://github.com/BranchMetrics/Branch-Example-Deep-Linking-Branchster-Android/blob/master/app/src/main/AndroidManifest.xml#L34

あなたが問題に直面し続ける場合は、私は希望作成することをお勧めします:[email protected]。彼らはあなたと1対1で仕事をすることができます。

この応答は、Evan Groth氏の功績によるものです。

+0

お手数ですが、これで問題は解決しません。結果は同じです。 –

関連する問題