ページの先頭行へ戻る
Interstage AR Processing Server V1.0.1 開発ガイド
FUJITSU Software

4.3.4 ARClientDev-info.plist・Build Settingsの編集

ネイティブアプリケーションを開発する場合、info.plistを編集することになります。製品側で使用している記述を変更しないでください。製品側で使用している記述を変更すると、コンパイルエラーや正常に動作しない場合があります。

設定の変更が禁止されている対象は以下の通りです。

編集可・不可の詳細は以下ソースのコメントを参照ください。

<?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>
	<key>CFBundleDevelopmentRegion</key>
	<string>ja_JP</string>
	<key>CFBundleDisplayName</key>
	<string>InterstageAR</string>
	<key>CFBundleExecutable</key>
	<string>${EXECUTABLE_NAME}</string>
	<key>CFBundleIcons</key>
	<dict>
		<key>CFBundlePrimaryIcon</key>
		<dict>
			<key>CFBundleIconFiles</key>
			<array>
				<string>Icon_57.png</string>
				<string>Icon_114.png</string>
				<string>Icon_72.png</string>
				<string>Icon_144.png</string>
				<string>Icon_57.png</string>
				<string>Icon_114.png</string>
				<string>Icon_72.png</string>
				<string>Icon_144.png</string>
			</array>
			<key>UIPrerenderedIcon</key>
			<true/>
		</dict>
	</dict>
	<key>CFBundleIdentifier</key>
	<string>com.fujitsu.${PRODUCT_NAME:rfc1034identifier}</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>${PRODUCT_NAME}</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1.0</string>
<!-- 製品用のエクスポート/インポート機能です。編集不可です。 Start-->
	<key>UIFileSharingEnabled</key>
<true/>
<!-- 製品用のエクスポート/インポート機能です。編集不可です。 End-->
	<key>UIPrerenderedIcon</key>
	<true/>
	<key>UIRequiredDeviceCapabilities</key>
	<array>
		<string>armv7</string>
	</array>
<!-- 製品用のSupportedInterfaceOrientationsです。編集不可です。 Start-->
	<key>UISupportedInterfaceOrientations</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
	</array>
	<key>UISupportedInterfaceOrientations~ipad</key>
	<array>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
<!-- 製品用のSupportedInterfaceOrientationsです。編集不可です。 End-->
</dict>
</plist>