Blame view

ios/Runner/Info.plist 1.99 KB
2a29701f   liangchengyou   feat:提交代码
1
2
3
4
  <?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>
4847e3dc   liangchengyou   feat:添加设备方向处理
5
6
  	<key>CADisableMinimumFrameDurationOnPhone</key>
  	<true/>
2a29701f   liangchengyou   feat:提交代码
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  	<key>CFBundleDevelopmentRegion</key>
  	<string>$(DEVELOPMENT_LANGUAGE)</string>
  	<key>CFBundleDisplayName</key>
  	<string>Wow English</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>wow_english</string>
  	<key>CFBundlePackageType</key>
  	<string>APPL</string>
  	<key>CFBundleShortVersionString</key>
  	<string>$(FLUTTER_BUILD_NAME)</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
  	<string>$(FLUTTER_BUILD_NUMBER)</string>
  	<key>LSRequiresIPhoneOS</key>
  	<true/>
119ba920   liangchengyou   feat:视频播放器
29
30
31
32
33
  	<key>NSAppTransportSecurity</key>
  	<dict>
  		<key>NSAllowsArbitraryLoads</key>
  		<true/>
  	</dict>
6f836681   liangchengyou   feat:原生ios端引入先声SDK
34
35
  	<key>NSMicrophoneUsageDescription</key>
  	<string>需要获取录音完成后续功能</string>
b85c8854   liangchengyou   feat:相机权限添加
36
37
  	<key>NSPhotoLibraryUsageDescription</key>
  	<string>需要获取相册权限</string>
4847e3dc   liangchengyou   feat:添加设备方向处理
38
39
  	<key>UIApplicationSupportsIndirectInputEvents</key>
  	<true/>
2a29701f   liangchengyou   feat:提交代码
40
41
42
43
  	<key>UILaunchStoryboardName</key>
  	<string>LaunchScreen</string>
  	<key>UIMainStoryboardFile</key>
  	<string>Main</string>
4847e3dc   liangchengyou   feat:添加设备方向处理
44
45
  	<key>UIRequiresFullScreen</key>
  	<true/>
2a29701f   liangchengyou   feat:提交代码
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  	<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>
  	<false/>
2a29701f   liangchengyou   feat:提交代码
61
62
  </dict>
  </plist>