'Qrcode scan with android camera doesn't detect the intent in android

I was using intent to manage the links in my android app. It was working fine, but after the android update on the phone, it just offers to open it with the browser.

      <activity
        android:name=".ui.MobileBadgeActivity"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
       </intent-filter>

     <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="http" />
            <data android:host="www.domainn_name.eu" />

     </intent-filter>

Is there any solution to handle the link.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source