> ## Documentation Index
> Fetch the complete documentation index at: https://docs.supernote.com/llms.txt
> Use this file to discover all available pages before exploring further.

# clearElementCache

> Clear the Android local cache for Elements. After clearing, previously obtained Element objects can no longer be used.

```ts theme={null}
static clearElementCache(): void;
```

## Example

```ts wrap theme={null}
import { PluginCommAPI } from 'sn-plugin-lib';

/**
 * Example: clear native Element caches.
 */
export async function exampleClearElementCache() {
 PluginCommAPI.clearElementCache();
}
```
