MCPcopy Create free account
hub / github.com/Tencent/MMKV / isEncryptionEnabled

Function isEncryptionEnabled

Android/MMKV/mmkv/src/main/cpp/native-bridge.cpp:1130–1136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1128}
1129
1130MMKV_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
1138MMKV_JNI bool isExpirationEnabled(JNIEnv *env, jobject instance) {
1139 MMKV *kv = getMMKV(env, instance);

Callers

nothing calls this directly

Calls 2

getMMKVFunction · 0.85
isEncryptionEnabledMethod · 0.80

Tested by

no test coverage detected