From 0eb451ffd06bf7b37fa9d4ac73e63c5256900e1f Mon Sep 17 00:00:00 2001
From: Lance Chant <13349722+lancechant@users.noreply.github.com>
Date: Mon, 1 Jun 2026 11:42:59 +0200
Subject: [PATCH] chore: removing entitlement for ios
Removed entitlement for IOS till apple approves
Made the QR login only for android
Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com>
---
app.json | 3 +--
app/(auth)/(tabs)/(home)/settings.tsx | 24 +++++++++++++-----------
2 files changed, 14 insertions(+), 13 deletions(-)
diff --git a/app.json b/app.json
index 6826211ca..296d674de 100644
--- a/app.json
+++ b/app.json
@@ -29,8 +29,7 @@
},
"supportsTablet": true,
"entitlements": {
- "com.apple.developer.networking.wifi-info": true,
- "com.apple.developer.networking.multicast": true
+ "com.apple.developer.networking.wifi-info": true
},
"bundleIdentifier": "com.fredrikburmester.streamyfin",
"icon": "./assets/images/icon-ios-liquid-glass.icon",
diff --git a/app/(auth)/(tabs)/(home)/settings.tsx b/app/(auth)/(tabs)/(home)/settings.tsx
index db223b2bf..69b980d3e 100644
--- a/app/(auth)/(tabs)/(home)/settings.tsx
+++ b/app/(auth)/(tabs)/(home)/settings.tsx
@@ -59,17 +59,19 @@ function SettingsMobile() {
-
-
-
- router.push("/(auth)/(tabs)/(home)/companion-login")
- }
- title={t("pairing.pair_with_phone")}
- textColor='blue'
- />
-
-
+ {Platform.OS !== "ios" && (
+
+
+
+ router.push("/(auth)/(tabs)/(home)/companion-login")
+ }
+ title={t("pairing.pair_with_phone")}
+ textColor='blue'
+ />
+
+
+ )}