mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-01 19:48:28 +01:00
fix(tv): only add user-management entitlement for tvOS builds (#1633)
This commit is contained in:
committed by
GitHub
parent
8507699cdd
commit
07e2faff07
@@ -4,9 +4,16 @@ const { withEntitlementsPlist } = require("expo/config-plugins");
|
|||||||
* Expo config plugin to add User Management entitlement for tvOS profile linking
|
* Expo config plugin to add User Management entitlement for tvOS profile linking
|
||||||
*/
|
*/
|
||||||
const withTVUserManagement = (config) => {
|
const withTVUserManagement = (config) => {
|
||||||
|
// Only add for tvOS builds. The entitlement is restricted by Apple and must
|
||||||
|
// be present in the provisioning profile, so injecting it into mobile builds
|
||||||
|
// breaks signing ("Entitlement ... not found and could not be included in
|
||||||
|
// profile"). The entitlement is only needed for tvOS
|
||||||
|
// TVUserManager.currentUserIdentifier.
|
||||||
|
if (process.env.EXPO_TV !== "1") {
|
||||||
|
return config;
|
||||||
|
}
|
||||||
|
|
||||||
return withEntitlementsPlist(config, (config) => {
|
return withEntitlementsPlist(config, (config) => {
|
||||||
// Only add for tvOS builds (check if building for TV)
|
|
||||||
// The entitlement is needed for TVUserManager.currentUserIdentifier to work
|
|
||||||
config.modResults["com.apple.developer.user-management"] = [
|
config.modResults["com.apple.developer.user-management"] = [
|
||||||
"runs-as-current-user",
|
"runs-as-current-user",
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user