titanium : 如何发布android应用 ( how to distribute to android market)
访问量: 2696
refer to: http://docs.appcelerator.com/titanium/3.0/#!/guide/Distributing_Android_apps
很简单,以google play为例,基本就是:
1. 在 google play上注册。
2. 生成几个文件(key pair)
3. build apk:(这一步是重点,注意已经生成好了 key pair. 具体的生成方式请看: http://siwei.me/blog/posts/app:)
# 注意 --target 以及后面的 -K (签名辅助文件), -P (签名辅助文件的密码), -L(别名) -O (output file) 参数. $ ti build --platform android --target dist-playstore -K /workspace/android_keys/happystock -P ?illyboy? -L happystock -O ./build $ /workspace/android-sdk-linux/platform-tools/adb -s 4f6068df install -r build/HappyStock.apk
4. 使用jarsigner 来检查:
jarsigner -verify -verbose path/yourapp.apk
5. 准备好需要的截图,上传