Я пытаюсь передать нулевое значение в QAndroidJniObject::callObjectMethod()
и не могу найти, как это сделать.
Код:
void generateEncryptionKey()
{
auto keyStore = getKeystore();
auto generator = getKeyGenerator();
keyStore.callObjectMethod(
"load",
"(Ljava/security/KeyStore/LoadStoreParameter;)V"
// what to put here for null value?
);
}