Masterarbeit Richard Stern. Flutter App, sich mit einem Bluetooth-Gerät verbindet und Berührungen auf einem Sensor visualisiert.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

flutter_blue.podspec.json 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "flutter_blue",
  3. "version": "0.0.1",
  4. "summary": "A new flutter plugin project.",
  5. "description": "A new flutter plugin project.",
  6. "homepage": "http://example.com",
  7. "license": {
  8. "file": "../LICENSE"
  9. },
  10. "authors": {
  11. "Your Company": "email@example.com"
  12. },
  13. "source": {
  14. "path": "."
  15. },
  16. "source_files": "Classes/**/*",
  17. "public_header_files": "Classes/**/*.h",
  18. "dependencies": {
  19. "Flutter": [
  20. ],
  21. "!ProtoCompiler": [
  22. ]
  23. },
  24. "frameworks": "CoreBluetooth",
  25. "prepare_command": "mkdir -p gen\n/Users/richardstern/IdeaProjects/touch_demonstrator/ios/Pods/!ProtoCompiler/protoc --objc_out=gen --proto_path=../protos ../protos/*.proto",
  26. "pod_target_xcconfig": {
  27. "GCC_PREPROCESSOR_DEFINITIONS": "$(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1"
  28. },
  29. "platforms": {
  30. "ios": "8.0"
  31. },
  32. "subspecs": [
  33. {
  34. "name": "Protos",
  35. "source_files": "gen/**/*.pbobjc.{h,m}",
  36. "header_mappings_dir": "gen",
  37. "requires_arc": false,
  38. "dependencies": {
  39. "Protobuf": [
  40. ]
  41. }
  42. }
  43. ]
  44. }