Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/osfunapps/os-android-app-version-changer-py
Run this module to change your android app's version code and name externally.
https://github.com/osfunapps/os-android-app-version-changer-py
Last synced: 2 months ago
JSON representation
Run this module to change your android app's version code and name externally.
- Host: GitHub
- URL: https://github.com/osfunapps/os-android-app-version-changer-py
- Owner: osfunapps
- License: mit
- Created: 2021-02-09T10:20:16.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-09T10:21:40.000Z (almost 4 years ago)
- Last Synced: 2024-10-15T16:02:38.467Z (2 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Introduction
------------Run this module to change your Android app's version code and name externally.
## Installation
Install via pip:pip install os-android-app-version-changer
## Quick usage
Define your Version properties and run the code:```python
from os_android_app_version_changer.objs.VersionProperties import VersionProperties
from os_android_app_version_changer import version_changerversion_props = VersionProperties(new_version_code=VersionProperties.RAISE_VERSION_BY_ONE,
new_version_name="1.0.3")version_changer.change_version(project_path='/path/to/project',
version_properties=version_props)
```
NOTICE: NOTICE: each of these properties can also hold, apart from specific versions, ```VersionProperties.KEEP_OLD_VERSION``` or ```VersionProperties.RAISE_VERSION_BY_ONE```.## Licence
MIT