Blame view

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