質問編集履歴

1

config.xml追加

2018/02/26 09:22

投稿

meamea
meamea

スコア15

test CHANGED
File without changes
test CHANGED
@@ -67,3 +67,163 @@
67
67
 
68
68
 
69
69
  その後Cameraプラグインをバージョンを4.0.1から2.4.1及び3.0.0に戻し再ビルドを行ったがエラーは解決しなかった。
70
+
71
+
72
+
73
+
74
+
75
+ # 導入プラグイン
76
+
77
+ Camera     4.0.1
78
+
79
+ Custom Config 5.0.2
80
+
81
+ Device 2.0.1
82
+
83
+ File 5.0.0
84
+
85
+ File Transfer 1.7.0
86
+
87
+ InAppBrowser 2.0.1
88
+
89
+ MonacaPlugin 3.2.0
90
+
91
+ NIFCloudMB 2.0.10
92
+
93
+ SplashScreen 5.0.1
94
+
95
+ Whitelist 1.3.3
96
+
97
+
98
+
99
+ ```config.xml
100
+
101
+ <?xml version="1.0" encoding="UTF-8"?>
102
+
103
+ <widget xmlns="http://www.w3.org/ns/widgets" id="" version="">
104
+
105
+ <name></name>
106
+
107
+ <description>Made with Monaca (http://monaca.mobi)</description>
108
+
109
+ <author/>
110
+
111
+ <content src="index.html"/>
112
+
113
+ <allow-navigation href="*"/>
114
+
115
+ <allow-intent href="itms:*"/>
116
+
117
+ <allow-intent href="itms-apps:*"/>
118
+
119
+ <preference name="loglevel" value="DEBUG"/>
120
+
121
+ <preference name="AndroidLaunchMode" value="singleTop"/>
122
+
123
+ <preference name="ErrorUrl" value=""/>
124
+
125
+ <preference name="SplashScreen" value="screen"/>
126
+
127
+ <preference name="AllowInlineMediaPlayback" value="false"/>
128
+
129
+ <preference name="BackupWebStorage" value="cloud"/>
130
+
131
+ <preference name="KeyboardDisplayRequiresUserAction" value="true"/>
132
+
133
+ <preference name="MediaPlaybackRequiresUserAction" value="false"/>
134
+
135
+ <preference name="SuppressesIncrementalRendering" value="false"/>
136
+
137
+ <preference name="TopActivityIndicator" value="gray"/>
138
+
139
+ <preference name="GapBetweenPages" value="0"/>
140
+
141
+ <preference name="PageLength" value="0"/>
142
+
143
+ <preference name="PaginationBreakingMode" value="page"/>
144
+
145
+ <preference name="PaginationMode" value="unpaginated"/>
146
+
147
+ <feature name="LocalStorage">
148
+
149
+ <param name="ios-package" value="CDVLocalStorage"/>
150
+
151
+ </feature>
152
+
153
+ <preference name="UIWebViewDecelerationSpeed" value="normal"/>
154
+
155
+ <plugin name="Camera" value="CDVCamera"/>
156
+
157
+ <preference name="WindowsStorePublisherName" value="My Name"/>
158
+
159
+ <preference name="WindowsStoreIdentityName" value="2a9fbf65-4738-10b6-441d-9a48327e30d3"/>
160
+
161
+ <preference name="monaca:targetFamilyiPhone" value="1"/>
162
+
163
+ <preference name="monaca:targetFamilyiPad" value="0"/>
164
+
165
+ <preference name="KeepRunning" value="true"/>
166
+
167
+ <preference name="monaca:AndroidIsPackageNameSeparate" value="false"/>
168
+
169
+ <preference name="Orientation" value="portrait"/>
170
+
171
+ <preference name="SplashScreenDelay" value="1000"/>
172
+
173
+ <preference name="Fullscreen" value="false"/>
174
+
175
+ <platform name="chrome">
176
+
177
+ <icon src="/platforms/chrome/icon.png" width="128" height="128"/>
178
+
179
+ <icon src="/platforms/chrome/icon.png" width="128" height="128"/>
180
+
181
+ </platform>
182
+
183
+ <preference name="FadeSplashScreenDuration" value="1000"/>
184
+
185
+ <preference name="ios-XCBuildConfiguration-TARGETED_DEVICE_FAMILY" value="1"/>
186
+
187
+ <preference name="AutoHideSplashScreen" value="true"/>
188
+
189
+ <preference name="FadeSplashScreen" value="true"/>
190
+
191
+ <preference name="ShowSplashScreenSpinner" value="false"/>
192
+
193
+ <access origin="*"/>
194
+
195
+ <access origin="*"/>
196
+
197
+ <preference name="DisallowOverscroll" value="true"/>
198
+
199
+ <preference name="EnableViewportScale" value="true"/>
200
+
201
+ <edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge">
202
+
203
+ <string>need camera access to take pictures</string>
204
+
205
+ </edit-config>
206
+
207
+ <edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge">
208
+
209
+ <string>need to photo library access to get pictures from there</string>
210
+
211
+ </edit-config>
212
+
213
+ <edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge">
214
+
215
+ <string>need location access to find things nearby</string>
216
+
217
+ </edit-config>
218
+
219
+ <edit-config target="NSPhotoLibraryAddUsageDescription" file="*-Info.plist" mode="merge">
220
+
221
+ <string>need to photo library access to save pictures there</string>
222
+
223
+ </edit-config>
224
+
225
+ </widget>
226
+
227
+
228
+
229
+ ```