Apparency
A User Guide
Looking for something specific? The User Guide and FAQ are indexed within the app — open Apparency, click on the Help menu (Command-?), and type in the Search field. Results listed under Help Topics link directly to the appropriate User Guide section or FAQ entry here.
Opening an App in Apparency

There are several ways to open an app using Apparency:
- In Apparency, choose File > Open, locate the app and click Open.
- In the Finder, locate the app and do one of the following:
- Drag the app icon onto the Apparency icon, either in your Dock or in your Applications folder.
- Select the app icon and choose Finder > Services > Open With Apparency (under the Development group).
- Control-click the app icon and choose Open With Apparency, near the bottom of the context menu. (This item might be grouped under Services, depending on how many services are applicable.)
- If the app is in your Dock, control-click on its icon there, and choose Options > Show In Finder. Then continue in the Finder as above.
If you don't see the Open With Apparency item in the Services menu or in the Finder context menu, choose Finder > Services > Services Preferences, go to the Development group, and make sure that Open With Apparency is checked. You can also add a keyboard shortcut here, if you wish, but that's not necessary to make the menu item appear.
Whichever method you choose, Apparency opens a new window, showing the app itself, along with any components inside it:
You can actually open any macOS bundle with Apparency, including an app plug-in or a system framework. You can also open a “bare” executable file, such as one found in /usr/local/bin. A bare executable can have many of the same attributes as a bundle, and can even have an embedded Info.plist.
Examining the App Structure
The browser, on the left side of the main Apparency window, shows the basic structure of the app:
At the top of this view is the app itself. Most apps also contain other components inside them — frameworks, plug-ins, app extensions, Spotlight importers and so on. These components are shown underneath the main app, using a hierarchical view similar to the Finder's List view. If any of the components contain sub-components, use the disclosure button to expand these further.
Apparency doesn't show all of the individual files inside the app bundle. The Finder is a better tool for navigating files: control-click the app icon and choose Show Package Contents.Rather, Apparency shows bundles — and bare executables — that are found in specific places within the app, as defined by macOS. For example, macOS requires app extensions to be placed in Contents/PlugIns, so that is one place that Apparency looks. The point is to show components that add to system functionality (as is the case with app extensions, for example), as well as those that are simply part of the app's internal organization (such as frameworks).
By default, Apparency looks for components only in well-defined places, as defined by macOS, rather than examining every file and folder inside the app (which could become quite slow for large apps). However, this may miss components, which sometimes live in other places, such as the Resources folder. If you want Apparency to try harder to find components, when you select the app in the File > Open dialog, check Look for components in de facto “code places” before clicking Open. If the app is already open in Apparency, use File > Re-open with Options to quickly re-open it.
The columns of the browser show some basic information about the app, and any components:
- The Kind column shows the type of component, akin to what the Finder would show for this bundle (although for certain types, such as app extensions, Apparency tries to provide a more detailed kind).
- The Version columns shows the full version information, such as you'd see in a standard app About window.
- The Signature column gives a summary of the code signature information for the component, which is discussed at much length below.
Click on the Name, Kind or Version column title to re-order the components accordingly. This can be useful for an app with a large number of components.
Getting Information About a Component
The info pane, on the right side of the main Apparency window, shows information about the app or
other component that is currently selected in the browser:
General Information
In the top part of the info pane, Apparency shows general information about the app or component:
- Kind is akin to the Kind shown by the Finder. You can click on this text to show the underlying Uniform Type Identifier (UTI) that macOS defines for this kind (e.g. “com.apple.application-bundle”).
- Kind Detail is shown only for certain kinds of component. For example, for an “Application and System Extension,” Apparency shows the specific type of extension, such as “Photo Editing Extension” or “Share Extension.” You can click on this text to show the underlying identifier (e.g. “com.apple.share-services”).
- Executable shows the supported processor architecture, such as Intel — 64-bit
or Apple Silicon — 64-bit. If the app is “universal,” multiple
architectures are shown. You can click on this text to show the underlying symbolic name used by macOS,
such as
x86_64
orarm64
. You can also get more information about the executable as described below. Note that some components don't have an executable, or (less often) have an interpreted script as their executable, so you may see no value or a specific file kind here. - Requires shows the oldest version of macOS supported by the component (for any processor architecture), if the component declares this. This information is most meaningful on the top-level app (even though it might still be declared on lower-level components). See more info here.
- Where shows the location of the component. Except for the app itself, the location is given relative to the app or other immediate containing component. If you want to go to that location, you can choose Component > Show Component In Finder (Cmd-Shift-R).
- Downloaded shows when the app was downloaded, if this information is available. You can click on this text once to show the app that did the download (e.g. Safari), and again for the kind of download. Note that download information is not available for apps installed via the Mac App Store or macOS Installer packages, or generally for apps that have updated themselves. Also, see more info here.
- Identifier shows the bundle identifier of the component. This is the name by which macOS knows the app or component, and you'll sometimes see these identifiers used elsewhere, such as in the name of preferences files or in Console logs.
- Version shows the full version information, such as you'd see in a standard app About window: the first number is the “short version” and the one in parentheses is the “bundle version,” which are both significant parts of Apple's standard versioning scheme.
- Copyright shows the copyright information associated with the bundle. If this ends with an ellipsis (…) character, Apparency truncated long copyright text, but you can hold the pointer over it to show the full text.
Most of these attributes can be selected, and thus copied. Unfortunately, this can make the cycling attributes, such as Kind, a bit squirrelly to work with. If you single-click, Apparency will still cycle through the different values. If you double- or triple-click, Apparency will instead enter selection mode, with the appropriate select-word or select-all behavior. If you want to get out of selection mode, so that the attribute values cycle again, press the Escape key. Or click on the label for the attribute, instead of the attribute value: this will always cycle the attribute, regardless of selection state.
Document Types and Other Info.plist Properties
In the middle part of the info pane, Apparency shows a summary of the file and other types that the app provides to macOS, via its Info.plist file:
- Document Types tell macOS what kind of files the app can open, such as through the File > Open dialog, or via drag-and-drop. These can include standard types (like text or JPEG files) and/or app-specific types (like a Keynote presentation).
- Uniform Type Identifiers (or UTIs) define new types of files that are not standard to macOS. These typically work together with the Document Types, but are not necessarily the same lists — an app doesn't need to re-define standard types, but it may define types for files that are not documents per se (such as a plug-in or the like).
- URL Schemes tell macOS what kind of URLs the app can handle. Sometimes, these
are common URL schemes; for example, an FTP client might declare that it handles
ftp:
URLs, while Apple Mail handlesmailto:
URLs. More often, these are new schemes that are custom to the app, and begin with anx-
prefix by convention. Custom schemes are typically used for lightweight inter-app linking, such a URL in a purchase receipt e-mail, which when clicked, opens the app and pre-populates the registration dialog. - Services define new items that the app would like to add to the Services menu in the Finder and/or other apps. Services act on a selected item — such as a file, some text or an image — and do [something] with it, depending on the app. In fact, this is how Apparency adds the Open With Apparency item to the Finder: in this case, the [something] that Apparency does is simply to the open the selected app. Note that services provided by apps can be enabled or disabled, so that you don't wind up with a Services menu cluttered with garbage you never use: open System Settings and go to Keyboard > Keyboard > Keyboard Shortcuts > Services. (Or on macOS 12 or earlier, open System Preferences and go to Keyboard > Shortcuts > Services.)
For each of these, Apparency simply shows how many of each type is found (because it is difficult to summarize
the contents in any succinct way). To see the actual definitions, click the
Code Signature, Sandbox and Gatekeeper Info
In the lower part of the info pane, Apparency shows the status of the code signature and other security features:
- App Sandbox shows if the app is sandboxed, which is Apple's scheme for limiting the capabilities of an app (something like the restrictions on all apps in iOS). Apps distributed through the Mac App Store are required to use the App Sandbox, but other apps may also do so.
- Hardening shows if additional runtime protections have been enabled. This feature was introduced in macOS 10.14 (Mojave), and is intended to limit the damage that a compromised app can do, by turning off capabilities that it doesn't normally require. Hardening generally covers a different set of capabilities than — and is less restrictive than — the App Sandbox, so an app might use both.
- Notarization shows if the app was submitted to
Apple's notarization service,
which checks for certain security features (such as hardening) and does some sort of malware scan. If these
automated checks pass, Apple grants a notarized status to the app.
A description of each possible notarization status is available here
— or move the pointer over the status and click the help
button that appears.
- Entitlements are assigned to the app when it is signed by the developer. An entitlement is an Apple-defined property that grants some capability to the app, as described below. Click the Show Entitlements button to show these properties.
- Gatekeeper shows how the Gatekeeper
feature of macOS would handle the app when you open it after download, at least by default. Gatekeeper
checks the code signature and notarization status, among other things, to determine an applicable “policy.”
A description of each possible Gatekeeper status is available here
— or move the pointer over the status and click the help
button that appears.
- Signed By shows the name of the certificate that was used to sign the app. Typically,
this is either an Apple certificate — for apps that come with macOS, or that are downloaded from
the Mac App Store — or an Apple-issued Developer ID certificate, in which case the name of the
developer is shown.
Descriptions of possible Signed By identities are available here
— or move the pointer over the identity and click the help
button that appears.
Note that you can select more than one component in the browser. When you do this, the info pane will show the information that is identical for all of the selected components. This is a quick way to determine if multiple components support the same processor architectures, or have the same code-signing identity, for example. Any attributes that have different values for one or more of the selected components will show Multiple values instead.
Getting Details About a Component
While the info pane gives you a summary of the selected app or component, there are buttons in the toolbar that allow you to see more details. (Some of these are also available through buttons in the info pane itself; use whichever one is more convenient.)
Show the Code Signature
If the selected app or component was signed, click the Signature toolbar button
Click the Show Certificate button to examine the certificate that created the signature, and the entire chain up to the Certificate Authority, which is typically the Apple Root CA. Select an individual certificate in the chain, and click the disclosure arrow next to Details to see more information.
You can also export a certificate by dragging the certificate icon (from the lower pane) and dropping it in the Finder. This will give you a DER-format file that you can open with Certificate Assistant, or manipulate with command-line tools likesecurity(1)
oropenssl(1)
.
Show the Info Property List
The information property list — or simply, the Info.plist — contains a number of Apple-defined properties. These tell macOS how the app or component works, what it can do, what icon to show, what documents it can handle, and many other things. Apparency extracts a few interesting bits of the Info.plist to show in its info pane — such as the version information, the bundle identifier, and so on — but you may still want to examine the Info.plist in its entirety.
Click the Property List toolbar button
Most of the Info.plist keys have some sort of documentation on Apple's Developer site: to jump directly to
that documentation, select a row and click Open Apple Documentation for Key. (If this button
is disabled, Apparency doesn't have a direct link for that key, either because the key isn't documented or because
we didn't find the documentation to index it.) Alternatively, when you move the pointer over a key name, if a link button
If you're looking for a particular key or value, click in the search field (or use Cmd-F) and type the text
you want to find. Apparency will show only the rows that match, or for arrays or dictionaries, the rows that contain matches.
Click the search options button
Show the Entitlements
The entitlements of an app or component enumerate specific capabilities that the component requires to do its work. macOS grants (or denies) these capabilities to the app or component, based on the entitlements and (sometimes) other restrictions. Entitlements take several forms:
- If the App Sandbox is enabled, macOS denies many capabilities by default (for example, the ability
to read or write user files, or to make or receive network connections). The required capabilities
are then granted by macOS if the appropriate entitlement is present; for example, setting
com.apple.security.network.client
toYES
allows outgoing network connections. (This ability is limited to the entitlements that are defined by Apple, and for apps distributed through the Mac App Store, they are subject to rejection by App Review.) - If Hardening is enabled, the scheme is similar: macOS defaults to denying a number of less commonly
needed capabilities — especially ones that Apple deems subject to exploitation if the app is compromised.
If the app actually requires any of those capabilities to function properly, the appropriate entitlements will
cause macOS to grant them. For example, setting
com.apple.security.personal-information.location
toYES
allows the app to request location information. - Outside of App Sandbox or Hardening, many macOS capabilities and Apple services are available only to apps or components having the appropriate entitlements. For example, the ability to receive push notifications, or the ability to use iCloud services, are controlled by entitlements. (Again, these may be subject to App Review if the app is distributed through the Mac App Store. Outside of the App Store, they may require a provisioning profile as discussed below.)
- A few entitlements relate to the sharing of data between different apps from the same
developer. For example,
com.apple.security.application-groups
establishes shared folders which multiple apps can use to store or exchange data (as described below). - Finally, there are a vast number of private-to-Apple entitlements, which control access to macOS
services that Apple deems as off-limits to third party apps entirely. The ability to
access Internet Accounts information, or to talk to the App Store, are two examples, but there are
many, and they are undocumented, for obvious reasons. Typically, these entitlements start with a
com.apple.private
prefix (but some that don't are probably still considered private). Note that macOS typically refuses to grant capabilities for private entitlements unless the app or component was signed by Apple itself.
Click the Entitlements toolbar button
As described above for the Info.plist, documentation links to Apple's Developer site are available for some entitlement keys.
Likewise, you can use the search field to filter entitlements on specific key or value text.
If the selected app has a provisioning profile, as discussed below, there will be an additionalcolumn that shows whether each entitlement is allowed by the profile. See here for a description of each possible entitlement provisioning status.
Apparency can also show a “merged” view of all entitlements requested by all of the components of an app. This can be helpful to get an overall sense of what the app will do, especially when creating a Privacy Preferences Policy Control (PPPC) Profile. Use File > Show Entitlements for All Executables (Cmd-Control-A) to view the merged entitlements: these are explained further in the FAQ.
Show Executable Information
Apparency can show details about the executable file associated with an app or component.
Click the Executable toolbar button
The information shown for an executable is mostly of the sort you would otherwise need the
otool(1)
or objdump(1)
tools to access:
- The Location shows the path to the executable file, relative to the component itself.
Click the adjacent Show in Finder
- The Type shows the Mach-O binary type of the executable, which generally follows from the kind of component — a dynamic library for a framework, a bundle for a plug-in, an executable for an app extension, and so on.
- The Processor Architecture pop-up shows which architectures are supported by the executable.
Most executables today support both the Intel — 64-bit and
Apple Silicon — 64-bit architectures. Choosing a different architecture
from the pop-up will update the rest of the executable information, although you might not notice any change if the
displayed information is all identical. Hold down the Option key to show symbolic architecture names (such as
x86_64
orarm64
) in the pop-up menu. (If there is only one supported architecture, the pop-up button will be disabled, since there's no other choice.) - The Platform is almost always macOS, but you may occasionally see something different, such as UIKit for Mac (“Catalyst”).
- The Deployment Version shows the earliest supported version of macOS that was specified by the developer when building the executable. This information is generally also encoded in the Info.plist of the component, but not all components have an Info.plist, and this is a more direct record of the configuration specified when the executable was linked. (The deployment version can differ for Catalyst apps, where it tends to track an iOS version rather than a macOS version.)
- Likewise, the SDK Version shows the newest version of macOS from which the executable uses system APIs. That doesn't mean it won't run on newer versions of macOS, just that it doesn't use any APIs that were introduced on newer versions. In practice, this pretty much corresponds to the version of Xcode that was used to build the executable, since Apple no longer provide multiple SDK versions within a single version of Xcode. (Again, this version can differ for Catalyst apps.)
- The Dynamic Library Install Name (applicable only to the Mach-O dynamic library type)
shows the internal install path for this library. This is saved at app build time, so that the library can be
found again when the app is eventually run. For most dynamic libraries packaged inside of an app, this will start with the
special
@rpath
,@loader_path
or@executable_path
variable, which locates the library relative to the component that is using it, no matter where the app itself is installed. See thedyld(1)
man page for more information about these special values. - Dynamically Linked Libraries shows all of the dynamic libraries that are used (directly) by this
executable. This is typically a mixture of macOS system libraries and (perhaps) frameworks or dynamic libraries
bundled with the app. The Where column shows where each library is expected to be found; this comes
from the library's Dynamic Library Install Name (see above), and might use a special value like
@rpath
. The libraries are initially sorted by the specified link order, but you can click the column headings to re-order them; sorting on the Where column is a handy way to group system libraries and bundled ones. The last two columns show if any of the libraries are weakly-linked (🔗) or are being re-exported as part of an umbrella framework (☂️). - Runtime Search Paths shows any locations that will be searched to find Dynamically Linked Libraries
which have a Where starting with
@rpath
. In other words, these are the paths that are substituted for@rpath
by the linker at runtime, in order to find the library. If these are used, they will generally be relative to one of the other special variables,@loader_path
or@executable_path
. Again, see thedyld(1)
man page for more information. - DYLD Environment shows any equivalent environment variables that the dynamic linker should assume
are set when loading this executable or library. This is unusual, but can be used to influence which
Dynamically Linked Libraries are found; for example, Safari sets
DYLD_VERSIONED_FRAMEWORK_PATH
to find a possibly newer version of WebKit than is used by other apps on the system. Thedyld(1)
man page documents these environment variables.
Show App Store Receipt
An app installed from the App Store usually has an embedded receipt file. This receipt is signed by Apple, and can be used by the app to verify that it was actually purchased by the current user (or by another user sharing the same computer). The receipt can be inspected to see additional App Store and purchase information.
Click the Receipt toolbar button
The information shown for an App Store receipt is as follows:
- The Location shows the path to the actual receipt file, relative to the app itself.
Click the adjacent Show in Finder
- The App Store SKU is a product number that identifies the app in the App Store. Click
Show in App Store to open the product page within the App Store app.
As a shortcut, use File > Show in App Store (Cmd-Opt-A) to go directly to the product page, without going through the receipt inspector.
- Identifier shows the bundle identifier for the receipt (which should match the app's bundle identifier).
- The Current Version shows the most recently installed (or updated) version of the app, which was Installed On the given date.
- The Purchased Version shows the version of the app that was in the store at the original time of purchase, as given by the Purchased On date.
- Receipt Signed By shows the certificate that signed the receipt, which should be an Apple certificate associated with the iTunes Store. Click Details to see information about the signing certificate and its trustworthiness.
- Receipt Verified shows the result of Apparency's own verification of the receipt, which is based on Apple's (somewhat neglected) guidelines, and may or may not match the verification done by the app itself — if it actually does any such verification. Generally, unless the app was copied from a different computer, or the receipt was copied from a different app, it ought to verify properly. If the receipt can't be verified, click the More Info button to see why.
Show Provisioning Profile
Certain apps — depending on their capabilities and how they're distributed — will have an embedded provisioning profile. This is essentially “permission” from Apple for
- a specified app,
- signed with a specific, Apple-issued developer certificate,
- to use a specified set of Apple services and/or macOS features (“capabilities”),
- and to run on specific Apple devices (or more commonly, on any device).
The provisioning profile must be signed by Apple, which allows Apple to restrict what an app can do and where it can run — even if the app itself is signed by a third-party developer and distributed outside of the App Store.
Generally, the developer creates a provisioning profile through the Apple Developer Program website (or allows Xcode to do so automatically). Some capabilities are allowed routinely — without, one assumes, any human intervention. Other capabilities — such as Endpoint Security extensions or DriverKit drivers — are subject to an Apple approval process. Either way, the app can't use these capabilities without a matching, Apple-signed provisioning profile.
The provisioning profile scheme originated on iOS, where the specification of devices is more meaningful: this is the mechanism by which an iOS app can be installed directly onto a limited number of registered test devices (without going through the App Store). It's possible to use a provisioning profile on macOS to limit an app to running on specific Macs, but this is probably far less common.
Note that not all macOS apps have or require a provisioning profile. If an app doesn't use any of the restricted capabilities, it doesn't need a provisioning profile. Also, an app from the App Store is automatically trusted to use the capabilities found in its entitlements — presumably since these were vetted through App Review before the app was posted on the App Store. Likewise, Apple's own apps — those built into macOS or distributed from the Apple website — don't require provisioning.
macOS enforces the provisioning rules when you open an app: if the app is not from Apple or from the App Store, and if it uses any restricted capabilities, it must have a matching, Apple-signed provisioning profile. If the profile is missing, is invalid or lacks the required capabilities, the app will crash immediately.
With that background, click the Provisioning toolbar button
The information shown for a provisioning profile is as follows:
- The Location shows the path to the embedded provisioning profile, relative to the app itself.
Click the adjacent Show in Finder
- The Name is a description assigned by the developer.
- The Profile Kind is typically Developer ID Application, which means that it grants capabilities to an app signed with a Developer ID certificate, for distribution outside of the App Store — the most common case where a provisioning profile is required on macOS. Less common kinds include Ad-hoc (signed with an Apple-issued “distribution” certificate, for limited direct distribution), Development (signed with an Apple-issued “development” certificate, for testing), and App Store (for submitting to App Review).
- The App ID identifies the actual app to which the provisioning profile applies. This usually
contains both the app's bundle identifier and the developer's Apple-issued team ID. Less commonly, for certain
profile kinds, the App ID might use only the team ID with a
*
wildcard, allowing the profile to be used with any app from that developer. - Profile Signed By shows the certificate that signed the provisioning profile, which should be an Apple certificate, as discussed above. Click Details to see information about the signing certificate and its trustworthiness.
- Profile Verified shows the result of Apparency's own verification of the provisioning profile, which
ought to be similar to the verification that macOS does when the app is opened. (However, Apple doesn't document
these rules, so this is all based on reverse-engineering.) In general, the profile must be validly signed by
a provisioning-specific Apple signing certificate; the app's bundle identifier and
com.apple.application-identifier
entitlement must match the specification in the profile; and the app's signing certificate must be provisioned (as described below). If the profile can't be verified, click the More Info button to see why. - The Provisioned Devices shows if there are specific Macs that are allowed to run this app, although this will almost always be Any device. If specific devices are provisioned, this will be in terms of the device UDID — on a Mac, see Apple > About This Mac > System Report > Hardware > Hardware UUID.
- The Provisioned Certificates are the Apple-issued developer certificates that can be validly used to sign an app that embeds this provisioning profile. Click Details to see information about each certificate. If the profile is verified, one of these certificates will be the same as the one shown by Component > Show Code Signature.
- The Provisioned Entitlements are the capabilities that the app is allowed to use, as granted by this
Apple-signed provisioning profile. This view of the allowed entitlements will often use a
*
wildcard to allow arbitrary values for certain capabilities.Use Component > Show Entitlements, described above, to see how the provisioned capabilities apply to the actual app entitlements.
Show Launchd Configuration
Historically, in order to activate a macOS daemon or agent, a launchd job definition property list had to be installed into /Library/LaunchDaemons or /Library/LaunchAgents, often via a macOS Installer package. But over the years, macOS has acquired other methods of activating daemons and agents.
Way back in Mac OS X 10.6 (Snow Leopard), the SMJobBless() API added a way to for apps to install privileged helper applications. This is essentially a launchd daemon, but delivered in the app bundle at Contents/Library/LaunchServices. After administrator authentication, the executable is copied to /Library/PrivilegedHelperTools. The executable must have an embedded launchd job definition template, which macOS uses to create a plist in /Library/LaunchDaemons.
Fast forward to macOS 13 (Ventura), where the
SMAppService API
introduces another way for apps to bundle and install launchd daemons or agents. In this case, the launchd
job definition plists are delivered in the app bundle at Contents/Library/LaunchDaemons or
Contents/Library/LaunchAgents, and point to a daemon or agent executable elsewhere in the bundle
(using a new BundleProgram
key). This new scheme appears to be “native” to launchd,
in that the job definition plist and executable are both used directly from their place in the app bundle,
and one can see the bundle information in launchctl(1)
print
output.
To help you see where apps leverage these mechanisms, Apparency looks for the above artifacts within the app, and gives the daemon or agent executable components a special Kind: “Privileged helper application” for the older scheme, or “Background app service daemon” or “Background app service agent” for the new one. In each case, you can select the component and use Component > Show Launchd Configuration to examine the associated launchd job definition plist. Apparency works out the differences in the way that the two schemes handle these plists, and always presents them along with the executable that they reference.
With the macOS 13 scheme, it is theoretically possible for there to be multiple launchd jobs that share a single executable. If Apparency finds such a scenario, you will see a submenu under the Show Launchd Configuration menu, where you can select which one to inspect.
Examining Components in Other Apps
If you want to examine a component beyond what Apparency shows, there are a few ways that Apparency tries to make this easier.
In the Finder
Occasionally, you may want to see a specific component in the Finder; for example, to look at the
individual files that it contains. You can do this easily from Apparency: select the component in
the browser, and click the Show in Finder toolbar button
In the Terminal
Alternatively, if you want to examine a component in the Terminal, you can select it and choose Edit > Copy Path for Component (Cmd-Shift-C). Then you can paste that path into the Terminal, or wherever.
If you want to show — or copy the path to — the main executable, instead of the component itself, hold down Option while doing the above.
Previewing with Quick Look
Sometimes, a component has a kind that will yield an illuminating Quick Look preview. Select the the component and choose Component > Quick Look Component (Cmd-Y) — or just press the spacebar, as in the Finder.
This is probably mostly useful when the component is actually some sort of script (Bash or Python or what have you), and thus will produce its source text upon previewing. Apps might bundle scripts for various reasons, but note that you might need to enable searching in de facto “code places” in order to see such scripts as components in Apparency (since they tend to live in Resources directories).
If you have any other Quick Look Preview extensions installed, you might get useful previews for other kinds of components. Of course, for most kinds of components — applications, executables and standard bundles like frameworks — the Quick Look preview will be generated by Apparency itself, and isn't going to tell you anything new!
Finding App Containers
If an app uses the App Sandbox, it is not allowed to read or write arbitrary files within your home folder — it gets permission only for files that you pick through an Open or Save dialog, or to files or folders declared in its entitlements. Otherwise, it is expected to work totally within its app container.
For each sandboxed app (or other sandboxed component), macOS creates an app container under your Library > Containers folder. The container folder is named after the app's bundle identifier, and within its Data subfolder, contains a structure much like a normal home folder — macOS actually tells the app that this is your home folder.
What actually winds up in this container depends on the app. Preference settings almost always wind up here (instead of in the normal Library > Preferences folder). A “document-based” app — that is, an app which offers File > Open and File > Save, such as Pages or Keynote — will still put files where you tell it (not inside the app container). But a so-called “shoebox” app — one that handles content more abstractly than at the file level, like Photos or Notes — may use the app container more substantively (although often the canonical content might be stored in iCloud).
Anyway, most of the time you can ignore the app container, but especially when debugging an issue, it can
be helpful to inspect it. Apparency tries to make this a bit easier by helping you find the app container:
select the app or other component, and click the Show Container toolbar button
Alternatively, if you want to examine the container in the Terminal, you can select the component and choose Edit > Copy Path for App Container (Cmd-Shift-K).
Note that individual components other than the top-level app might also have their own app containers. For example, the app might contain a Share Extension or a Quick Look Preview Extension, and these are required to be sandboxed also. Any such sandboxed component will have a separate app container.
Because Apparency itself is sandboxed, it can't access other app's containers — or indeed, anything outside of its own app container. As such, it doesn't really know if the selected component's app container exists, only that the component is sandboxed and where the app container would be. It asks the Finder to show where the app container would be, but it is possible there will be nothing there, since macOS doesn't create the app container until the component is first used.
Finding Shared App Group Containers
Because different sandboxed apps have different app containers, two apps — even two apps in a suite from the same developer — can't share data in their respective app containers. Indeed, even an app and another component within that same app — such as a Share Extension — can't share data in the app container.
Apple's answer to this problem is the app group container. This is a secondary container that
can be accessed by two or more components, as long as they are from the same developer. The
developer defines a group container identifier through the Apple Developer Program website (or through Xcode),
and allows individual apps or components to use that group container via the com.apple.security.application-groups
entitlement. A single group container can be shared amongst any number of components, and a component can have
access to any number of group containers: this is all up to the developer to decide.
macOS creates group containers under your Library > Group Containers folder. Each group container folder
is typically named with the developer's Apple-issued team ID, following by the developer-chosen group identifier.
(Apple apps tend not to follow this pattern, using a group.
prefix, or none at all.) Unlike the
app container, the structure of the group container is not standardized, so the developer can organize it in whatever
way they choose. (However, if the group container is used to share preferences, you will likely find a
Library > Preferences folder inside.)
As with the app container, you can use Apparency to find a group container. Select the app or other component, and use Component > Show Group Container X in Finder. (The choices in the Component menu will depend on the selected component and what groups it has access to; if you don't see any Show Group Container items, there are no groups for that component.) Alternatively, to examine the group container in the Terminal, use Edit > Copy Path for Group Container X.
Using From Quick Look
Apparency provides a Quick Look Preview extension, which adds a bit more information to the standard macOS preview for apps.
The Apparency preview works in any normal Quick Look context. For example, if you open a Finder window to
your Applications folder and choose View > as Gallery or View > Show Preview,
you'll get an enhanced preview for the selected app:
Apparency tries to fit the preview into the space available for it — although macOS makes us guess about this, so you may need to resize the preview pane to see some information.
Note that the information in the Quick Look preview is only for the top-level app that you select; it doesn't consider any components within it. Click the Open With Apparency button to quickly open the app in Apparency, where you can see all the details.