Skip to content

Commit cb20726

Browse files
Claudeclaude
andcommitted
fix(ios): resolve App Store validation errors
- Remove alpha channel from app icon (App Store rejects transparent icons) - Set TARGETED_DEVICE_FAMILY to iPhone only (avoids iPad orientation requirements) - Remove NDEF from NFC entitlement (disallowed with SDK 26.4 + min OS 16.0, we only use TAG) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent acb914a commit cb20726

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

app/ios/FareBot.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@
304304
PRODUCT_NAME = FareBot;
305305
SDKROOT = iphoneos;
306306
SWIFT_VERSION = 5.9;
307-
TARGETED_DEVICE_FAMILY = "1,2";
307+
TARGETED_DEVICE_FAMILY = 1;
308308
};
309309
name = Release;
310310
};
@@ -336,7 +336,7 @@
336336
PRODUCT_NAME = FareBot;
337337
SDKROOT = iphoneos;
338338
SWIFT_VERSION = 5.9;
339-
TARGETED_DEVICE_FAMILY = "1,2";
339+
TARGETED_DEVICE_FAMILY = 1;
340340
};
341341
name = Debug;
342342
};
-119 KB
Loading

app/ios/FareBot/FareBot.entitlements

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<dict>
55
<key>com.apple.developer.nfc.readersession.formats</key>
66
<array>
7-
<string>NDEF</string>
87
<string>TAG</string>
98
</array>
109
</dict>

0 commit comments

Comments
 (0)