Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

29 lines
760 B
YAML

language: android
dist: trusty
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
# - tools
# - platform-tools
# The BuildTools version used by your project
- build-tools-29.0.2
# The SDK version used to compile your project
- android-29
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-x86-android-21
before_script:
- touch local.properties
script:
- ./gradlew clean build jacocoTestReleaseUnitTestReport
after_success:
- bash <(curl -s https://codecov.io/bash)