| 164 | } |
| 165 | |
| 166 | bool CommMMKV::setString(std::string key, std::string value) { |
| 167 | bool result; |
| 168 | NativeAndroidAccessProvider::runTask( |
| 169 | [&]() { result = CommMMKVJavaClass::setString(key, value); }); |
| 170 | return result; |
| 171 | } |
| 172 | |
| 173 | std::optional<std::string> CommMMKV::getString(std::string key) { |
| 174 | std::optional<std::string> result; |
no outgoing calls
no test coverage detected