Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminbamanya committed Jan 30, 2019
0 parents commit 9e66008
Show file tree
Hide file tree
Showing 1,052 changed files with 58,740 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.gradle
/local.properties
/.idea
.DS_Store
/build
/captures
*.iml
45 changes: 45 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
language: android

jdk:
- oraclejdk8

android:
components:
- tools
- platform-tools
- tools
- build-tools-27.0.3
- android-27
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-24

before_install:
- chmod +x gradlew
- export JAVA8_HOME=/usr/lib/jvm/java-8-oracle
- export JAVA_HOME=$JAVA8_HOME
- yes | sdkmanager "platforms;android-27"

after_success:
- ./gradlew coveralls
- chmod +x ./upload-gh-pages.sh
- chmod +x ./import-translations-github.sh
- ./import-translations-github.sh
- ./upload-gh-pages.sh

script:
- cd $TRAVIS_BUILD_DIR/
- ./gradlew testDebugUnitTest assembleDebug jacocoTestReport

notifications:
slack: glucosio:uk2xb9sAxOaVedj7zePyuBqa

before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock

cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
15 changes: 15 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Contributor Code of Conduct

As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.

We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, ability, personal appearance, body size, race, ethnicity, age, or religion.

Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.

This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.

This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.1.0, available at [http://contributor-covenant.org/version/1/1/0/](http://contributor-covenant.org/version/1/1/0/)
48 changes: 48 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
## Submitting issues

If you have questions about how to install or use Glucosio, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [Slack][slack].

### Short version

* The [**issue template can be found here**][template] but be aware of the different repositories! See list below. Please always use the issue template when reporting issues.

### Guidelines
* Please search the existing issues first, it's likely that your issue was already reported or even fixed.
- Go to one of the repositories, click "issues" and type any word in the top search/command bar.
- You can also filter by appending e. g. "state:open" to the search string.
- More info on [search syntax within github](https://help.github.com/articles/searching-issues)
* This repository ([glucosio-android](https://github.com/Glucosio/glucosio-android/issues)) is *only* for issues within the Glucosio for Android code.
* __SECURITY__: Report any potential security bug to us at [email protected] instead of filing an issue in our bug tracker
* The issues in other components should be reported in their respective repositories:
- [iOS client](https://github.com/Glucosio/glucosio-android/issues)
- [API](https://github.com/Glucosio/glucosio-api/issues)
- [Branding](https://github.com/Glucosio/branding-assets/issues)
* Report the issue using our [template][template], it includes all the information we need to track down the issue.

Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues.

[template]: https://github.com/Glucosio/project-tools/blob/master/gh/templates/issue_template.md
[mailinglist]: https://groups.google.com/forum/#!forum/glucosio-help/
[forum]: https://community.glucosio.org
[slack]: https://slack.glucosio.org

## Contributing to Source Code

Thanks for wanting to contribute source code to Glucosio. That's great!

Before we're able to merge your code into Glucosio, you need to sign our [Contributor Agreement][agreement].

Please read the [Developer Manuals][devmanual] to learn how to work with our code base and our standards for contributing source
code.

In order to constantly increase the quality of our software we can no longer accept pull request which submit un-tested code.
It is a must have that changed and added code segments are tested before you make a pull request.


[agreement]: https://www.clahub.com/agreements/Glucosio/glucosio-android
[devmanual]: https://docs.glucosio.org

## Translations
Please submit translations via [Crowdin][crowdin].

[crowdin]: https://translate.glucosio.org
Loading

0 comments on commit 9e66008

Please sign in to comment.