Files
flipper/desktop/plugins/crash_reporter/package.json
Anton Nikolaev d7cfcb5d8e Extend device plugin metadata to include supported devices
Summary: Plugin metadata format extended to include type of each plugin (client / device) and list of supported devices (android/ios/..., emulator/physical, etc). This will allow to detect plugins supported by device even if they are not installed and only available on Marketplace.

Reviewed By: mweststrate

Differential Revision: D26073531

fbshipit-source-id: e331f1be1af1046cd4220a286a1d52378c26cc53
2021-01-27 17:31:41 -08:00

28 lines
714 B
JSON

{
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-crash-reporter",
"id": "CrashReporter",
"pluginType": "device",
"supportedDevices": [
{"os": "Android"},
{"os": "iOS", "type": "emulator"}
],
"version": "0.0.0",
"description": "A plugin which will display a crash",
"main": "dist/bundle.js",
"flipperBundlerEntry": "index.tsx",
"repository": "https://github.com/facebook/flipper",
"license": "MIT",
"keywords": [
"flipper-plugin"
],
"title": "Crash Reporter",
"bugs": {
"email": "prit91@fb.com",
"url": "https://fb.workplace.com/groups/220760072184928/"
},
"dependencies": {
"unicode-substring": "^1.0.0"
}
}