Please ensure that the visibility settings for the package are correct on Android 11+ systems. For more information, visit this link.
Add these lines to your AndroidManifest:
<manifest …>
...
<queries>
<package android:name=“com.globalpayments.atom“ />
</queries>
</manifest>
For the version eService volume:
<manifest …>
...
<queries>
<package android:name=“com.globalpayments.atom_eservice“ />
</queries>
</manifest>
From Android 14 onwards, it is also necessary to set the „Context.BIND_ALLOW_ACTIVITY_STARTS“ flag – see https://developer.android.com/guide/components/activities/background-starts
For version GP tom:
If you are using a simulator or developing using the GP DEV environment, use „com.globalpayments.atom.dev“ for binding instead of the production „com.globalpayments.atom“ . Thank you.
For the version eService volume:
If you are using a simulator or developing using the eService DEV environment, please use „com.globalpayments.atom_eservice.dev“ for the binding instead of the production version „com.globalpayments.atom_eservice“. Thank you.
