Blame view

ios/Runner/Info.plist 3.21 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>
753cf924   xiaoyu   change version
22
  	<string>$(MARKETING_VERSION)</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>
2bcacf87   xiaoyu   添加微信sdk需要的一些回调和工程配置
47
48
49
50
51
52
53
54
55
56
  		<dict>
  			<key>CFBundleTypeRole</key>
  			<string>Editor</string>
  			<key>CFBundleURLName</key>
  			<string>weixin</string>
  			<key>CFBundleURLSchemes</key>
  			<array>
  				<string>wx365e5a79956a450a</string>
  			</array>
  		</dict>
68a4c50a   xiaoyu   Merge remote-trac...
57
  	</array>
2a29701f   liangchengyou   feat:提交代码
58
  	<key>CFBundleVersion</key>
753cf924   xiaoyu   change version
59
  	<string>$(CURRENT_PROJECT_VERSION)</string>
c948a9ea   liangchengyou   feat:个人信息更改模块功能
60
  	<key>LSApplicationCategoryType</key>
d3c2451d   xiaoyu   配置修改
61
  	<string/>
dfd4d15d   xiaoyu   添加联系客服功能
62
63
64
65
66
67
68
69
70
  	<key>LSApplicationQueriesSchemes</key>
  	<array>
  		<string>tel</string>
  		<string>wechat</string>
  		<string>weixin</string>
  		<string>weixinULAPI</string>
  		<string>weixinURLParamsAPI</string>
  		<string>alipay</string>
  		<string>alipayshare</string>
d3c2451d   xiaoyu   配置修改
71
  		<string>alipays</string>
dfd4d15d   xiaoyu   添加联系客服功能
72
  	</array>
2a29701f   liangchengyou   feat:提交代码
73
74
  	<key>LSRequiresIPhoneOS</key>
  	<true/>
119ba920   liangchengyou   feat:视频播放器
75
76
77
78
  	<key>NSAppTransportSecurity</key>
  	<dict>
  		<key>NSAllowsArbitraryLoads</key>
  		<true/>
d3c2451d   xiaoyu   配置修改
79
80
  		<key>NSAllowsArbitraryLoadsInWebContent</key>
  		<true/>
119ba920   liangchengyou   feat:视频播放器
81
  	</dict>
c948a9ea   liangchengyou   feat:个人信息更改模块功能
82
  	<key>NSCameraUsageDescription</key>
82c8633c   biao   音频添加 页面优化
83
  	<string>需要访问相机,完成修改头像功能</string>
6f836681   liangchengyou   feat:原生ios端引入先声SDK
84
  	<key>NSMicrophoneUsageDescription</key>
82c8633c   biao   音频添加 页面优化
85
  	<string>需要获取录音,完成上课功能</string>
b85c8854   liangchengyou   feat:相机权限添加
86
  	<key>NSPhotoLibraryUsageDescription</key>
82c8633c   biao   音频添加 页面优化
87
  	<string>需要获取照片,完成上传头像功能</string>
4847e3dc   liangchengyou   feat:添加设备方向处理
88
89
  	<key>UIApplicationSupportsIndirectInputEvents</key>
  	<true/>
2a29701f   liangchengyou   feat:提交代码
90
91
92
93
  	<key>UILaunchStoryboardName</key>
  	<string>LaunchScreen</string>
  	<key>UIMainStoryboardFile</key>
  	<string>Main</string>
4847e3dc   liangchengyou   feat:添加设备方向处理
94
95
  	<key>UIRequiresFullScreen</key>
  	<true/>
2a29701f   liangchengyou   feat:提交代码
96
97
  	<key>UISupportedInterfaceOrientations</key>
  	<array>
2a29701f   liangchengyou   feat:提交代码
98
99
  		<string>UIInterfaceOrientationLandscapeLeft</string>
  		<string>UIInterfaceOrientationLandscapeRight</string>
f29687b2   biao   修复iOS偶现按钮消失问题,练习页...
100
  		<string>UIInterfaceOrientationPortrait</string>
2a29701f   liangchengyou   feat:提交代码
101
102
103
  	</array>
  	<key>UISupportedInterfaceOrientations~ipad</key>
  	<array>
2a29701f   liangchengyou   feat:提交代码
104
105
  		<string>UIInterfaceOrientationLandscapeLeft</string>
  		<string>UIInterfaceOrientationLandscapeRight</string>
f29687b2   biao   修复iOS偶现按钮消失问题,练习页...
106
107
  		<string>UIInterfaceOrientationPortrait</string>
  		<string>UIInterfaceOrientationPortraitUpsideDown</string>
2a29701f   liangchengyou   feat:提交代码
108
109
110
  	</array>
  	<key>UIViewControllerBasedStatusBarAppearance</key>
  	<false/>
2a29701f   liangchengyou   feat:提交代码
111
112
  </dict>
  </plist>