package.json 810 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "DCloud-PushSound",
  3. "id": "DCloud-PushSound",
  4. "version": "1.0.1",
  5. "description": "自定义推送铃声",
  6. "_dp_type": "nativeplugin",
  7. "_dp_nativeplugin": {
  8. "ios": {
  9. "plugins": [{
  10. "type": "module",
  11. "name": "DCloud-PushSound",
  12. "class": "DCPushSound"
  13. }],
  14. "deploymentTarget": "9.0",
  15. "integrateType": "library",
  16. "resources": [
  17. "pushsound.caf"
  18. ]
  19. },
  20. "android": {
  21. "plugins": [
  22. {
  23. "type": "module",
  24. "name": "DCloud-PushSound",
  25. "class": "io.dcloud.uniplugin.custom_push_channel.CustomNotificationChannel"
  26. }
  27. ],
  28. "integrateType": "aar",
  29. "compileOptions": {
  30. "sourceCompatibility": "1.8",
  31. "targetCompatibility": "1.8"
  32. },
  33. "minSdkVersion": "19"
  34. }
  35. }
  36. }