Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
feat(pre-release): relase for early adopter stage
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Salas Bastidas committed Jun 1, 2017
0 parents commit e705e82
Show file tree
Hide file tree
Showing 601 changed files with 18,207 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE.md
@@ -0,0 +1,16 @@
### Expected behaviour

### Actual behaviour

### Environment Details

- Android Version :
- Device :
- App Version :

### Steps to reproduce the behaviour

when device is in landscape app bug

### Screenshots

48 changes: 48 additions & 0 deletions .gitignore
@@ -0,0 +1,48 @@
.idea
.idea/libraries
app/app.iml

*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# built native files (uncomment if you build your own)
# *.o
# *.so

# generated files
bin/
gen/

# Ignore gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Eclipse Metadata
.metadata/

# Mac OS X clutter
*.DS_Store

# Windows clutter
Thumbs.db

.idea/workspace.xml
.idea/tasks.xml
.idea/datasources.xml
.idea/dataSources.ids
.idea/.name
.idea/gradle.xml
.idea/modules.xml
.idea/vcs.xml
18 changes: 18 additions & 0 deletions .gitlab-ci.yml
@@ -0,0 +1,18 @@
'build_storkmdm_apk':
script:
- git submodule update --init
- source /home/gitlab-runner/.profile
- echo $PATH
- ls -la
- git clone $CI_BUILD_REPO StorkMDM
- cd StorkMDM
- gradle clean build
- cp app/build/outputs/apk/app-release*.apk /home/gitlab-runner
- cd /home/gitlab-runner
- rm -Rf StorkMDM
- scp -i ~gitlab-runner/.ssh/pushgitlab app-release-*.apk teclib@vm000139.paas.teclib.infra:/srv/fdroid/repo
- rm ~gitlab-runner/app-release-*.apk
- ssh -i ~gitlab-runner/.ssh/executegitlab teclib@vm000139.paas.teclib.infra fdroid update -c
tags:
only:
- tags
37 changes: 37 additions & 0 deletions .travis.yml
@@ -0,0 +1,37 @@
language: android
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.android
- $HOME/.gradle
sudo: false

android:
components:
- tools
- platform-tools
- build-tools-23.0.3
- build-tools-22.0.1
- build-tools-22.0.0
- build-tools-21.1.2
- build-tools-21.1.1
- build-tools-20.0.0
- build-tools-19.1.0
- android-23
- extra-android-m2repository
- extra-google-m2repository
- extra-android-support

before_script:
- echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &

licenses:
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
script:
- ./gradlew connectedCheck -PdisablePreDex -PtaskThreads=1 -PandroidThread=1

0 comments on commit e705e82

Please sign in to comment.