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

Bump version number and make it where you do not have to have GITLAB_FABRIC_KEY in order to build.

parent dc5b8ac7
No related branches found
No related tags found
No related merge requests found
Pipeline #
Loading
Loading
@@ -6,20 +6,23 @@ android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
 
project.ext {
GITLAB_FABRIC_KEY = project.hasProperty("GITLAB_FABRIC_KEY") ? project.GITLAB_FABRIC_KEY: "";
}
defaultConfig {
applicationId "com.commit451.gitlab"
minSdkVersion 16
targetSdkVersion 23
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
versionCode 221
versionName "2.2.1"
versionCode 222
versionName "2.2.2"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
ext.enableCrashlytics = true
manifestPlaceholders = [fabric_key: project.GITLAB_FABRIC_KEY]
manifestPlaceholders = [fabric_key: project.ext.GITLAB_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