webview_flutter.podspec.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "webview_flutter",
  3. "version": "0.0.1",
  4. "summary": "A WebView Plugin for Flutter.",
  5. "description": "A Flutter plugin that provides a WebView widget.\nDownloaded by pub (not CocoaPods).",
  6. "homepage": "https://github.com/flutter/plugins",
  7. "license": {
  8. "type": "BSD",
  9. "file": "../LICENSE"
  10. },
  11. "authors": {
  12. "Flutter Dev Team": "flutter-dev@googlegroups.com"
  13. },
  14. "source": {
  15. "http": "https://github.com/flutter/plugins/tree/master/packages/webview_flutter"
  16. },
  17. "documentation_url": "https://pub.dev/packages/webview_flutter",
  18. "source_files": "Classes/**/*",
  19. "public_header_files": "Classes/**/*.h",
  20. "dependencies": {
  21. "Flutter": [
  22. ]
  23. },
  24. "platforms": {
  25. "ios": "8.0"
  26. },
  27. "pod_target_xcconfig": {
  28. "DEFINES_MODULE": "YES",
  29. "VALID_ARCHS[sdk=iphonesimulator*]": "x86_64"
  30. },
  31. "testspecs": [
  32. {
  33. "name": "Tests",
  34. "test_type": "unit",
  35. "source_files": "Tests/**/*",
  36. "dependencies": {
  37. "OCMock": [
  38. "3.5"
  39. ]
  40. }
  41. }
  42. ]
  43. }