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
519 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 packages get
  17. $(flutterPath)/flutter build apk --target-platform android-arm,android-arm64 --split-per-abi
  18. displayName: 'Test Android -- Build'
  19. env:
  20. flutterPath: $(flutterPath)