├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── manifesto.py ├── processing ├── __init__.py └── manifest.py └── utils ├── __init__.py ├── axml.py ├── resourceid.py └── templates.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldroid/manifesto/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldroid/manifesto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldroid/manifesto/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldroid/manifesto/HEAD/config.py -------------------------------------------------------------------------------- /manifesto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldroid/manifesto/HEAD/manifesto.py -------------------------------------------------------------------------------- /processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /processing/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldroid/manifesto/HEAD/processing/manifest.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/axml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldroid/manifesto/HEAD/utils/axml.py -------------------------------------------------------------------------------- /utils/resourceid.py: -------------------------------------------------------------------------------- 1 | RESOURCE_ID = { 2 | u'versionCode': 0x0101021b, 3 | 4 | } 5 | -------------------------------------------------------------------------------- /utils/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldroid/manifesto/HEAD/utils/templates.py --------------------------------------------------------------------------------