mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-01 11:38:26 +01:00
Switch cli.appVersionSource to remote and enable autoIncrement on all production profiles so EAS bumps the build number every release instead of resetting to 1. Remove the dead android.versionCode from app.json and the unused EAS Update channel (no expo-updates installed).
96 lines
1.9 KiB
JSON
96 lines
1.9 KiB
JSON
{
|
|
"cli": {
|
|
"version": ">= 9.1.0",
|
|
"appVersionSource": "remote"
|
|
},
|
|
"build": {
|
|
"development": {
|
|
"environment": "development",
|
|
"developmentClient": true,
|
|
"distribution": "internal",
|
|
"android": {
|
|
"buildType": "apk"
|
|
},
|
|
"env": {
|
|
"EXPO_PUBLIC_WRITE_DEBUG": "1"
|
|
}
|
|
},
|
|
"development_tv": {
|
|
"environment": "development",
|
|
"developmentClient": true,
|
|
"distribution": "internal",
|
|
"android": {
|
|
"buildType": "apk"
|
|
},
|
|
"env": {
|
|
"EXPO_TV": "1",
|
|
"EXPO_PUBLIC_WRITE_DEBUG": "1"
|
|
}
|
|
},
|
|
"development-simulator": {
|
|
"environment": "development",
|
|
"developmentClient": true,
|
|
"distribution": "internal",
|
|
"ios": {
|
|
"simulator": true
|
|
},
|
|
"env": {
|
|
"EXPO_PUBLIC_WRITE_DEBUG": "1"
|
|
}
|
|
},
|
|
"preview": {
|
|
"distribution": "internal",
|
|
"env": {
|
|
"EXPO_PUBLIC_WRITE_DEBUG": "1"
|
|
}
|
|
},
|
|
"preview_tv": {
|
|
"distribution": "internal",
|
|
"env": {
|
|
"EXPO_TV": "1",
|
|
"EXPO_PUBLIC_WRITE_DEBUG": "1"
|
|
}
|
|
},
|
|
"production": {
|
|
"environment": "production",
|
|
"autoIncrement": true,
|
|
"android": {
|
|
"image": "latest"
|
|
}
|
|
},
|
|
"production-apk": {
|
|
"environment": "production",
|
|
"autoIncrement": true,
|
|
"android": {
|
|
"buildType": "apk",
|
|
"image": "latest"
|
|
}
|
|
},
|
|
"production-apk-tv": {
|
|
"environment": "production",
|
|
"autoIncrement": true,
|
|
"android": {
|
|
"buildType": "apk",
|
|
"image": "latest"
|
|
},
|
|
"env": {
|
|
"EXPO_TV": "1"
|
|
}
|
|
},
|
|
"production_tv": {
|
|
"environment": "production",
|
|
"autoIncrement": true,
|
|
"env": {
|
|
"EXPO_TV": "1"
|
|
},
|
|
"ios": {
|
|
"credentialsSource": "local"
|
|
}
|
|
}
|
|
},
|
|
"submit": {
|
|
"production": {},
|
|
"production_tv": {}
|
|
}
|
|
}
|