Files
trezor-suite/suite-native/app/eas.json
Matej Kriz fc71be028e fix(suite-native): define node version for EAS explicitely
- It looks like Node.js 20.19.4 is the default on EAS, we need v24
2025-12-02 14:15:03 +01:00

105 lines
2.9 KiB
JSON

{
"cli": {
"version": ">= 7.1.1",
"appVersionSource": "remote",
"promptToConfigurePushNotifications": false
},
"build": {
"base": {
"node": "24.11.1",
"env": {
"EAS_NO_FROZEN_LOCKFILE": "1"
}
},
"develop": {
"extends": "base",
"env": {
"EXPO_PUBLIC_ENVIRONMENT": "develop"
},
"channel": "develop",
"autoIncrement": true,
"ios": {
"distribution": "store"
},
"android": {
"distribution": "internal"
}
},
"preview": {
"extends": "base",
"env": {
"EXPO_PUBLIC_ENVIRONMENT": "preview"
},
"channel": "preview",
"autoIncrement": true,
"developmentClient": true,
"credentialsSource": "remote",
"distribution": "internal"
},
"adhoc": {
"extends": "preview",
"env": {
"EXPO_PUBLIC_IS_DEVICE_AUTHENTICITY_CHECK_ENABLED": "false",
"EXPO_PUBLIC_IS_FIRMWARE_REVISION_CHECK_ENABLED": "false",
"EXPO_PUBLIC_IS_FIRMWARE_HASH_CHECK_ENABLED": "false"
},
"developmentClient": false,
"ios": {
"distribution": "store"
}
},
"production": {
"extends": "base",
"env": {
"EXPO_PUBLIC_ENVIRONMENT": "production",
"EXPO_PUBLIC_CODESIGN_BUILD": "true"
},
"autoIncrement": true,
"android": {
"credentialsSource": "remote"
},
"ios": {
"credentialsSource": "remote"
}
},
"productionAPK": {
"extends": "base",
"env": {
"EXPO_PUBLIC_ENVIRONMENT": "production",
"EXPO_PUBLIC_CODESIGN_BUILD": "true"
},
"android": {
"credentialsSource": "remote",
"buildType": "apk"
}
}
},
"submit": {
"develop": {
"ios": {
"bundleIdentifier": "io.trezor.suite.develop",
"ascAppId": "1632206646",
"appleTeamId": "C3P22XVH2C"
}
},
"adhoc": {
"ios": {
"bundleIdentifier": "io.trezor.suite.preview",
"ascAppId": "6739429089",
"appleTeamId": "C3P22XVH2C"
}
},
"production": {
"android": {
"track": "internal",
"changesNotSentForReview": true
},
"ios": {
"bundleIdentifier": "io.trezor.suite",
"ascAppId": "1631884497",
"appleTeamId": "C3P22XVH2C"
}
}
}
}