diff --git a/shell/android-studio/reicast/build.gradle b/shell/android-studio/reicast/build.gradle index 7ccb431ab..c077e393b 100644 --- a/shell/android-studio/reicast/build.gradle +++ b/shell/android-studio/reicast/build.gradle @@ -58,6 +58,7 @@ android { zipAlignEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } + /* release { debuggable false minifyEnabled true @@ -65,6 +66,7 @@ android { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' signingConfig signingConfigs.release } + */ } flavorDimensions "systemtype" diff --git a/shell/android-studio/travis-build.sh b/shell/android-studio/travis-build.sh index 3e42bd164..52acd32c2 100755 --- a/shell/android-studio/travis-build.sh +++ b/shell/android-studio/travis-build.sh @@ -1,7 +1,7 @@ #!/bin/bash set -ev if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then - ./gradlew build --configure-on-demand + ./gradlew build --configure-on-demand --console=plain else - ./gradlew assembleDebug --configure-on-demand + ./gradlew assembleDebug --configure-on-demand --console=plain fi diff --git a/shell/android-studio/travis-release.sh b/shell/android-studio/travis-release.sh index c589e340b..b2a20b050 100755 --- a/shell/android-studio/travis-release.sh +++ b/shell/android-studio/travis-release.sh @@ -3,6 +3,6 @@ set -ev echo travis release: pr = "${TRAVIS_PULL_REQUEST}" - branch = "${TRAVIS_BRANCH}" if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then if [ "${TRAVIS_BRANCH}" = "master" ]; then - ./gradlew publishApkDreamcastRelease + ./gradlew publishApkDreamcastRelease --console=plain fi fi