ShowKad (MyKad reader) Apk
Apk Infos
Version | 2.9.1 |
Rating | 5.0/5, based on 1 votes |
Size | 175.4 KB |
Requires Android | Android |
Author's Notes | Reads MyKad, using an ACR38U-PocketMate smartcard reader. |
About ShowKad (MyKad reader) APK
Table Of Contents
Description
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
Latest updates
What's new in version 2.9.1
Removed write permission for external storage. This permission is no longer needed.How to install ShowKad (MyKad reader) APK on Android phone or tablet?
Download ShowKad (MyKad reader) APK file from ApkClean, then follow these steps:
Update Phone Settings
- Go to your phone Settings page
- Tap Security or Applications (varies with device)
- Check the Unknown Sources box
- Confirm with OK
Go to Downloads
- Open Downloads on your device by going to My Files or Files
- Tap the APK file you downloaded (com.causalidea.cikad.showkad-v2.9.1-ApkClean.apk)
- Tap Install when prompted, the APK file you downloaded will be installed on your device.
Older Versions
2.9.1 (291) | 175.4 KB |
2.8.2 (282) | 176 KB |
Questions & Answers
Q: What is an APK File?
A: Just like Windows (PC) systems use an .exe file for installing software, Android does the same. An APK file is the file format used for installing software on the Android operating system.
Q: If I install an APK from this website, will I be able to update the app from the Play Store?
A: Yes, absolutely. The Play Store installs APKs it downloads from Google's servers, and sideloading from a site like ApkClean.net goes through a very similar process, except you're the one performing the downloading and initiating the installation (sideloading).
As soon as the Play Store finds a version of the app newer than the one you've sideloaded, it will commence an update.
Q: Why ApkClean.net can guarantee APK 100% safe?
A: Whenever someone wants to download an APK file from ApkClean.net, we'll check the corresponding APK file on Google Play and allow user download it directly (of course, we'll cache it on our server). If the APK file does not exist on Google Play, we'll search it in our cache.
Q: What are Android App permissions?
A: Apps require access to certain systems within your device. When you install an application, you are notified of all of the permissions required to run that application.
Don't hesitate to contact us if you have any questions or concerns.
(*) is required