The very first line of StorageServiceAccountSample
HTTP_TRANSPORT = GoogleNetHttpTransport.newTrustedTransport();
results in the KeyStore JKS implementation not found:
W/System.err(20142): java.security.KeyStoreException: java.security.NoSuchAlgorithmException: KeyStore JKS implementation not found W/System.err(20142): at java.security.KeyStore.getInstance(KeyStore.java:119) W/System.err(20142): at com.google.api.client.util.SecurityUtils.getJavaKeyStore(SecurityUtils.java:48) W/System.err(20142): at com.google.api.client.googleapis.GoogleUtils.getCertificateTrustStore(GoogleUtils.java:74) W/System.err(20142): at com.google.api.client.googleapis.javanet.GoogleNetHttpTransport.newTrustedTransport(GoogleNetHttpTransport.java:55)
Since I read that Android does not support JKS, how can I change this method to get around it?
android google-api-java-client
Sailor jerry
source share