Skip to content

Commit 86af152

Browse files
authored
Merge pull request #14 from tareksander/rewrite
fixed release not working, disabled code shrinking for now, bumped ve…
2 parents 0ce26ac + fe1ab51 commit 86af152

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

app/build.gradle

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,24 @@ android {
1212
applicationId "org.studip.unofficial_app"
1313
minSdkVersion 21
1414
targetSdkVersion 30
15-
versionCode 6
16-
versionName "0.3.0"
15+
versionCode 7
16+
versionName "0.3.1"
1717

1818
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1919
signingConfig signingConfigs.'default'
2020
}
2121

2222
buildTypes {
23+
// TODO somehow doesn't work with shrinking
2324
release {
24-
minifyEnabled true
25-
shrinkResources true
26-
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
25+
//minifyEnabled true
26+
//shrinkResources true
27+
//proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
28+
}
29+
debug {
30+
//minifyEnabled true
31+
//shrinkResources true
32+
//proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2733
}
2834
}
2935
buildFeatures {

0 commit comments

Comments
 (0)