Blame view

ios/Runner/Info.plist 2.41 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
  	<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>
68a4c50a   xiaoyu   Merge remote-trac...
25
26
27
28
29
30
31
32
33
34
35
36
37
  	<key>CFBundleURLTypes</key>
  	<array>
  		<dict>
  			<key>CFBundleTypeRole</key>
  			<string>Editor</string>
  			<key>CFBundleURLName</key>
  			<string>ishowwoweng</string>
  			<key>CFBundleURLSchemes</key>
  			<array>
  				<string>ishowwoweng</string>
  			</array>
  		</dict>
  	</array>
2a29701f   liangchengyou   feat:提交代码
38
39
  	<key>CFBundleVersion</key>
  	<string>$(FLUTTER_BUILD_NUMBER)</string>
c948a9ea   liangchengyou   feat:个人信息更改模块功能
40
41
  	<key>LSApplicationCategoryType</key>
  	<string></string>
2a29701f   liangchengyou   feat:提交代码
42
43
  	<key>LSRequiresIPhoneOS</key>
  	<true/>
119ba920   liangchengyou   feat:视频播放器
44
45
46
47
48
  	<key>NSAppTransportSecurity</key>
  	<dict>
  		<key>NSAllowsArbitraryLoads</key>
  		<true/>
  	</dict>
c948a9ea   liangchengyou   feat:个人信息更改模块功能
49
50
  	<key>NSCameraUsageDescription</key>
  	<string>需要访问相机完成拍照</string>
6f836681   liangchengyou   feat:原生ios端引入先声SDK
51
52
  	<key>NSMicrophoneUsageDescription</key>
  	<string>需要获取录音完成后续功能</string>
b85c8854   liangchengyou   feat:相机权限添加
53
  	<key>NSPhotoLibraryUsageDescription</key>
5da1938f   liangchengyou   feat:更新相册权限文案
54
  	<string>需要获取照片用来修改头像</string>
4847e3dc   liangchengyou   feat:添加设备方向处理
55
56
  	<key>UIApplicationSupportsIndirectInputEvents</key>
  	<true/>
2a29701f   liangchengyou   feat:提交代码
57
58
59
60
  	<key>UILaunchStoryboardName</key>
  	<string>LaunchScreen</string>
  	<key>UIMainStoryboardFile</key>
  	<string>Main</string>
4847e3dc   liangchengyou   feat:添加设备方向处理
61
62
  	<key>UIRequiresFullScreen</key>
  	<true/>
2a29701f   liangchengyou   feat:提交代码
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  	<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:提交代码
78
79
  </dict>
  </plist>