Hi,
I am trying to add Card Deep Linking for my app. But it does not work.
I saw many similar problem in this page. And had tried some of them. But it 's still don’t work. Please help me point out where do I am wrong 
Here is my html meta data :
<meta name="twitter:app:name:googleplay" content="AndroidApp">
<meta name="twitter:app:id:googleplay" content="com.example.androidapp">
<meta name="twitter:app:url:googleplay" content="sharing://action/">
And in my app , I added intent filter :
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<data android:scheme="sharing" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>