Make sure you have the correct package visibility settings on your system Android 11+. 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+ it is also necessary to set the flag „Context.BIND_ALLOW_ACTIVITY_STARTS“ - see https://developer.android.com/guide/components/activities/background-starts
For the version GP volume:
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 the simulator or developing using the DEV eService tom environment, use „com.globalpayments.atom_eservice.dev“ instead of the production „com.globalpayments.atom_eservice“ Thank you.
