fix(topshelf): use .tvtopshelf bundle id and app group

The original com.fredrikburmester.streamyfin.TopShelf bundle id and
group.com.fredrikburmester.streamyfin app group were reserved by Apple
(previously created and deleted), so they could not be re-registered.
Switch the extension bundle id and shared app group to .tvtopshelf.
This commit is contained in:
Fredrik Burmester
2026-05-28 22:02:49 +02:00
parent 5db4a79e8a
commit afe9d33ee4

View File

@@ -15,7 +15,7 @@ function getBundleIdentifier(config) {
}
function getAppGroupIdentifier(config) {
return `group.${getBundleIdentifier(config)}`;
return `group.${getBundleIdentifier(config)}.tvtopshelf`;
}
function getKeychainAccessGroupIdentifier(config) {
@@ -83,7 +83,7 @@ const withTVOSTopShelf = (config) => {
const keychainAccessGroupIdentifier =
getKeychainAccessGroupIdentifier(config);
const bundleIdentifier = getBundleIdentifier(config);
const extensionBundleIdentifier = `${bundleIdentifier}.TopShelf`;
const extensionBundleIdentifier = `${bundleIdentifier}.tvtopshelf`;
const isTVBuild = process.env.EXPO_TV === "1";
if (isTVBuild) {