Skip to content
Merged
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
4 changes: 2 additions & 2 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3437,7 +3437,7 @@ PODS:
- ReactCommon/turbomodule/core
- SocketRocket
- Yoga
- RNAppleAuthentication (2.2.2):
- RNAppleAuthentication (2.5.0):
- React-Core
- RNCClipboard (1.15.0):
- boost
Expand Down Expand Up @@ -4796,7 +4796,7 @@ SPEC CHECKSUMS:
ReactCodegen: 2cfa890e84ecf7f3a708f1ed9c0f2c0b22a23c9a
ReactCommon: e9ab32f1d1482d207867b4fdd139361302b9dcc6
ReactNativeHybridApp: 16ebccf5382436fcb9303ab5f4b50d9942bccf5c
RNAppleAuthentication: 4272012a6745519a2411889894eb69a3f553c9f9
RNAppleAuthentication: 9027af8aa92b4719ef1b6030a8e954d37079473a
RNCClipboard: e7da00b1612a8faf2309c6636043713cfe11092e
RNCPicker: eb89e9d8bbd728bc00c48d294553f5968900f874
RNDeviceInfo: f4e8dcaba08a5d3a703d30ad41e964e21148d7e2
Expand Down
11 changes: 8 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"@fullstory/browser": "^2.0.6",
"@fullstory/react-native": "^1.7.8",
"@gorhom/portal": "^1.0.14",
"@invertase/react-native-apple-authentication": "^2.2.2",
"@invertase/react-native-apple-authentication": "^2.5.0",
"@noble/ed25519": "^3.0.0",
"@noble/hashes": "^2.0.0",
"@onfido/react-native-sdk": "15.1.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {appleAuthAndroid} from '@invertase/react-native-apple-authentication';
import type {AndroidConfig} from '@invertase/react-native-apple-authentication';
import React from 'react';
import IconButton from '@components/SignInButtons/IconButton';
import useOnyx from '@hooks/useOnyx';
Expand All @@ -12,11 +13,12 @@ import type {AppleSignInProps} from '.';
/**
* Apple Sign In Configuration for Android.
*/
const config = {
const config: AndroidConfig = {
clientId: CONFIG.APPLE_SIGN_IN.SERVICE_ID,
redirectUri: CONFIG.APPLE_SIGN_IN.REDIRECT_URI,
responseType: appleAuthAndroid.ResponseType.ALL,
scope: appleAuthAndroid.Scope.ALL,
fullScreen: false,
};

/**
Expand Down
Loading