* ios: CallKit integration * notifying CallKit about outgoing call * changes * switching calls with CallKit * string * add NSE filtering entitlement * add NSE build scheme * remove some call limitations * calls enhancments * fixed calls on lockscreen * don't display useless notification * fix app state * ability to answer on call from chat item via CallKit --------- Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
62 lines
1.3 KiB
Plaintext
62 lines
1.3 KiB
Plaintext
<?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>BGTaskSchedulerPermittedIdentifiers</key>
|
|
<array>
|
|
<string>chat.simplex.app.receive</string>
|
|
</array>
|
|
<key>CFBundleIcons</key>
|
|
<dict>
|
|
<key>CFBundleAlternateIcons</key>
|
|
<dict>
|
|
<key>DarkAppIcon</key>
|
|
<dict>
|
|
<key>CFBundleIconFiles</key>
|
|
<array>
|
|
<string>DarkAppIcon</string>
|
|
</array>
|
|
<key>UIPrerenderedIcon</key>
|
|
<true/>
|
|
</dict>
|
|
</dict>
|
|
<key>CFBundlePrimaryIcon</key>
|
|
<dict>
|
|
<key>CFBundleIconFiles</key>
|
|
<array>
|
|
<string>AppIcon</string>
|
|
</array>
|
|
<key>UIPrerenderedIcon</key>
|
|
<true/>
|
|
</dict>
|
|
</dict>
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>CFBundleURLName</key>
|
|
<string>chat.simplex.app</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>simplex</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>ITSAppUsesNonExemptEncryption</key>
|
|
<false/>
|
|
<key>NSUserActivityTypes</key>
|
|
<array>
|
|
<string>INStartCallIntent</string>
|
|
</array>
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>audio</string>
|
|
<string>bluetooth-central</string>
|
|
<string>fetch</string>
|
|
<string>remote-notification</string>
|
|
<string>voip</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|