android_terminal/docs/releaseChecklist.md

104 lines
2.3 KiB
Markdown
Raw Normal View History

## Terminal Emulator for Android Release Checklist
2011-10-23 10:29:27 -07:00
2015-03-28 10:04:22 -07:00
# Test on 1.6 Donut API 4
2011-10-23 10:29:27 -07:00
2015-03-28 10:04:22 -07:00
(Lowest supported level -- will be dropped soon.)
2011-10-23 10:29:27 -07:00
2015-03-28 10:04:22 -07:00
# Test on 2.1 Eclair API 7
2011-10-23 10:29:27 -07:00
2015-03-28 10:04:22 -07:00
# Test on 2.2 Froyo API 8
2011-10-23 10:29:27 -07:00
2015-03-28 10:04:22 -07:00
# Test on 2.3 Gingerbread API 10
2011-10-23 10:29:27 -07:00
2015-03-28 10:04:22 -07:00
(Still popular with cheap phones.)
2011-10-23 10:29:27 -07:00
2015-03-28 10:04:22 -07:00
# Test on 4.3 Jelly Bean API 18
# Test on 4.4 Kit Kat API 19
# Test on 5.1 Lollipop API 22
(Or whatever latest is.)
2011-10-23 10:29:27 -07:00
# Test with Swype
(Has to be on a real device, Swype beta won't run on an emulator.)
2014-12-14 11:33:11 -08:00
# Update ./term/src/main/AndroidManifest.xml version number
2011-10-23 10:29:27 -07:00
tools/increment-version-number
# Commit changes
git commit -a -m "Increment version number to v1.0.xx"
2011-10-23 10:29:27 -07:00
# Tag git branch with version number
git tag v1.0.xx
2011-10-23 10:29:27 -07:00
# Push git to repository
git push
git push --tags
2011-10-23 10:29:27 -07:00
2012-05-26 03:36:19 -07:00
# Build release apk
2011-10-23 10:29:27 -07:00
tools/build-release
2011-10-23 10:29:27 -07:00
2012-05-26 03:36:19 -07:00
(Will only work if you have the signing keys for the app.)
2011-10-24 09:41:58 -07:00
2012-05-26 03:36:19 -07:00
# Publish to the Google Play Store
open https://play.google.com/apps/publish
2012-05-26 03:36:19 -07:00
The Android Developer Console Publishing UI is error prone:
1) Click on the "Terminal Emulator for Android" link.
2011-10-24 09:41:58 -07:00
2) Click on the APK files tab
3) Upload your new APK.
4) Activate it by clicking on the Activate link
5) Click on the "Save" button.
6) Click on the "Product Details button".
7) Fill in the "Listing Details" for the new version.
8) Click on the "Save" button
2012-05-26 03:36:19 -07:00
9) Visit https://play.google.com/apps/publish and verify that the new version is listed as the current version.
10) Verify that Google Play Store is serving the new version
(check the "What's New" portion.)
2011-10-24 09:41:58 -07:00
2012-05-26 03:36:19 -07:00
https://play.google.com/store/apps/details?id=jackpal.androidterm
2011-10-24 09:41:58 -07:00
(Note, it can take several hours for the app to appear in the store.)
2011-10-24 09:41:58 -07:00
# Update the Terminal Emulator for Android Wiki
2011-10-23 10:49:10 -07:00
open https://github.com/jackpal/Android-Terminal-Emulator/wiki/Recent-Updates
2011-10-23 10:49:10 -07:00
# Publish a new pre-compiled version of the APK for people who can't access Market.
2011-10-23 10:49:10 -07:00
Github serves pages out of branch gh-pages , directory downloads/Term.apk
2015-01-25 10:39:31 -08:00
Also update the version number in index.html
cp ./term/build/outputs/apk/Term.apk /tmp
git checkout gh-pages
mv /tmp/Term.apk downloads/Term.apk
git add downloads/Term.apk
subl index.html
# Update version save index.html
git add index.html
git commit -m "Update to version v1.0.xx"
git push
git checkout master
2015-01-25 10:39:31 -08:00
Public URL is http://jackpal.github.com/Android-Terminal-Emulator/downloads/Term.apk
2011-10-23 10:49:10 -07:00