Android deep linking is not working
===================================
 Android link:-notification://id=notificationid
1:-In manifest
      <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                    <category android:name="android.intent.category.BROWSABLE" />
                    <data
                        android:host="id"
                        android:scheme="notification" />
                </intent-filter>       
2:-and coding side
 @Override
        protected void onResume() {
            super.onResume();        
            Intent intent = getIntent();
            String string=intent.getAction();
            Uri data = intent.getData();
            Log.d("hello","cgbdsuyfdkv");
        }   
but its not working please any body can help me !!!!!