Updating the
AndroidManifest.xml
File

Update your
AndroidManifest.xml
file to enable a large heap size, disable support for right to left (RTL) layouts, and enable the needed permissions for the Default UI. Enabling a large heap size is required in order to accommodate situations in which an update of your terminals is required, and for which larger chunks of data are requested and transferred.
Follow these steps to update your
AndroidManifest.xml
file:
  1. Set the
    android:allowBackup
    attribute to
    false
    , the
    android:largeHeap
    attribute to
    true
    , and the
    android:supportsRtl
    attribute to
    false
    .
    <application ... android:allowBackup="false" android:largeHeap="true" android:supportsRtl="false" > ... </application>
  2. Enable the needed permissions for the Default UI and PAX.
    <!-- Needed for Default UI !--> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.READ_PHONE_STATE"/> <!-- Needed for PAX integrations !--> <uses-permission android:name="com.pax.permission.ICC"/> <uses-permission android:name="com.pax.permission.PICC"/> <uses-permission android:name="com.pax.permission.MAGCARD"/> <uses-permission android:name="com.pax.permission.PED"/>