package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "FileSelect",
  3. "id": "lemonjk-FileSelect",
  4. "version": "5.2.0",
  5. "description": "文件选取插件",
  6. "_dp_type": "nativeplugin",
  7. "_dp_nativeplugin": {
  8. "android": {
  9. "plugins": [{
  10. "type": "module",
  11. "name": "lemonjk-FileSelect",
  12. "class": "com.lemonjk.fileselect.FileSelectModule"
  13. }],
  14. "compileOptions": {
  15. "sourceCompatibility": "1.8",
  16. "targetCompatibility": "1.8"
  17. },
  18. "dependencies": [
  19. ],
  20. "integrateType": "aar",
  21. "permissions": [
  22. "<uses-permission android:name=\"android.permission.READ_EXTERNAL_STORAGE\"/>",
  23. "<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>",
  24. "<uses-permission android:name=\"android.permission.MANAGE_EXTERNAL_STORAGE\"/>"
  25. ],
  26. "parameters": {
  27. "appid_android": {
  28. "des": "请填写你当前应用的包名,必需填写,否则可能无法使用。(在菜单中->发行->原生App-云打包中可以查看包名信息)",
  29. "placeholder": "LEMONJK_APPID"
  30. }
  31. },
  32. "abis": [
  33. "armeabi-v7a",
  34. "arm64-v8a"
  35. ],
  36. "minSdkVersion": 21
  37. },
  38. "ios": {
  39. "plugins": [
  40. {
  41. "type": "module",
  42. "name": "lemonjk-FileSelect",
  43. "class": "LemonFileSelectModule"
  44. }
  45. ],
  46. "integrateType": "framework",
  47. "deploymentTarget": "12.0"
  48. }
  49. }
  50. }