Merge pull request #1426 from TomHennen/1.4.1_rc0

1.4.1 rc0
This commit is contained in:
Tom Hennen 2015-11-27 11:58:02 -05:00
commit c296f4acee
2 changed files with 13 additions and 2 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.danoeh.antennapod"
android:versionCode="1040012"
android:versionName="1.4.0.12">
android:versionCode="1040100"
android:versionName="1.4.1.0">
<!--
Version code schema:
"1.2.3-SNAPSHOT" -> 1020300

11
makeRelease.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
set -e
DEST=$2
VERSION_NAME=$1
# need to get rid of this so that it gets regenerated
# probably a way to solve this in Gradle too...
rm app/src/main/assets/about.html
./gradlew clean assembleDebug assembleRelease
cp app/build/outputs/apk/app-debug.apk $DEST/AntennaPod_${VERSION_NAME}_debug.apk
cp app/build/outputs/apk/app-release.apk $DEST/AntennaPod_${VERSION_NAME}_release.apk