The QR Code Scanner package for Appeto SDK.
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.
 
 
 
 
 
 

35 rivejä
788 B

  1. # Starter pipeline
  2. # Start with a minimal pipeline that you can customize to build and deploy your code.
  3. # Add steps that build, run tests, deploy, and more:
  4. # https://aka.ms/yaml
  5. trigger:
  6. - master
  7. pr:
  8. branches:
  9. include:
  10. - master
  11. pool:
  12. name: 'Default'
  13. steps:
  14. - script: |
  15. cd example
  16. $flutterPath/flutter build ios
  17. displayName: 'Test iOS -- Build'
  18. env:
  19. flutterPath: $(flutterPath)
  20. - script: |
  21. cd example
  22. $flutterPath/flutter packages get
  23. $flutterPath/flutter build apk --target-platform android-arm,android-arm64 --split-per-abi
  24. displayName: 'Test Android -- Build'
  25. env:
  26. flutterPath: $(flutterPath)
  27. - script: |
  28. $flutterPath/flutter pub pub publish --dry-run
  29. displayName: 'Publish -- Dry Run'
  30. env:
  31. flutterPath: $(flutterPath)