Hi Andrew,
Yes, you can make it exportable by supplying
null as password parameter when you import your private key.
Just change your call:
msksKeyStore.setKeyEntry(alias, key, pwd, x509certs);
into:
msksKeyStore.setKeyEntry(alias, key, null, x509certs);
Regards,
Tommy