skip to Main Content

Android Studio: Unable to determine activity name

I created an app in Android Studio (2022.3.1) that just contains a webview and handles urls. It worked until I added deep links via intent. Can someone tell me, whats wrong with that? AndroidManifest.xml: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"…

VIEW QUESTION

Flutter logic deeplink using app_link identification url to redirect page

I'm having trouble creating deeplinks with app_links. Package: https://pub.dev/packages/app_links Widget build(BuildContext context) { return MaterialApp( navigatorKey: _navigatorKey, initialRoute: "/", onGenerateRoute: (RouteSettings settings) { Widget routeWidget = defaultScreen(); String? routeName = settings.name; if (routeName == '/reset-password/') { // redirect to Reset…

VIEW QUESTION
Back To Top
Search