ShowKad (MyKad reader) Application icon

ShowKad (MyKad reader) 2.9.1

175.4 KB / 5K+ Downloads / Rating 5.0 - 1 reviews


See previous versions

ShowKad (MyKad reader), developed and published by Causal Idea, has released its latest version, 2.9.1, on 2022-12-04. This app falls under the Productivity category on the Google Play Store and has achieved over 5000 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

ShowKad (MyKad reader) APK available on this page is compatible with all Android devices that meet the required specifications (Android). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: com.causalidea.cikad.showkad

Updated: 2 years ago

Developer Name: Causal Idea

Category: Productivity

New features: Show more

Installation Instructions

This article outlines two straightforward methods for installing ShowKad (MyKad reader) on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

Reviews

5 ★, on 2019-02-21
yes 5star

1 ★, on 2013-01-27
Always fail

1 ★, on 2013-02-05
It does nothing. Waste of time.

3 ★, on 2013-10-28
It's need to use with extra device

1 ★, on 2013-04-10
What this app...click what oso no think happen v

Previous Versions

ShowKad (MyKad reader) 2.9.1
2022-12-04 / 175.4 KB / Android

ShowKad (MyKad reader) 2.8.2
2021-03-30 / 176 KB / Android 3.1+

About this app

ShowKad reads from the MyKad chip. A tap on the photo gives an enlarged picture to help visual inspection of the cardholder. It also provides an easy way for other apps to read MyKad, by allowing them to launch ShowKad using intent, and get the MyKad personal particulars back, without having to deal with smartcard commands and reader integration.

Instead of asking customers or students to fill up application or registration forms, just read their personal particulars from MyKad. There is no chance of introducing human errors, for example, in IC number copying. All data is replicated electronically. ShowKad brings to everyone efficient data processing previously limited to huge and wealthy corporations and government departments. And it does this WITHOUT a computer. Even better is, there is NO software licensing fee. ShowKad is available for use by anyone FREE OF CHARGE.

Sample code for launching ShowKad through intent from another app :

intent = new Intent ("com.causalidea.cikad.showkad.READ_MYKAD");
extras = new Bundle ();
extras.putBoolean ("READ_PHOTO", false); // Do not read the photo
intent.putExtras (extras);
activity.startActivityForResult (intent, 0);

Sample code for receiving the output from ShowKad :

public void onActivityResult (int requestCode, int resultCode, Intent intent) {

if (resultCode == Activity.RESULT_OK) {
extras = intent.getExtras ();

if (extras != null) {
extras.getString ("IC_NUMBER"));
extras.getString ("NAME"));
extras.getString ("GENDER"));
extras.getString ("CITIZENSHIP"));
extras.getString ("BIRTH_DATE"));
extras.getString ("RACE"));
extras.getString ("RELIGION"));
extras.getString ("ADDRESS_1"));
extras.getString ("ADDRESS_2"));
extras.getString ("ADDRESS_3"));
extras.getString ("POSTCODE"));
extras.getString ("CITY"));
extras.getString ("STATE"));

photoByteArray = extras.getByteArray ("PHOTO");

if (photoByteArray != null) {
bitmap = BitmapFactory.decodeByteArray (photoByteArray, 0, photoByteArray.length);
imageView.setImageBitmap (bitmap);
}
}
} else if (resultCode == Activity.RESULT_CANCELED) {

}
}

ShowKad works on a general purpose smartphone or tablet. A smartcard reader of model ACR38U-PocketMate is needed. This is probably one of the smallest and most portable contact smartcard readers in the market. To purchase the reader, please visit :

http://www.causalidea.com/home/ci-showkad

To experience how it works without a smartcard reader, please install the demo edition, which assumes the presence of a fictitious MyKad.

Disclaimer :

While Causal Idea attempts to ensure the application is correct, and may introduce updates whenever necessary, it does not guarantee the application is flawless, and is not responsible for any loss, injury or damage inflicted during and after the installation and use of the application.

Reminder :

You are responsible for the safe-keeping of the collected personal particulars, and for making sure they are not utilized in any manner not agreed by their owners.

Third-party components :

This application contains the file choosing component aFileChooser from iPaulPro. The license terms of aFileChooser are available at https://github.com/iPaulPro/aFileChooser/blob/master/LICENSE.txt

Additional hardware required :

This application is meant to be used with a smartcard reader, which is available at http://www.causalidea.com/home/ci-showkad

New features

Removed write permission for external storage. This permission is no longer needed.