├── .gitpod.Dockerfile ├── .gitpod.yml ├── .travis.yml └── README.md /.gitpod.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM gitpod/workspace-full-vnc:branch-jx-python-tk 2 | RUN add-apt-repository ppa:maarten-fonville/android-studio && \ 3 | apt-get update && \ 4 | apt-get install android-sdk \ 5 | lib32stdc++6 \ 6 | android-studio \ 7 | android-sdk-build-tools \ 8 | android-sdk \ 9 | android-sdk-platform-23 --no-install-recommends --yes \ 10 | && apt-get clean \ 11 | && rm -rf /var/lib/apt/lists/* 12 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | image: 2 | file: .gitpod.Dockerfile 3 | privileged : true 4 | github: 5 | prebuilds: 6 | # enable for the master/default branch (defaults to true) 7 | master: true 8 | # enable for all branches in this repo (defaults to false) 9 | branches: true 10 | # enable for pull requests coming from this repo (defaults to true) 11 | pullRequests: true 12 | # enable for pull requests coming from forks (defaults to false) 13 | pullRequestsFromForks: true 14 | # add a check to pull requests (defaults to true) 15 | addCheck: true 16 | # add a "Review in Gitpod" button as a comment to pull requests (defaults to false) 17 | addComment: true 18 | # add a "Review in Gitpod" button to the pull request's description (defaults to false) 19 | addBadge: true 20 | # add a label once the prebuild is ready to pull requests (defaults to false) 21 | addLabel: true 22 | tasks: 23 | - command: /opt/android-studio/bin/studio.sh 24 | - command: echo "Hello" 25 | ports: 26 | - port: 5900 27 | onOpen: ignore 28 | - port: 6080 29 | onOpen: ignore 30 | - port: 35900 31 | onOpen: ignore 32 | - port: 6942 33 | onOpen: ignore 34 | vscode: 35 | extensions: 36 | - adelphes.android-dev-ext@0.8.0:z3IVaDRzKS8IeFWrhyaPAA== 37 | - mpotthoff.vscode-android-webview-debug@1.1.1:TY2OLKxxIJSs2lt3TgOpjw== 38 | - DiemasMichiels.emulate@1.3.0:sXCoQONS3kXpSTBuMnxkyQ== 39 | - fwcd.kotlin@0.2.10:kX3nrW3fv/LjU/QSQ41zYA== 40 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | 3 | services: 4 | - docker 5 | script: 6 | - docker build -f .gitpod.Dockerfile . 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Gitpod-Android --------------------------------------------------------------------------------