Files
Michał Pierzchała 4cd40aa621 feat: polish replay test progress reporter (#998)
* 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
2026-07-01 16:21:56 +02:00

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,
},
},
};