-
Adding travis build passing icon in your githubDevelopment 2018. 12. 2. 20:51728x90
Overview
it explain how to add travis build passing icon in your github, especially, regarding android app projectMy '.travis.yml'
Before I explain anything, let me share my .travis.yml
language: android
android:
components:
- tools
- platform-tools
- build-tools-26.0.2
- build-tools-27.0.3
- android-24
licenses:
- 'android-sdk-license-.+'
- '.+'
before_install:
- chmod +x gradlew
- yes | sdkmanager "platforms;android-24"
Adding travis build passing icon in rmd
:-) like thisAdding the line below, in the top of your rmd file.[![Build Status](https://travis-ci.org/skysign/MediaSyncExample.svg?branch=master)](https://travis-ci.org/skysign/MediaSyncExample)
Please visit, if you want to see working example :)
https://github.com/skysign/MediaSyncExampleTrouble shooting
You have not accepted the license agreements of the following SDK components:
[Android SDK Build-Tools 26.0.2]
You must add the line for build-tools-26.0.2 below, to avoid build error due to Android SDK Build-Tools 26.0.2, even you didn't describe anything regarding build-tools-26.0.2.if you are using build-tools-27.0.3, build-tools-26.0.2 is installed automatically, and it cause build break due to that license is not accepted.android:
components:
- tools
- platform-tools
- build-tools-26.0.2 <- MUST ADD
- build-tools-27.0.3
728x90'Development' 카테고리의 다른 글
opengrok을 windows에 docker로 명령어 3개로 설치 (0) 2019.07.10 Ubuntu 16.04 / monitor resolution/rotation is reset after rebooting (0) 2018.12.04 Jupyter notebook에 nbextension 설치/사용 방법 (2) 2018.11.10 https 키 생성 명령어 (0) 2018.11.10 Docker 명령어 모음 (0) 2018.11.10