Esempio n. 1
0
 public boolean duplicate(String srcKey, int srcUid, String destKey, int destUid) {
   try {
     return mBinder.duplicate(srcKey, srcUid, destKey, destUid) == NO_ERROR;
   } catch (RemoteException e) {
     Log.w(TAG, "Cannot connect to keystore", e);
     return false;
   }
 }