Set `is_emulator` property
Description
Description
https://posthog.com/questions/how-to-filter-out-usage-from-i-os-android-simulators-emulators
- [ ] iOS
- [X] Android
- [ ] RN
- [ ] Flutter will get it for free once Android and RN is updated.
Taxonomy added.
Something like this can be done https://stackoverflow.com/questions/458304/how-can-i-programmatically-determine-if-my-app-is-running-in-the-iphone-simulato/45329149#45329149 or compile flags:
#if targetEnvironment(simulator)
// Simulator
#else
// Device
#endif
Also like this https://github.com/fluttercommunity/plus_plugins/blob/a71a27c5fbdbbfc56a30359a1aff0a3d3da8dc73/packages/device_info_plus/device_info_plus/ios/Classes/FPPDeviceInfoPlusPlugin.m#L56-L66 @thisames wanna take this one?
Also like this https://github.com/fluttercommunity/plus_plugins/blob/a71a27c5fbdbbfc56a30359a1aff0a3d3da8dc73/packages/device_info_plus/device_info_plus/ios/Classes/FPPDeviceInfoPlusPlugin.m#L56-L66 @thisames wanna take this one?
I would love to, but my MacBook stopped working last month. I'm currently only using Linux. 😅