An open API service indexing awesome lists of open source software.

https://github.com/danielmahon/ti.version

Python compile script to increment build versions for Appcelerator Titanium Mobile apps
https://github.com/danielmahon/ti.version

Last synced: about 1 year ago
JSON representation

Python compile script to increment build versions for Appcelerator Titanium Mobile apps

Awesome Lists containing this project

README

          

# ti.version

Python compile script to increment build versions for Appcelerator Titanium Mobile apps

## Usage

Just copy the `` folder into the `` folder for your application.

Edit tiapp.xml, and add:
~~~

ti.version

~~~
That should create/update a file `` in your `` folder.

You can read the package.json file in app using:
~~~
var pjson = JSON.parse(Ti.Filesystem.getFile('./package.json').read());
Ti.API.info(pjson);
~~~