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.
 
 
 
 
 
 

25 lignes
572 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. pool:
  8. name: 'Default'
  9. steps:
  10. - script: |
  11. cd example
  12. $(flutterPath)/flutter build ios
  13. displayName: 'Test iOS -- Build'
  14. env:
  15. flutterPath: $(flutterPath)
  16. - script: |
  17. cd example
  18. $(flutterPath)/flutter build apk --target-platform android-arm,android-arm64 --split-per-abi
  19. displayName: 'Test Android -- Build'
  20. env:
  21. flutterPath: $(flutterPath)