Get access to over 100 FireMonkey cross platform samples for Android, IOS, OSX, Windows, and Linux!

AppmethodCode SnippetDelphiFiremonkeyIDEIOS

Entitlements Fix For Publishing Apps To IOS 8.1.3 In Delphi XE7 Firemonkey And Appmethod

| Delphi 11 10 XE8 XE7 XE Seattle Berlin Tokyo Rio Firemonkey Delphi Android Delphi IOS

Delphi XE7 Firemonkey Entitlements Fix For IOS 813 | Delphi 11 10 XE8 XE7 XE Seattle Berlin Tokyo Rio Firemonkey Delphi Android Delphi IOSDeveloper Sarina DuPont from Embarcadero has a blog post up highlighting a change that Apple made to the IOS IPA file format requirements in IOS 8.1.3. Basically in order to install apps in IOS 8.1.3 they have to have a new piece of information added to the Entitlements file which gets compiled in the IOS IPA. This change is required for both Enterprise and App Store IPA files. Sarina’s blog post covers three different ways you can make this change to the Entitlements file which gets compiled in Delphi XE7 Firemonkey and Appmethod apps for IOS. The information that you add to the Entitlements file can be a combination of your Apple Developer Program Id which is a 10 character ID like 2EHNI3635M, a dot, and then either your App ID (ModuleName) or an App ID wildcard. The blog post has detailed instructions on where you find these two pieces of information. Here is a sample Entitlement.TemplateiOS.xml file that worked for me and our Enterprise application. It uses a wildcard App ID (com.embarcadero.*):
<?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>
<%getTaskAllowKey%>
<key>application-identifier</key>
<string>2EHNI3635M.com.embarcadero.*</string>
<%applicationIdentifier%>
<%pushNotificationKey%>
<%keychainAccessGroups%>
</dict>
</plist>

Head over and read the full blog post by Sarina on modifying your Entitlements file to publish to IOS 8.1.3 with Delphi XE7 Firemonkey and Appmethod.

Have Delphi Firemonkey questions? Ask and get answers on StackOverflow.

Related posts
DelphiDemoFiremonkeyLinuxOSXShowcaseWindows

AutoBlogAI: FireMonkey Client To Leverage LLMs And Generative AI For Blogging

DelphiFiremonkeyShowcaseUtilityWindows

Unleashing Creativity With Song Writer AI: A Deep Dive

DelphiFiremonkeyShowcaseWindows

How To Build Stable Diffusion Text To Image Prompts

AndroidC++BuilderDelphiFiremonkeyIOSOSXWindows

FireMonkey 10.4.2 Features Updated iOS 14, Android 11, And macOS 11 Support Plus Hundreds Of Fixes

Sign up for our Newsletter and
stay informed

Leave a Reply