Skip to content

Commit

Permalink
Merge pull request #779 from dorianvp/bump_rn_0.77.1
Browse files Browse the repository at this point in the history
Bump rn 0.77.1
  • Loading branch information
juanky201271 authored Feb 24, 2025
2 parents 6fd5bde + 0f6130f commit 228d2ed
Show file tree
Hide file tree
Showing 39 changed files with 1,667 additions and 908 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
if: ${{ needs.android-check-build-cache.outputs.native-cache-found != 'true' || needs.android-check-build-cache.outputs.kotlin-cache-found != 'true' }}
runs-on: ubuntu-22.04
container:
image: zingodevops/android_builder:011
image: zingodevops/android_builder:012
env:
RUSTUP_HOME: /root/.rustup
steps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ rust/lib/Generated/zingoFFI.modulemap
build/
.idea
.gradle
.kotlin
local.properties
*.iml

Expand Down
Empty file.
2 changes: 1 addition & 1 deletion __tests__/App.snapshot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jest.mock('react-native-tab-view', () => ({
TabView: '',
TabBar: '',
}));
jest.mock('react-native-option-menu', () => '');
jest.mock('react-native-context-menu-view', () => '');
jest.mock('react-native/src/private/animated/NativeAnimatedHelper');
jest.mock('@react-native-community/netinfo/src/index', () => {
const RN = jest.requireActual('react-native');
Expand Down
2 changes: 1 addition & 1 deletion __tests__/LoadedApp.snapshot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jest.mock('react-native-tab-view', () => ({
TabView: '',
TabBar: '',
}));
jest.mock('react-native-option-menu', () => '');
jest.mock('react-native-context-menu-view', () => '');
jest.mock('react-native/src/private/animated/NativeAnimatedHelper');
jest.mock('@react-native-community/netinfo/src/index', () => {
return {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/LoadingApp.snapshot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jest.mock('react-native-tab-view', () => ({
TabView: '',
TabBar: '',
}));
jest.mock('react-native-option-menu', () => '');
jest.mock('react-native-context-menu-view', () => '');
jest.mock('react-native/src/private/animated/NativeAnimatedHelper');
jest.mock('@react-native-community/netinfo/src/index', () => {
return {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/Receive.snapshot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jest.mock('react-native-tab-view', () => ({
TabView: '',
TabBar: '',
}));
jest.mock('react-native-option-menu', () => '');
jest.mock('react-native-context-menu-view', () => '');
jest.mock('react-native/src/private/animated/NativeAnimatedHelper');
jest.mock('@react-native-community/netinfo/src/index', () => {
const RN = jest.requireActual('react-native');
Expand Down
1 change: 1 addition & 0 deletions __tests__/Settings.snapshot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jest.mock('@react-navigation/native', () => ({
...jest.requireActual('@react-navigation/native'),
useTheme: () => (mockTheme),
}));
jest.mock('react-native-bouncy-checkbox', () => 'BouncyCheckbox');

// test suite
describe('Component Settings - test', () => {
Expand Down
58 changes: 34 additions & 24 deletions __tests__/__snapshots__/LoadedApp.snapshot.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,20 @@ exports[`Component LoadedApp - test LoadedApp - snapshot 1`] = `
onGestureHandlerStateChange={[Function]}
pointerEvents="none"
style={
{
"backgroundColor": "rgba(0, 0, 0, 0.7)",
"bottom": 0,
"left": 0,
"opacity": 0,
"position": "absolute",
"right": 0,
"top": 0,
"zIndex": 1000,
}
[
{
"bottom": 0,
"left": 0,
"position": "absolute",
"right": 0,
"top": 0,
"zIndex": 1000,
},
{
"backgroundColor": "rgba(0, 0, 0, 0.7)",
"opacity": 0,
},
]
}
/>
</View>
Expand All @@ -79,20 +83,26 @@ exports[`Component LoadedApp - test LoadedApp - snapshot 1`] = `
collapsable={false}
pointerEvents="box-none"
style={
{
"bottom": 0,
"flexDirection": "row",
"left": 0,
"position": "absolute",
"right": 0,
"top": 0,
"transform": [
{
"translateX": -525,
},
],
"zIndex": 1001,
}
[
{
"bottom": 0,
"flexDirection": "row",
"left": 0,
"position": "absolute",
"right": 0,
"top": 0,
"zIndex": 1001,
},
{
"flexDirection": "row",
"transform": [
{
"translateX": -525,
},
],
},
undefined,
]
}
>
<View
Expand Down
Loading

0 comments on commit 228d2ed

Please sign in to comment.