Skip to content

Commit

Permalink
[templates] enable network inspector by default (expo#23119)
Browse files Browse the repository at this point in the history
# Why

found that network inspector doesn't enable on sdk 49 project without expo-build-properties

# How

we should add the default properties even expo-build-properties is not installed

# Test Plan

tested on a new sdk49 blank project
  • Loading branch information
Kudo authored Jun 27, 2023
1 parent e9e0e3e commit d847ad2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,8 @@ expo.webp.enabled=true
# Disabled by default because iOS doesn't support animated webp
expo.webp.animated=false

# Enable network inspector
EX_DEV_CLIENT_NETWORK_INSPECTOR=true

# Remove this workaround when upgrading to [email protected]
kotlin.jvm.target.validation.mode=warning
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"expo.jsEngine": "hermes"
"expo.jsEngine": "hermes",
"EX_DEV_CLIENT_NETWORK_INSPECTOR": "true"
}

0 comments on commit d847ad2

Please sign in to comment.