Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/feature_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ on:
required: false
type: boolean
default: false
RABBY_MOBILE_NEW_ARCH_ENABLED:
required: false
type: boolean
default: true

defaults:
run:
Expand Down Expand Up @@ -125,8 +129,6 @@ jobs:
RABBY_MOBILE_UNLOCK_KEYCHAIN_PASS=${{ secrets.KEYCHAIN_PASS }}
fi
security unlock-keychain -p $RABBY_MOBILE_UNLOCK_KEYCHAIN_PASS login.keychain
# cd ios && bundle install && bundle exec pod install --deployment;
# cd ../;
./scripts/deploy-ios-adhoc.sh

# # cleanup packager
Expand All @@ -150,6 +152,7 @@ jobs:
SENTRY_DISABLE_AUTO_UPLOAD: ${{ inputs.SENTRY_DISABLE_AUTO_UPLOAD }}
DISABLE_AWS_CLI_HTTPS_VALIDATION: ${{ inputs.__DANGEROUS_NO_VERIFY_SSL }}
GHA_MOCK_BUILD_FAILED: ${{ inputs.GHA_MOCK_BUILD_FAILED }}
RABBY_MOBILE_NEW_ARCH_ENABLED: ${{ inputs.RABBY_MOBILE_NEW_ARCH_ENABLED }}
CONFIGURATION: release
TYPE: adhoc
RABBY_MOBILE_BUILD_ENV: regression
Expand Down
26 changes: 26 additions & 0 deletions .yarn/patches/@gorhom-bottom-sheet-npm-5.1.8-d4532753f1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
diff --git a/src/components/bottomSheetDraggableView/BottomSheetDraggableView.tsx b/src/components/bottomSheetDraggableView/BottomSheetDraggableView.tsx
index d721fee7a0b133027df45d00d6fcf07e66b797f4..34e7982120159917291a3e8ec02973f2be659113 100644
--- a/src/components/bottomSheetDraggableView/BottomSheetDraggableView.tsx
+++ b/src/components/bottomSheetDraggableView/BottomSheetDraggableView.tsx
@@ -30,7 +30,7 @@ const BottomSheetDraggableViewComponent = ({

//#region variables
const simultaneousHandlers = useMemo(() => {
- const refs = [];
+ const refs: any[] = [];

if (nativeGestureRef) {
refs.push(nativeGestureRef);
diff --git a/src/components/bottomSheetHandle/BottomSheetHandleContainer.tsx b/src/components/bottomSheetHandle/BottomSheetHandleContainer.tsx
index 9b6a054459bb7f109249d80c5ffde3c395fa70eb..c52f43a02b2882b0ffbeb99857f4b011cb2e1327 100644
--- a/src/components/bottomSheetHandle/BottomSheetHandleContainer.tsx
+++ b/src/components/bottomSheetHandle/BottomSheetHandleContainer.tsx
@@ -41,7 +41,7 @@ function BottomSheetHandleContainerComponent({

//#region variables
const simultaneousHandlers = useMemo<unknown[]>(() => {
- const refs = [];
+ const refs: any[] = [];

if (_internalSimultaneousHandlers) {
refs.push(_internalSimultaneousHandlers);
288 changes: 0 additions & 288 deletions .yarn/patches/react-native-mmkv-npm-2.12.2-9efa7abf70.patch

This file was deleted.

13 changes: 13 additions & 0 deletions .yarn/patches/react-native-reanimated-npm-3.17.1-c34570df61.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/src/platform-specific/findHostInstance.ts b/src/platform-specific/findHostInstance.ts
index da56c8eb67f4be89ac42ad22bc38f27500247f82..32f5baa54420800a31ce64441eb1acedaf68c43c 100644
--- a/src/platform-specific/findHostInstance.ts
+++ b/src/platform-specific/findHostInstance.ts
@@ -86,7 +86,7 @@ export function findHostInstance(
a valid React ref.
*/
return findHostInstance_DEPRECATED(
- !isFabric() || (component as IAnimatedComponentInternal).hasAnimatedRef()
+ !isFabric() || (typeof (component as IAnimatedComponentInternal).hasAnimatedRef === 'function' && (component as IAnimatedComponentInternal).hasAnimatedRef())
? (component as IAnimatedComponentInternal)._componentRef
: component
);
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ index 6664b6f6eacb37743d049556dc55f613c0244517..7d639e3c139cb506fc8ef23044e3e121
public void onHostResume() {
// do nothing
diff --git a/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewClient.java b/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewClient.java
index d59e19ce82a5a03a60c558b35171af713719af4a..95d4b70232583266d81abf9262a3c8fbc3c01c46 100644
index d59e19ce82a5a03a60c558b35171af713719af4a..1179dc4d407a6faac186ee60cc7b7c55bb61f261 100644
--- a/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewClient.java
+++ b/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewClient.java
@@ -1,7 +1,9 @@
Expand Down Expand Up @@ -442,14 +442,14 @@ index 4600a8dc5c448a2236d25e40172453f93ae92c45..4550481079f5b59e9a11029082958bf6
}
\ No newline at end of file
diff --git a/android/src/newarch/com/reactnativecommunity/webview/RNCWebViewManager.java b/android/src/newarch/com/reactnativecommunity/webview/RNCWebViewManager.java
index 5bae4aa9e66897473a9083a2c9320c99d72e80d7..456547621a60911296e878fe45d9aa55ae6ebf80 100644
index 5bae4aa9e66897473a9083a2c9320c99d72e80d7..658f23b62bffb5fec8ed8bd15b4dc0ce430d95aa 100644
--- a/android/src/newarch/com/reactnativecommunity/webview/RNCWebViewManager.java
+++ b/android/src/newarch/com/reactnativecommunity/webview/RNCWebViewManager.java
@@ -331,6 +331,12 @@ public class RNCWebViewManager extends ViewGroupManager<RNCWebViewWrapper>
mRNCWebViewManagerImpl.setWebviewDebuggingEnabled(view, value);
}

+ @Override
+ // @Override
+ @ReactProp(name = "disableJsPromptLike")
+ public void setDisableJsPromptLike(RNCWebViewWrapper view, boolean value) {
+ mRNCWebViewManagerImpl.setDisableJsPromptLike(view, value);
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
root: true,
// extends: '@react-native',
extends: '@react-native-community',
extends: ['@react-native-community'],
rules: {
'react/react-in-jsx-scope': 'off',
'react-hooks/exhaustive-deps': 'error',
Expand Down
Loading