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.
 
 
 
 
 
 

25 lines
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)