-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow ethereum deeplinks inside frames (#1198)
* Allow ethereum deeplinks inside frames * Set and new file * Bump app json * [create-pull-request] automated change (#1195) Co-authored-by: alexrisch <[email protected]> * [create-pull-request] automated change (#1197) Co-authored-by: alexrisch <[email protected]> --------- Co-authored-by: Noé Malzieu <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: alexrisch <[email protected]>
- Loading branch information
1 parent
4a68dd4
commit bac8634
Showing
4 changed files
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"expo": { | ||
"version": "2.0.7", | ||
"version": "2.0.8", | ||
"ios": { | ||
"buildNumber": "16" | ||
"buildNumber": "31" | ||
}, | ||
"android": { | ||
"versionCode": 223 | ||
"versionCode": 229 | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import config from "../../../config"; | ||
|
||
export const AUTHORIZED_URL_PROTOCOLS = new Set([ | ||
`${config.scheme}:`, | ||
...config.framesAllowedSchemes.map((s) => `${s}:`), | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters