forked from MetaMask/metamask-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-native.config.js
More file actions
32 lines (29 loc) · 962 Bytes
/
react-native.config.js
File metadata and controls
32 lines (29 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* eslint-disable import/no-commonjs */
// react-native.config.js
/**
* React Native configuration for autolinking.
*
* NOTE: This is the base configuration. Platform-specific branches will modify this:
* - feat/google-in-app-provisioning: Conditionally enables Android based on SDK presence
* - feat/apple-in-app-provisioning: Enables iOS autolinking for react-native-wallet
*/
// Build dependencies config
const dependencies = {
'react-native-aes-crypto-forked': {
platforms: {
ios: null, // disable Android platform, other platforms will still autolink if provided
},
},
// Base branch disables wallet library on both platforms
// Platform-specific branches will enable their respective platform
'@expensify/react-native-wallet': {
platforms: {
android: null,
ios: null,
},
},
};
module.exports = {
dependencies,
// Note: Font assets now managed by expo-font plugin instead of React Native assets
};