-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[templates] enable network inspector by default (expo#23119)
# 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
Showing
2 changed files
with
5 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -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 |
3 changes: 2 additions & 1 deletion
3
templates/expo-template-bare-minimum/ios/Podfile.properties.json
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,3 +1,4 @@ | ||
{ | ||
"expo.jsEngine": "hermes" | ||
"expo.jsEngine": "hermes", | ||
"EX_DEV_CLIENT_NETWORK_INSPECTOR": "true" | ||
} |