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
- Host: GitHub
- URL: https://github.com/danielmahon/ti.version
- Owner: danielmahon
- Created: 2012-09-19T20:24:09.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-09-20T16:03:30.000Z (almost 14 years ago)
- Last Synced: 2025-03-27T09:40:38.637Z (over 1 year ago)
- Language: Python
- Size: 117 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
~~~