Skip to content
Snippets Groups Projects
Commit a157d3fd authored by John Carlson's avatar John Carlson
Browse files

Change the fabric key attribute to match the new app name. Update the README...

Change the fabric key attribute to match the new app name. Update the README to point to the right things with the name change
parent e3033064
No related branches found
No related tags found
No related merge requests found
# GitLab for Android
[![Google Play](https://gitlab.com/Commit451/GitLabAndroid/raw/master/art/google-play-badge.png)](https://play.google.com/store/apps/details?id=com.commit451.gitlab)
# LabCoat for GitLab
[![Google Play](https://gitlab.com/Commit451/LabCoat/raw/master/art/google-play-badge.png)](https://play.google.com/store/apps/details?id=com.commit451.gitlab)
 
[![build status](https://gitlab.com/ci/projects/7701/status.png?ref=master)](https://gitlab.com/ci/projects/7701?ref=master)
 
This is the source code for the unofficial GitLab Android app.
 
![Image](https://gitlab.com/Commit451/GitLabAndroid/raw/master/art/screenshot-1.png)
![Image](https://gitlab.com/Commit451/LabCoat/raw/master/art/screenshot-1.png)
 
Please see the [issues](https://gitlab.com/Commit451/GitLabAndroid/issues) section to
Please see the [issues](https://gitlab.com/Commit451/LabCoat/issues) section to
report any bugs or feature requests and to see the list of known issues.
 
## Building
The app uses Fabric for Crashlytics, so you will need to generate your own Crashlytics/Fabric key. All in all, your gradle.properties will look something like this:
You should be able to build the project from Android Studio without any further setup. The app uses Fabric for Crashlytics, so if you wanted to do a release build, you would need to generate your own Crashlytics/Fabric key. All in all, your gradle.properties will look something like this:
```Gradle
GITLAB_FABRIC_KEY = FABRIC_KEY_GOES_HERE_BUT_ONLY_REALLY_NEEDED_FOR_RELEASE_BUILDS
LABCOAT_FABRIC_KEY = FABRIC_KEY_GOES_HERE_BUT_ONLY_REALLY_NEEDED_FOR_RELEASE_BUILDS
```
## Libraries
The following 3rd party libraries and resources are the reason this app works. Rapid development is easily attainable thanks to these fine folks and the work they do:
Loading
Loading
@@ -48,7 +48,7 @@ Please fork this repository and contribute back! All Merge Requests should be ma
License
--------
 
Copyright 2015 Commit 451
Copyright 2016 Commit 451
 
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Loading
Loading
Loading
Loading
@@ -7,7 +7,7 @@ android {
buildToolsVersion "23.0.2"
 
project.ext {
GITLAB_FABRIC_KEY = project.hasProperty("GITLAB_FABRIC_KEY") ? project.GITLAB_FABRIC_KEY: "";
LABCOAT_FABRIC_KEY = project.hasProperty("LABCOAT_FABRIC_KEY") ? project.LABCOAT_FABRIC_KEY : "";
}
defaultConfig {
applicationId "com.commit451.gitlab"
Loading
Loading
@@ -22,7 +22,7 @@ android {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
ext.enableCrashlytics = true
manifestPlaceholders = [fabric_key: project.ext.GITLAB_FABRIC_KEY]
manifestPlaceholders = [fabric_key: project.ext.LABCOAT_FABRIC_KEY]
}
debug {
minifyEnabled false
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment