| 1128 | } |
| 1129 | |
| 1130 | MMKV_JNI bool isEncryptionEnabled(JNIEnv *env, jobject instance) { |
| 1131 | MMKV *kv = getMMKV(env, instance); |
| 1132 | if (kv) { |
| 1133 | return kv->isEncryptionEnabled(); |
| 1134 | } |
| 1135 | return false; |
| 1136 | } |
| 1137 | |
| 1138 | MMKV_JNI bool isExpirationEnabled(JNIEnv *env, jobject instance) { |
| 1139 | MMKV *kv = getMMKV(env, instance); |
nothing calls this directly
no test coverage detected