Skip to content

Commit

Permalink
viewing logs of a minified build is a little inconvenient
Browse files Browse the repository at this point in the history
Signed-off-by: Arnav Gupta <[email protected]>
  • Loading branch information
championswimmer committed Apr 26, 2015
1 parent cc123fe commit efe1567
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: android
script: ./gradlew clean assembleDebug
script: ./gradlew clean assembleRelease
android:
components:
- platform-tools
Expand All @@ -21,7 +21,7 @@ deploy:
skip_cleanup: true
api_key:
secure: o4CPYfEDU/qSkERjPS00cvRpw+fCXf3kRv8iZtwYtqOoESF/Ck/uX6TVqVm6myc2Bw4y4NmWg9cLjbGKBAgzoGpPaTjhQeZfbqe0AbHnEn5bO5JJQHmOEp+El2muiB+Z8wnusCfyI9lvB761MN7Rij41KOLyDXHlEMrBXaUzpP8=
file: app/build/outputs/apk/app-debug.apk
file: app/build/outputs/apk/app-release.apk
on:
tags: true
all_branches: true
4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@ android {
}
buildTypes {
debug {
minifyEnabled = true
minifyEnabled = false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
debuggable true
signingConfig signingConfigs.debug
}
release {
minifyEnabled true
debuggable false
signingConfig signingConfigs.debug
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Expand Down

0 comments on commit efe1567

Please sign in to comment.