Skip to content

Commit efe1567

Browse files
viewing logs of a minified build is a little inconvenient
Signed-off-by: Arnav Gupta <[email protected]>
1 parent cc123fe commit efe1567

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: android
2-
script: ./gradlew clean assembleDebug
2+
script: ./gradlew clean assembleRelease
33
android:
44
components:
55
- platform-tools
@@ -21,7 +21,7 @@ deploy:
2121
skip_cleanup: true
2222
api_key:
2323
secure: o4CPYfEDU/qSkERjPS00cvRpw+fCXf3kRv8iZtwYtqOoESF/Ck/uX6TVqVm6myc2Bw4y4NmWg9cLjbGKBAgzoGpPaTjhQeZfbqe0AbHnEn5bO5JJQHmOEp+El2muiB+Z8wnusCfyI9lvB761MN7Rij41KOLyDXHlEMrBXaUzpP8=
24-
file: app/build/outputs/apk/app-debug.apk
24+
file: app/build/outputs/apk/app-release.apk
2525
on:
2626
tags: true
2727
all_branches: true

app/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ android {
2424
}
2525
buildTypes {
2626
debug {
27-
minifyEnabled = true
27+
minifyEnabled = false
2828
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2929
debuggable true
3030
signingConfig signingConfigs.debug
3131
}
3232
release {
3333
minifyEnabled true
34+
debuggable false
35+
signingConfig signingConfigs.debug
3436
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
3537
}
3638
}

0 commit comments

Comments
 (0)