| 171 | } |
| 172 | |
| 173 | std::optional<std::string> CommMMKV::getString(std::string key) { |
| 174 | std::optional<std::string> result; |
| 175 | NativeAndroidAccessProvider::runTask( |
| 176 | [&]() { result = CommMMKVJavaClass::getString(key); }); |
| 177 | return result; |
| 178 | } |
| 179 | |
| 180 | bool CommMMKV::setInt(std::string key, int value) { |
| 181 | bool result; |
no outgoing calls
no test coverage detected