| 1369 | } |
| 1370 | |
| 1371 | wrapper->getRuntimeManager().clearViewPools(); |
| 1372 | } |
| 1373 | |
| 1374 | void ValdiAndroid::NativeBridge::applicationSetConfiguration( // NOLINT |
| 1375 | fbjni::alias_ref<fbjni::JClass> /* clazz */, // NOLINT |
| 1376 | jlong runtimeManagerHandle, |
| 1377 | jfloat dynamicTypeScale) { |
| 1378 | auto* wrapper = getRuntimeManagerWrapper(runtimeManagerHandle); |
| 1379 | if (wrapper == nullptr) { |
| 1380 | return; |
| 1381 | } |
| 1382 | |
| 1383 | wrapper->setDynamicTypeScale(dynamicTypeScale); |
| 1384 | } |
nothing calls this directly
no test coverage detected