Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Cropper - opt out of edge-to-edge enforcement on Android 15 (#7254)

* opt out of edge-to-edge enforcement

* revert unintended change

authored by

Samuel Newman and committed by
GitHub
2b28c85b 1e4ea1a2

+33
+33
patches/react-native-image-crop-picker+0.41.6.patch
··· 1 + diff --git a/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml b/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml 2 + index 391f303..8e2c3db 100644 3 + --- a/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml 4 + +++ b/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml 5 + @@ -24,7 +24,7 @@ 6 + 7 + <activity 8 + android:name="com.yalantis.ucrop.UCropActivity" 9 + - android:theme="@style/Theme.AppCompat.Light.NoActionBar" /> 10 + + android:theme="@style/Theme.UCropNoEdgeToEdge" /> 11 + </application> 12 + 13 + </manifest> 14 + diff --git a/node_modules/react-native-image-crop-picker/android/src/main/res/values-v35/styles.xml b/node_modules/react-native-image-crop-picker/android/src/main/res/values-v35/styles.xml 15 + new file mode 100644 16 + index 0000000..396d5a8 17 + --- /dev/null 18 + +++ b/node_modules/react-native-image-crop-picker/android/src/main/res/values-v35/styles.xml 19 + @@ -0,0 +1,5 @@ 20 + +<resources> 21 + + <style name="Theme.UCropNoEdgeToEdge" parent="Theme.AppCompat.Light.NoActionBar"> 22 + + <item name="android:windowOptOutEdgeToEdgeEnforcement">true</item> 23 + + </style> 24 + +</resources> 25 + diff --git a/node_modules/react-native-image-crop-picker/android/src/main/res/values/styles.xml b/node_modules/react-native-image-crop-picker/android/src/main/res/values/styles.xml 26 + new file mode 100644 27 + index 0000000..50129b6 28 + --- /dev/null 29 + +++ b/node_modules/react-native-image-crop-picker/android/src/main/res/values/styles.xml 30 + @@ -0,0 +1,3 @@ 31 + +<resources> 32 + + <style name="Theme.UCropNoEdgeToEdge" parent="Theme.AppCompat.Light.NoActionBar"/> 33 + +</resources> 1 34 diff --git a/node_modules/react-native-image-crop-picker/ios/src/ImageCropPicker.m b/node_modules/react-native-image-crop-picker/ios/src/ImageCropPicker.m 2 35 index 9f20973..68d4766 100644 3 36 --- a/node_modules/react-native-image-crop-picker/ios/src/ImageCropPicker.m