Skip to content

Commit

Permalink
Fulguris Release v0.0.3
Browse files Browse the repository at this point in the history
Fixing broken release build settings.
  • Loading branch information
Slion committed Apr 9, 2020
1 parent 7a51318 commit c235859
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
12 changes: 7 additions & 5 deletions app/build.gradle
Expand Up @@ -27,9 +27,11 @@ android {
}

release {
multiDexEnabled false
minifyEnabled true
shrinkResources true
debuggable false
multiDexEnabled true
// Minify breaks settings since we migrated them to androidx
minifyEnabled false
shrinkResources false
proguardFiles 'proguard-project.txt'
testCoverageEnabled false
// Use debug signing for now
Expand Down Expand Up @@ -64,8 +66,8 @@ android {
slions {
dimension "brand"
applicationId "net.slions.fulguris"
versionCode 0
versionName "0.0.2"
versionCode 2
versionName "0.0.3"
archivesBaseName = "Fulguris-v$versionName"
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.android.tools.build:gradle:3.6.2'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Fri Aug 23 20:46:53 EDT 2019
#Thu Apr 09 20:39:13 CEST 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

0 comments on commit c235859

Please sign in to comment.