Skip to content

Commit

Permalink
only include localhost:19006 as intent filter on android (#3167)
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok authored Mar 11, 2024
1 parent e4a1069 commit a289e6b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ module.exports = function (config) {
? process.env.BSKY_ANDROID_VERSION_CODE
: process.env.BSKY_IOS_BUILD_NUMBER

const IS_DEV = process.env.EXPO_PUBLIC_ENV === 'development'

return {
expo: {
version: VERSION,
Expand Down Expand Up @@ -103,7 +105,7 @@ module.exports = function (config) {
scheme: 'https',
host: 'bsky.app',
},
{
IS_DEV && {
scheme: 'http',
host: 'localhost:19006',
},
Expand Down

0 comments on commit a289e6b

Please sign in to comment.