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>
|
753cf924
xiaoyu
change version
|
25
26
27
28
29
30
31
32
33
|
<key>LSApplicationQueriesSchemes</key>
<array>
<string>wechat</string>
<string>weixin</string>
<string>weixinULAPI</string>
<string>weixinURLParamsAPI</string>
<string>alipay</string>
<string>alipayshare</string>
</array>
|
68a4c50a
xiaoyu
Merge remote-trac...
|
34
35
36
37
38
39
40
41
42
43
44
45
|
<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
|
46
47
48
49
50
51
52
53
54
55
|
<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需要的一些回调和工程配置
|
56
57
58
59
60
61
62
63
64
65
|
<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...
|
66
|
</array>
|
2a29701f
liangchengyou
feat:提交代码
|
67
|
<key>CFBundleVersion</key>
|
753cf924
xiaoyu
change version
|
68
|
<string>$(CURRENT_PROJECT_VERSION)</string>
|
c948a9ea
liangchengyou
feat:个人信息更改模块功能
|
69
70
|
<key>LSApplicationCategoryType</key>
<string></string>
|
2a29701f
liangchengyou
feat:提交代码
|
71
72
|
<key>LSRequiresIPhoneOS</key>
<true/>
|
119ba920
liangchengyou
feat:视频播放器
|
73
74
75
76
77
|
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
|
c948a9ea
liangchengyou
feat:个人信息更改模块功能
|
78
79
|
<key>NSCameraUsageDescription</key>
<string>需要访问相机完成拍照</string>
|
6f836681
liangchengyou
feat:原生ios端引入先声SDK
|
80
81
|
<key>NSMicrophoneUsageDescription</key>
<string>需要获取录音完成后续功能</string>
|
b85c8854
liangchengyou
feat:相机权限添加
|
82
|
<key>NSPhotoLibraryUsageDescription</key>
|
5da1938f
liangchengyou
feat:更新相册权限文案
|
83
|
<string>需要获取照片用来修改头像</string>
|
4847e3dc
liangchengyou
feat:添加设备方向处理
|
84
85
|
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
|
2a29701f
liangchengyou
feat:提交代码
|
86
87
88
89
|
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
|
4847e3dc
liangchengyou
feat:添加设备方向处理
|
90
91
|
<key>UIRequiresFullScreen</key>
<true/>
|
2a29701f
liangchengyou
feat:提交代码
|
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
<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:提交代码
|
107
108
|
</dict>
</plist>
|