Hello
After renaming DPX to SimulScan, the sample applications is still using DPX.
For example:
bundleArray = intent.getParcelableArrayListExtra(DPX_REGIONS_BUNDLE_TAG);
Is the DPX name still valid in the intents or has that also change to SimulScan instead?
If it has changed is there any document that describes the new strings to use?
For example:DPX_REGION_ID_TAG, DPX_REGION_TYPE_TAG etc.
Regards
DPX or SimulScan?// Expert user has replied. |
2 Replies
Hi Marten
These are just variable names. The values contains the SimulScan references.
Tharindu.
Marten,
It's only the variables in the sample app that still read "DPX". The actual Intents have been renamed to read "SimulScan" as below :
public static final String DPX_TEMPLATE_NAME_TAG = "com.motorolasolutions.emdk.datawedge.simulscan_template_name";public static final String DPX_REGIONS_BUNDLE_TAG = "com.motorolasolutions.emdk.datawedge.simulscan_region_data";public static final String DPX_REGION_NAME_TAG = "com.motorolasolutions.emdk.datawedge.simulscan_region_name";public static final String DPX_REGION_ID_TAG = "com.motorolasolutions.emdk.datawedge.simulscan_region_id";public static final String DPX_REGION_TYPE_TAG = "com.motorolasolutions.emdk.datawedge.simulscan_region_type";public static final String DPX_PICTURE_FORMAT_TAG = "com.motorolasolutions.emdk.datawedge.simulscan_picture_format"; public static final String DPX_REGION_STRING_DATA = "com.motorolasolutions.emdk.datawedge.simulscan_region_string_data";
public static final String DPX_REGION_BINARY_DATA = "com.motorolasolutions.emdk.datawedge.simulscan_region_binary_data";
These sample variables were left as is to minimize changes to the app. However, if you thought they were confusing, we can update them and post a new version.
Thanks,
Anu