Skip to content

Commit

Permalink
final attempt to get stupid travis releases to work
Browse files Browse the repository at this point in the history
Signed-off-by: Arnav Gupta <[email protected]>
  • Loading branch information
championswimmer committed Apr 12, 2015
1 parent 14add72 commit a0ac47b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ branches:
only:
- master
- stable
script: ./gradlew clean assembleTravis
script: ./gradlew clean assembleDebug
android:
components:
- platform-tools
Expand Down
17 changes: 2 additions & 15 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,31 +14,18 @@ android {
}
signingConfigs {
debug {
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
storeFile file("${System.getenv('USERPROFILE')}\\.android\\debug.jks")
} else {
storeFile file("${System.getenv('HOME')}/.android/debug.jks")
}
storeFile file("keystore/debug.jks")
keyAlias 'teamosc'
keyPassword 'teamosc'
storePassword 'teamosc'
}
travis {
storeFile file("keystore/debug.jks")
keyAlias '$System.env.KEY_PASSWORD'
keyPassword '$System.env.KEY_PASSWORD'
storePassword '$System.env.KEY_PASSWORD'
}
release {
}
}
buildTypes {
debug {
debuggable true
}
travis {
debuggable true
signingConfig signingConfigs.travis
signingConfig signingConfigs.debug
}
release {
minifyEnabled false
Expand Down

0 comments on commit a0ac47b

Please sign in to comment.