FileSystem plugin not implemented in android

I am using filesystem plugin to save images in storage and it works well in local environment in pc but when build an apk file and then installed and opened in real android device then it shows filesystem plugin is not implemented in android when i try to select any image from device.
after some research I found that we need to implement plugin in capacitor.config.ts file so I found the test app in the docs where they have implemented some other plugins (see in below code) so i want to know how can I implement same for filesystem plugin ??

Angular 17
Capacitor 6

///
///
///

import { CapacitorConfig } from ‘@capacitor/cli’;

const config: CapacitorConfig = {
appId: ‘com.capacitorjs.app.testapp’,
appName: ‘capacitor-testapp’,
webDir: ‘dist’,
plugins: {
CapacitorCookies: {
enabled: true,
},
CapacitorHttp: {
enabled: true,
},
SplashScreen: {
launchAutoHide: false,
},
LocalNotifications: {
smallIcon: ‘ic_stat_icon_config_sample’,
iconColor: ‘#CE0B7C’,
},
PushNotifications: {
presentationOptions: [“alert”, “sound”]
}
},
};

export default config;