Info.plist 値追加前 Info.plist 値追加後
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
.     <key>LSApplicationQueriesSchemes</key>
     <array>
         <string>googlechrome</string>
         <string>googlechromes</string>
         <string>googlechrome-x-callback</string>
     </array>
   <key>CFBundleDevelopmentRegion</key>    <key>CFBundleDevelopmentRegion</key>
   <string>en</string>    <string>en</string>
   <key>CFBundleExecutable</key>    <key>CFBundleExecutable</key>
   <string>$(EXECUTABLE_NAME)</string>    <string>$(EXECUTABLE_NAME)</string>
   <key>CFBundleIdentifier</key>    <key>CFBundleIdentifier</key>
   <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>    <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
   <key>CFBundleInfoDictionaryVersion</key>    <key>CFBundleInfoDictionaryVersion</key>
   <string>6.0</string>    <string>6.0</string>
   <key>CFBundleName</key>    <key>CFBundleName</key>
   <string>$(PRODUCT_NAME)</string>    <string>$(PRODUCT_NAME)</string>
   <key>CFBundlePackageType</key>    <key>CFBundlePackageType</key>
   <string>APPL</string>    <string>APPL</string>
   <key>CFBundleShortVersionString</key>    <key>CFBundleShortVersionString</key>
   <string>1.0</string>    <string>1.0</string>
   <key>CFBundleSignature</key>    <key>CFBundleSignature</key>
   <string>????</string>    <string>????</string>
   <key>CFBundleURLTypes</key>    <key>CFBundleURLTypes</key>
   <array>    <array>
       <dict>        <dict>
           <key>CFBundleURLName</key>            <key>CFBundleURLName</key>
           <string>me.ce.$(PRODUCT_NAME:rfc1034identifier)</string>            <string>me.ce.$(PRODUCT_NAME:rfc1034identifier)</string>
           <key>CFBundleURLSchemes</key>            <key>CFBundleURLSchemes</key>
           <array>            <array>
               <string>opcsample</string>                <string>opcsample</string>
           </array>            </array>
       </dict>        </dict>
   </array>    </array>
   <key>CFBundleVersion</key>    <key>CFBundleVersion</key>
   <string>1</string>    <string>1</string>
   <key>LSRequiresIPhoneOS</key>    <key>LSRequiresIPhoneOS</key>
   <true/>    <true/>
   <key>UILaunchStoryboardName</key>    <key>UILaunchStoryboardName</key>
   <string>Main</string>    <string>Main</string>
   <key>UIMainStoryboardFile</key>    <key>UIMainStoryboardFile</key>
   <string>Main</string>    <string>Main</string>
   <key>UIRequiredDeviceCapabilities</key>    <key>UIRequiredDeviceCapabilities</key>
   <array>    <array>
       <string>armv7</string>        <string>armv7</string>
   </array>    </array>
   <key>UISupportedInterfaceOrientations</key>    <key>UISupportedInterfaceOrientations</key>
   <array>    <array>
       <string>UIInterfaceOrientationPortrait</string>        <string>UIInterfaceOrientationPortrait</string>
       <string>UIInterfaceOrientationLandscapeLeft</string>        <string>UIInterfaceOrientationLandscapeLeft</string>
       <string>UIInterfaceOrientationLandscapeRight</string>        <string>UIInterfaceOrientationLandscapeRight</string>
   </array>    </array>
   <key>UISupportedInterfaceOrientations~ipad</key>    <key>UISupportedInterfaceOrientations~ipad</key>
   <array>    <array>
       <string>UIInterfaceOrientationPortrait</string>        <string>UIInterfaceOrientationPortrait</string>
       <string>UIInterfaceOrientationPortraitUpsideDown</string>        <string>UIInterfaceOrientationPortraitUpsideDown</string>
       <string>UIInterfaceOrientationLandscapeLeft</string>        <string>UIInterfaceOrientationLandscapeLeft</string>
       <string>UIInterfaceOrientationLandscapeRight</string>        <string>UIInterfaceOrientationLandscapeRight</string>
   </array>    </array>
</dict> </dict>
</plist> </plist>