質問編集履歴

2

fuzzballさんの追記依頼のスクリーンショットの追加

2019/06/25 04:01

投稿

Tomzy
Tomzy

スコア104

test CHANGED
File without changes
test CHANGED
@@ -217,3 +217,25 @@
217
217
  ### 追加情報2 info.plistで検索したBuildSettingのスクリーンショットを追加
218
218
 
219
219
  ![イメージ説明](60e478ca45013fbb1d29c89661c28962.png)
220
+
221
+
222
+
223
+ ### fuzzballさんの追記依頼のスクリーンショットの追加
224
+
225
+ choose info.plistボタンがある画面全体図
226
+
227
+ ![![イメージ説明](260d72a19dfbec0f0dddd0bff6848650.png)]
228
+
229
+ このchoose info.plistボタンを押して現れる画面
230
+
231
+ ![イメージ説明](39896a4c6e4ef4a5ead4d43dcfa7374d.png)
232
+
233
+
234
+
235
+ このダイアログの拡大図
236
+
237
+ ![イメージ説明](7f1c84ce2fc89b7cd9beb90aaf4609ba.png)
238
+
239
+ ここに現れたRouteSearchMemoというファイルは選択できず、
240
+
241
+ 下のchooseボタンも選べない状態です。

1

追加情報としてinfo.plistのコード情報とinfoで検索したBuildSettingのスクリーンショットを追加しました。

2019/06/25 04:01

投稿

Tomzy
Tomzy

スコア104

test CHANGED
File without changes
test CHANGED
@@ -69,3 +69,151 @@
69
69
 
70
70
 
71
71
  よろしくご教示ください。
72
+
73
+
74
+
75
+
76
+
77
+ ### 追加情報1 日本語info.plistのコード
78
+
79
+ ```
80
+
81
+ <?xml version="1.0" encoding="UTF-8"?>
82
+
83
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
84
+
85
+ <plist version="1.0">
86
+
87
+ <dict>
88
+
89
+ <key>CFBundleDevelopmentRegion</key>
90
+
91
+ <string>$(DEVELOPMENT_LANGUAGE)</string>
92
+
93
+ <key>CFBundleDisplayName</key>
94
+
95
+ <string>$(DISPLAY_NAME) </string>
96
+
97
+ <key>CFBundleExecutable</key>
98
+
99
+ <string>$(EXECUTABLE_NAME)</string>
100
+
101
+ <key>CFBundleIdentifier</key>
102
+
103
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
104
+
105
+ <key>CFBundleInfoDictionaryVersion</key>
106
+
107
+ <string>6.0</string>
108
+
109
+ <key>CFBundleName</key>
110
+
111
+ <string>$(PRODUCT_NAME)</string>
112
+
113
+ <key>CFBundlePackageType</key>
114
+
115
+ <string>APPL</string>
116
+
117
+ <key>CFBundleShortVersionString</key>
118
+
119
+ <string>1.0</string>
120
+
121
+ <key>CFBundleVersion</key>
122
+
123
+ <string>1</string>
124
+
125
+ <key>LSApplicationCategoryType</key>
126
+
127
+ <string></string>
128
+
129
+ <key>LSRequiresIPhoneOS</key>
130
+
131
+ <true/>
132
+
133
+ <key>LSSupportsOpeningDocumentsInPlace</key>
134
+
135
+ <true/>
136
+
137
+ <key>NSCameraUsageDescription</key>
138
+
139
+ <string>時刻表を取り出すため</string>
140
+
141
+ <key>NSPhotoLibraryAddUsageDescription</key>
142
+
143
+ <string>時刻表を取り出すため</string>
144
+
145
+ <key>NSPhotoLibraryUsageDescription</key>
146
+
147
+ <string>時刻表を取り出すため</string>
148
+
149
+ <key>UIFileSharingEnabled</key>
150
+
151
+ <true/>
152
+
153
+ <key>UILaunchStoryboardName</key>
154
+
155
+ <string>LaunchScreen</string>
156
+
157
+ <key>UIMainStoryboardFile</key>
158
+
159
+ <string>Main</string>
160
+
161
+ <key>UIRequiredDeviceCapabilities</key>
162
+
163
+ <array>
164
+
165
+ <string>armv7</string>
166
+
167
+ </array>
168
+
169
+ <key>UIStatusBarTintParameters</key>
170
+
171
+ <dict>
172
+
173
+ <key>UINavigationBar</key>
174
+
175
+ <dict>
176
+
177
+ <key>Style</key>
178
+
179
+ <string>UIBarStyleDefault</string>
180
+
181
+ <key>Translucent</key>
182
+
183
+ <false/>
184
+
185
+ </dict>
186
+
187
+ </dict>
188
+
189
+ <key>UISupportedInterfaceOrientations</key>
190
+
191
+ <array>
192
+
193
+ <string>UIInterfaceOrientationPortrait</string>
194
+
195
+ </array>
196
+
197
+ <key>UISupportedInterfaceOrientations~ipad</key>
198
+
199
+ <array>
200
+
201
+ <string>UIInterfaceOrientationPortrait</string>
202
+
203
+ <string>UIInterfaceOrientationPortraitUpsideDown</string>
204
+
205
+ <string>UIInterfaceOrientationLandscapeLeft</string>
206
+
207
+ <string>UIInterfaceOrientationLandscapeRight</string>
208
+
209
+ </array>
210
+
211
+ </dict>
212
+
213
+ </plist>
214
+
215
+ ```
216
+
217
+ ### 追加情報2 info.plistで検索したBuildSettingのスクリーンショットを追加
218
+
219
+ ![イメージ説明](60e478ca45013fbb1d29c89661c28962.png)