Created
July 1, 2021 18:54
-
-
Save ozzpy/86caba6b7090f66274bc699b40302bb8 to your computer and use it in GitHub Desktop.
info.plist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>CFBundleDevelopmentRegion</key> | |
<string>en</string> | |
<key>CFBundleDisplayName</key> | |
<string>OZZPY_APP_NAME</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>OZZPY_APP_VERSION_CODE</string> | |
<key>CFBundleURLTypes</key> | |
<array> | |
<dict> | |
<key>CFBundleURLName</key> | |
<string>com.getcapacitor.capacitor</string> | |
<key>CFBundleURLSchemes</key> | |
<array> | |
<string>capacitor</string> | |
</array> | |
</dict> | |
</array> | |
<key>CFBundleVersion</key> | |
<string>1</string> | |
<key>LSRequiresIPhoneOS</key> | |
<true/> | |
<key>NSAppTransportSecurity</key> | |
<dict> | |
<key>NSAllowsArbitraryLoads</key> | |
<true/> | |
</dict> | |
<key>NSCameraUsageDescription</key> | |
<string>Precisamos das permissões da sua câmera para poder postar sua foto de perfil, produtos na ecommerce e posts</string> | |
<key>NSLocationAlwaysUsageDescription</key> | |
<string>Precisamos do acesso a sua localização para oferecer serviços da sua região</string> | |
<key>NSLocationWhenInUseUsageDescription</key> | |
<string>Precisamos de acesso a sua localização para realizar está etapa e oferecer uma melhor qualidade em sua requisição.</string> | |
<key>NSMicrophoneUsageDescription</key> | |
<string>Não precisamos de acesso ao seu microfone.</string> | |
<key>NSPhotoLibraryAddUsageDescription</key> | |
<string>Gostariamos de armazenar fotos do perfil, produtos e posts em seu dispositivo.</string> | |
<key>NSPhotoLibraryUsageDescription</key> | |
<string>Precisamos de acesso a sua galeria para interagir com foto do perfil, adicionar novo post, adicionar novo produto, adicionar uma oportunidade de negócio.</string> | |
<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/> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment