-
Notifications
You must be signed in to change notification settings - Fork 29.1k
Closed
flutter/engine
#21275Labels
P3Issues that are less important to the Flutter projectIssues that are less important to the Flutter projectc: new featureNothing broken; request for a new capabilityNothing broken; request for a new capabilityengineflutter/engine repository. See also e: labels.flutter/engine repository. See also e: labels.f: routesNavigator, Router, and related APIs.Navigator, Router, and related APIs.platform-androidAndroid applications specificallyAndroid applications specifically
Description
Adds the following intent filter in /android/app/src/main/AndroidManifest.xml
<intent-filter>
<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" android:host="flutterbooksample.com" android:pathPrefix="/" />
</intent-filter>
launch the app using the following adb command
adb shell am start -a android.intent.action.VIEW -c android.intent.category.BROWSABLE -d "http://flutterbooksample.com/book/1"
This should launch the app with /book/1
as defaultRouteName, but it launch with /
Metadata
Metadata
Assignees
Labels
P3Issues that are less important to the Flutter projectIssues that are less important to the Flutter projectc: new featureNothing broken; request for a new capabilityNothing broken; request for a new capabilityengineflutter/engine repository. See also e: labels.flutter/engine repository. See also e: labels.f: routesNavigator, Router, and related APIs.Navigator, Router, and related APIs.platform-androidAndroid applications specificallyAndroid applications specifically