Skip to content

Commit 078d33c

Browse files
authored
docs: include fingerprint.config.js (#457)
1 parent 481821d commit 078d33c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

website/src/docs/configuration.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,4 +308,13 @@ export default {
308308
};
309309
```
310310

311-
The fingerprint calculation uses [`@expo/fingerprint`](https://docs.expo.dev/versions/latest/sdk/fingerprint/) under the hood.
311+
The fingerprint calculation uses [`@expo/fingerprint`](https://docs.expo.dev/versions/latest/sdk/fingerprint/) under the hood. This means that you can use advanced configuration through [`fingerprint.config.js` file](https://docs.expo.dev/versions/latest/sdk/fingerprint/#fingerprintconfigjs):
312+
313+
```js
314+
const config = {
315+
sourceSkips: [
316+
'ExpoConfigVersions', // omits Android versionCode and iOS buildNumber in fingerprint calculation
317+
],
318+
};
319+
module.exports = config;
320+
```

0 commit comments

Comments
 (0)