Skip to content

Commit

Permalink
feat: Support deeplink for configuration #2442
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Feb 26, 2024
1 parent 5da294f commit 248a9ed
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="wc-altme" />
</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="configuration" />
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
Expand Down
10 changes: 10 additions & 0 deletions ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,16 @@
<string>wc-altme</string>
</array>
</dict>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>configuration</string>
<key>CFBundleURLSchemes</key>
<array>
<string>configuration</string>
</array>
</dict>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
Expand Down

0 comments on commit 248a9ed

Please sign in to comment.