I imported the private keys into my wallet and they appear to be added: This is the result when i run getImportedKeys():
From my understanding it can deduce the public keys from the private keys, and look up the transactions associated with those keys. Im using WalletAppKit to create the wallet, everything works okey, the wallet is functional. This is how i initialize the wallet:
coinreceived = MediaPlayer.create(MainContext, R.raw.received);
coinsent=MediaPlayer.create(MainContext, R.raw.sent);
kit = new WalletAppKit(netParams, new File(String.valueOf(context.getFilesDir()+ File.separator + walletFolder)) , "walletappkit-example");
kit.setDownloadListener(listener);
kit.setBlockingStartup(false);
kit.startAsync();
saveWalletAddress();