languages

A collection of programs made with different programming languages.
git clone git://evanalba.com/languages
Log | Files | Refs

Info.plist (2444B)


      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 <plist version="1.0">
      4 <dict>
      5 <!-- Put me in the [my_project]/ios/Runner/Info.plist file -->
      6 <!-- Google Sign-in Section -->
      7 <key>CFBundleURLTypes</key>
      8 <array>
      9 	<dict>
     10 		<key>CFBundleTypeRole</key>
     11 		<string>Editor</string>
     12 		<key>CFBundleURLSchemes</key>
     13 		<array>
     14 			<!-- TODO Replace this value: -->
     15 			<!-- Copied from GoogleService-Info.plist key REVERSED_CLIENT_ID -->
     16 			<string>com.googleusercontent.apps.43128747107-5vjil8rdghfmmqah5ppgsk5c5rjivkrc</string>
     17 		</array>
     18 	</dict>
     19 </array>
     20 <!-- End of the Google Sign-in Section -->
     21 	<key>CFBundleDevelopmentRegion</key>
     22 	<string>$(DEVELOPMENT_LANGUAGE)</string>
     23 	<key>CFBundleDisplayName</key>
     24 	<string>Penny</string>
     25 	<key>CFBundleExecutable</key>
     26 	<string>$(EXECUTABLE_NAME)</string>
     27 	<key>CFBundleIdentifier</key>
     28 	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
     29 	<key>CFBundleInfoDictionaryVersion</key>
     30 	<string>6.0</string>
     31 	<key>NSPhotoLibraryUsageDescription</key>
     32 	<string>This app needs access to the photo library.</string>
     33 	<key>NSCameraUsageDescription</key>
     34 	<string>This app needs access to the camera.</string>
     35 	<key>NSMicrophoneUsageDescription</key>
     36 	<string>This app needs access to the microphone.</string>
     37 	<key>CFBundleName</key>
     38 	<string>penny</string>
     39 	<key>CFBundlePackageType</key>
     40 	<string>APPL</string>
     41 	<key>CFBundleShortVersionString</key>
     42 	<string>$(FLUTTER_BUILD_NAME)</string>
     43 	<key>CFBundleSignature</key>
     44 	<string>????</string>
     45 	<key>CFBundleVersion</key>
     46 	<string>$(FLUTTER_BUILD_NUMBER)</string>
     47 	<key>LSRequiresIPhoneOS</key>
     48 	<true/>
     49 	<key>UILaunchStoryboardName</key>
     50 	<string>LaunchScreen</string>
     51 	<key>UIMainStoryboardFile</key>
     52 	<string>Main</string>
     53 	<key>UISupportedInterfaceOrientations</key>
     54 	<array>
     55 		<string>UIInterfaceOrientationPortrait</string>
     56 		<string>UIInterfaceOrientationLandscapeLeft</string>
     57 		<string>UIInterfaceOrientationLandscapeRight</string>
     58 	</array>
     59 	<key>UISupportedInterfaceOrientations~ipad</key>
     60 	<array>
     61 		<string>UIInterfaceOrientationPortrait</string>
     62 		<string>UIInterfaceOrientationPortraitUpsideDown</string>
     63 		<string>UIInterfaceOrientationLandscapeLeft</string>
     64 		<string>UIInterfaceOrientationLandscapeRight</string>
     65 	</array>
     66 	<key>CADisableMinimumFrameDurationOnPhone</key>
     67 	<true/>
     68 	<key>UIApplicationSupportsIndirectInputEvents</key>
     69 	<true/>
     70 </dict>
     71 </plist>