llfbandit / app_links

Android App Links, Deep Links, iOs Universal Links and Custom URL schemes handler for Flutter.
https://pub.dev/packages/app_links
Apache License 2.0
176 stars 68 forks source link

Not working on android 13( im using Redmi 12 5G device) #94

Closed rahulsharma9893 closed 4 months ago

rahulsharma9893 commented 4 months ago

my manifest.xml file

            <category android:name="android.intent.category.BROWSABLE" />
            <category android:name="android.intent.category.DEFAULT" />

            <data android:scheme="https" />
            <data android:host="*.example.in" />
            <data android:scheme="https" />
            <data android:host=".example.in" />
            <data android:scheme="https" />
            <data android:host="example.page.link/dlink" />
            <data android:scheme="http" />
            <data android:host="*.example.in" />
            <data android:scheme="https" />
            <data android:host="example.page.link" />
            <data android:host="example.in" />
            <data android:scheme="http" />
            <data android:host="example.in" />
            <data android:scheme="https" />
        </intent-filter>

my myapp.dart class uses in init

         try {
  final _appLinks = AppLinks();
  _appLinks.allUriLinkStream.listen((uri) {
    print("initUniLinks url ${uri}");
  });

} on PlatformException {
  print("initUniLinks PlatformException $PlatformException");
  // Handle exception by warning the user their action did not succeed
  // return?
}

also package example code not working

llfbandit commented 4 months ago

Duplicate #65