From 169109db3fc59cf2b1a415e0e10e52aeb76b3ea7 Mon Sep 17 00:00:00 2001 From: Sam Shih Date: Wed, 11 Nov 2020 12:15:57 -0800 Subject: [PATCH] Add Continuous Integration with Travis (#22) Reference: https://docs.travis-ci.com/user/languages/android/ --- travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 travis.yml diff --git a/travis.yml b/travis.yml new file mode 100644 index 0000000..1700a20 --- /dev/null +++ b/travis.yml @@ -0,0 +1,19 @@ +language: android + +dist: trusty + +android: + components: + # The BuildTools version used by your project + - build-tools-30.0.2 + + # The SDK version used to compile your project + - android-30 + + licenses: + - 'android-sdk-preview-license-.+' + - 'android-sdk-license-.+' + - 'google-gdk-license-.+' + + script: + - ./gradlew build check