CFBundlePackageType APPL CFBundleExecutable <%= @app_options[:name] %>Launcher CFBundleName <%= @app_options[:name] %> CFBundleDisplayName <%= @app_options[:name] %> CFBundleShortVersionString <%= @release.version %> CFBundleVersion <%= @release.version %> CFBundleIconFile AppIcon CFBundleIconName AppIcon <%= if schemes = @app_options[:url_schemes] do %> CFBundleURLTypes <%= for scheme <- schemes do %> CFBundleURLName <%= @app_options[:name] %> CFBundleURLSchemes <%= scheme %> <% end %> <% end %> <%= if types = @app_options[:document_types] do %> CFBundleDocumentTypes <%= for type <- types do %> CFBundleTypeName <%= type[:name] %> CFBundleTypeRole <%= type[:role] %> CFBundleTypeExtensions <%= for ext <- type[:extensions] do %> <%= ext %> <% end %> <%= if type[:icon_path] do %> CFBundleTypeIconFile <%= type[:name] %>Icon <% end %> <% end %> <% end %> <%= if @app_options[:app_type] == :agent do %> LSUIElement <% end %>