SPB Git

spb/focale Public

Swift 100%
2.9 KB · 91 lines xml
Raw Blame History
1<?xml version="1.0" encoding="UTF-8"?>2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">3<!--4  Info.plist — Focale5  Author: Simon-Pierre Boucher6  Contact: contact@spboucher.ai7-->8<plist version="1.0">9<dict>10	<key>CFBundleDevelopmentRegion</key>11	<string>fr</string>12	<key>CFBundleDisplayName</key>13	<string>Focale</string>14	<key>CFBundleExecutable</key>15	<string>$(EXECUTABLE_NAME)</string>16	<key>CFBundleIdentifier</key>17	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>18	<key>CFBundleInfoDictionaryVersion</key>19	<string>6.0</string>20	<key>CFBundleName</key>21	<string>$(PRODUCT_NAME)</string>22	<key>CFBundlePackageType</key>23	<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>24	<key>CFBundleShortVersionString</key>25	<string>$(MARKETING_VERSION)</string>26	<key>CFBundleVersion</key>27	<string>$(CURRENT_PROJECT_VERSION)</string>28	<key>UILaunchScreen</key>29	<dict/>30	<key>UISupportedInterfaceOrientations</key>31	<array>32		<string>UIInterfaceOrientationPortrait</string>33	</array>34	<key>NSCameraUsageDescription</key>35	<string>Focale est un appareil photo. La caméra sert uniquement à prendre tes photos — rien ne quitte ton appareil, jamais.</string>36	<key>NSPhotoLibraryUsageDescription</key>37	<string>Focale indexe ta photothèque sur l’appareil pour que chaque photo soit retrouvable. Aucune photo n’est copiée, déplacée ou envoyée où que ce soit : tout reste sur ton iPhone, toujours.</string>38	<key>NSPhotoLibraryAddUsageDescription</key>39	<string>Focale enregistre tes photos directement dans ta photothèque système, sans bibliothèque parallèle.</string>40	<key>NSLocationWhenInUseUsageDescription</key>41	<string>Le lieu est joint à tes photos pour les retrouver plus tard (« la photo prise au chalet »). Il reste sur ton appareil.</string>42	<key>UIBackgroundModes</key>43	<array>44		<string>processing</string>45	</array>46	<key>BGTaskSchedulerPermittedIdentifiers</key>47	<array>48		<string>ai.spboucher.focale.index</string>49	</array>50	<key>ITSAppUsesNonExemptEncryption</key>51	<false/>52	<key>LSSupportsOpeningDocumentsInPlace</key>53	<false/>54	<key>UTExportedTypeDeclarations</key>55	<array>56		<dict>57			<key>UTTypeIdentifier</key>58			<string>ai.spboucher.focale.recipe</string>59			<key>UTTypeDescription</key>60			<string>Recette Focale</string>61			<key>UTTypeConformsTo</key>62			<array>63				<string>public.json</string>64			</array>65			<key>UTTypeTagSpecification</key>66			<dict>67				<key>public.filename-extension</key>68				<array>69					<string>focalerecipe</string>70				</array>71			</dict>72		</dict>73	</array>74	<key>CFBundleDocumentTypes</key>75	<array>76		<dict>77			<key>CFBundleTypeName</key>78			<string>Recette Focale</string>79			<key>CFBundleTypeRole</key>80			<string>Viewer</string>81			<key>LSItemContentTypes</key>82			<array>83				<string>ai.spboucher.focale.recipe</string>84			</array>85			<key>LSHandlerRank</key>86			<string>Owner</string>87		</dict>88	</array>89</dict>90</plist>91