This commit includes a complete replacement of the binary content of the image files, significantly updating the visual assets of the application to enhance user experience and align with new design standards. Key changes include: - Resetting session state for the subscription offer popup in `App.xaml.cs`. - Replacing buttons with touch-friendly labels in `Step2ExternalControl.xaml` and `Step3Control.xaml`. - Updating image sources and bindings in `WalkerListControl.xaml` to reflect premium subscription status. - Adding a new converter class `PremiumToChatImageConverter` in `CommonConverters.cs`. - Modifying various view models to manage premium user status and subscription offers. - Enhancing UI layouts across multiple XAML files for improved visibility and functionality. - Updating localized strings in `Text.Designer.cs` and incrementing the app version in `Info.plist`. These changes aim to improve the overall functionality, maintainability, and user experience of the application.
76 lines
2.4 KiB
Plaintext
76 lines
2.4 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>LSRequiresIPhoneOS</key>
|
|
<true/>
|
|
<key>UIDeviceFamily</key>
|
|
<array>
|
|
<integer>1</integer>
|
|
</array>
|
|
<key>UIRequiredDeviceCapabilities</key>
|
|
<array>
|
|
<string>arm64</string>
|
|
</array>
|
|
<key>UISupportedInterfaceOrientations</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
</array>
|
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
</array>
|
|
<key>XSAppIconAssets</key>
|
|
<string>Assets.xcassets/appicon.appiconset</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string></string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.271</string>
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
<true/>
|
|
</dict>
|
|
<key>NSLocationWhenInUseUsageDescription</key>
|
|
<string>gehgassi will use your location to show you requests, dogwalkers and offers in your area.</string>
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>gehgassi needs access to your camera so that you can take photos for your profile and the profile of your dog(s).</string>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>This app needs access to microphone for taking videos.</string>
|
|
<key>NSPhotoLibraryAddUsageDescription</key>
|
|
<string>gehgassi needs access to your photo gallery so that you can upload photos for your profile and that of your dog.</string>
|
|
<key>NSPhotoLibraryUsageDescription</key>
|
|
<string>gehgassi needs access to your photo gallery so that you can upload photos for your profile and that of your dog.</string>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>CFBundleLocalizations</key>
|
|
<array>
|
|
<string>de</string>
|
|
</array>
|
|
<key>UIRequiresFullScreen</key>
|
|
<true/>
|
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
<false/>
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleURLName</key>
|
|
<string>com.gehgassi.gehgassi</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>gehgassiapp</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>remote-notification</string>
|
|
</array>
|
|
<key>CFBundleVersion</key>
|
|
<string>271</string>
|
|
</dict>
|
|
</plist>
|