mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
4cd40aa621
* feat: polish replay test progress reporter * test: stabilize replay reporter cursor test in CI * refactor: dedupe replay reporter live progress checks * fix: make Expo build cache path configurable
28 lines
682 B
JavaScript
28 lines
682 B
JavaScript
const buildRunCacheDir =
|
|
process.env.AGENT_DEVICE_EXPO_BUILD_CACHE_DIR?.trim() || './.expo/build-run-cache';
|
|
|
|
module.exports = {
|
|
expo: {
|
|
name: 'Agent Device Tester',
|
|
slug: 'agent-device-test-app',
|
|
version: '1.0.0',
|
|
orientation: 'default',
|
|
userInterfaceStyle: 'automatic',
|
|
buildCacheProvider: {
|
|
plugin: 'expo-build-disk-cache',
|
|
options: {
|
|
cacheDir: buildRunCacheDir,
|
|
},
|
|
},
|
|
plugins: ['expo-router'],
|
|
ios: {
|
|
supportsTablet: true,
|
|
bundleIdentifier: 'com.callstack.agentdevicelab',
|
|
},
|
|
android: {
|
|
package: 'com.callstack.agentdevicelab',
|
|
predictiveBackGestureEnabled: false,
|
|
},
|
|
},
|
|
};
|