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
![animation example](https://gist.githubusercontent.com/canpoyrazoglu/ae31f17370726770268ce44054701b6b/raw/b30e96ea50fd6d916a9be90d63a613e4fc290acb/example.gif) |
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
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
buildscript { | |
ext { | |
buildToolsVersion = "28.0.3" | |
minSdkVersion = 16 | |
compileSdkVersion = 28 | |
targetSdkVersion = 28 | |
supportLibVersion = "28.0.0" | |
googlePlayServicesVersion = "16.0.0" |
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
diff --git a/node_modules/react-native/Libraries/Image/RCTImageUtils.m b/node_modules/react-native/Libraries/Image/RCTImageUtils.m | |
index 899bfe4..33133c3 100644 | |
--- a/node_modules/react-native/Libraries/Image/RCTImageUtils.m | |
+++ b/node_modules/react-native/Libraries/Image/RCTImageUtils.m | |
@@ -308,13 +308,26 @@ BOOL RCTUpscalingRequired(CGSize sourceSize, CGFloat sourceScale, | |
if (!imageRef) { | |
return nil; | |
} | |
+ if (@available(iOS 10, *)) { | |
+ // Return all images in P3 color space |
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
[...] | |
"rules": [ | |
{ | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.microsoft\\.VSCode$" | |
], |