Files
coach-ios/ios/App/App/Info.plist
Sylvain Bettinelli 622cc03692 feat(ios): GIDClientID + URL scheme (reversed client id) pour GoogleSignIn
Info.plist : GIDClientID (client iOS Google) + CFBundleURLTypes avec le reversed
client id (com.googleusercontent.apps.817483900105-amoanmsold3j3k71retpjuhvrknsuunh)
pour le retour OAuth Google natif.
2026-06-05 06:20:24 +00:00

87 lines
3.2 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>CAPACITOR_DEBUG</key>
<string>$(CAPACITOR_DEBUG)</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>Coach Hypnotruck</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSCameraUsageDescription</key>
<string>Coach Hypnotruck peut utiliser l'appareil photo pour scanner les codes-barres alimentaires.</string>
<key>NSHealthShareUsageDescription</key>
<string>Coach Hypnotruck lit vos données de santé (FC, pas, calories, VO2max) pour adapter vos séances et tracker votre progression.</string>
<key>NSHealthUpdateUsageDescription</key>
<string>Coach Hypnotruck enregistre vos séances dans Santé pour centraliser votre suivi sportif.</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Permet le suivi GPS pendant les sorties même quand l'app est en arrière-plan.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Coach Hypnotruck utilise votre position pour tracer vos sorties course et VTT.</string>
<key>NSMotionUsageDescription</key>
<string>Coach Hypnotruck utilise les capteurs de mouvement pour mesurer votre activité.</string>
<key>NSSupportsLiveActivities</key>
<true/>
<key>NSPhotoLibraryUsageDescription</key>
<string>Coach Hypnotruck peut accéder à vos photos pour ajouter une photo de profil.</string>
<key>UIBackgroundModes</key>
<array>
<string>remote-notification</string>
<string>location</string>
<string>fetch</string>
</array>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
<key>GIDClientID</key>
<string>817483900105-amoanmsold3j3k71retpjuhvrknsuunh.apps.googleusercontent.com</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>com.googleusercontent.apps.817483900105-amoanmsold3j3k71retpjuhvrknsuunh</string>
</array>
</dict>
</array>
</dict>
</plist>