mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-03-11 17:47:47 -05:00
During the review of the submission of the iOS and macOS versions of FeedDeck we encountered some problems, so that the app was rejected. For that we had to make the following changes: - Change the foreground and background color of the "Sign in with Apple" button. This means we are now using black as foreground and white as background color. - Add the "Sign in with Apple" capability to the macOS version, to handle the sign in within the app as it is done for the iOS version. - Add description in the "CreateDeck" widget, because it was confusing for the review and they were thinking that they had to provide their name.
19 lines
493 B
XML
19 lines
493 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>com.apple.developer.applesignin</key>
|
|
<array>
|
|
<string>Default</string>
|
|
</array>
|
|
<key>com.apple.security.app-sandbox</key>
|
|
<true/>
|
|
<key>com.apple.security.cs.allow-jit</key>
|
|
<true/>
|
|
<key>com.apple.security.network.client</key>
|
|
<true/>
|
|
<key>com.apple.security.network.server</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|