The QR Code Scanner package for Appeto SDK.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

35 lignes
796 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)