package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "JG-JCore",
  3. "id": "JG-JCore",
  4. "version": "1.0.1",
  5. "description": "极光推送JCore插件",
  6. "_dp_type":"nativeplugin",
  7. "_dp_nativeplugin":{
  8. "ios": {
  9. "plugins": [
  10. {
  11. "type": "module",
  12. "name": "JG-JCore",
  13. "class": "JCoreModule"
  14. }
  15. ],
  16. "integrateType": "framework",
  17. "deploymentTarget": "9.0",
  18. "parameters": {
  19. "JPUSH_APPKEY_IOS": {
  20. "des": "[iOS]极光portal配置应用信息时分配的AppKey",
  21. "key": "JCore:APP_KEY"
  22. },
  23. "JPUSH_CHANNEL_IOS": {
  24. "des": "[iOS]用于统计分发渠道,不需要可填默认值developer-default",
  25. "key": "JCore:CHANNEL"
  26. }
  27. }
  28. },
  29. "android": {
  30. "plugins": [
  31. {
  32. "type": "module",
  33. "name": "JG-JCore",
  34. "class": "cn.jiguang.uniplugin_jcore.JCoreModule"
  35. }
  36. ],
  37. "integrateType": "aar",
  38. "minSdkVersion": "19",
  39. "permissions": [
  40. ],
  41. "abis": [
  42. "armeabi-v7a",
  43. "arm64-v8a",
  44. "x86"
  45. ],
  46. "parameters": {
  47. "JPUSH_APPKEY_ANDROID": {
  48. "des": "[Android]极光portal配置应用信息时分配的AppKey",
  49. "key": "JPUSH_APPKEY"
  50. },
  51. "JPUSH_CHANNEL_ANDROID":{
  52. "des": "[Android]用于统计分发渠道,不需要可填默认值developer-default",
  53. "key": "JPUSH_CHANNEL"
  54. }
  55. }
  56. }
  57. }
  58. }