Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damienaicheh/update-android-version-manifest-action
https://github.com/damienaicheh/update-android-version-manifest-action
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/damienaicheh/update-android-version-manifest-action
- Owner: damienaicheh
- License: mit
- Created: 2021-05-14T20:38:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T15:49:57.000Z (8 months ago)
- Last Synced: 2024-10-08T17:36:06.161Z (3 months ago)
- Language: TypeScript
- Size: 250 KB
- Stars: 5
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Update Android version Manifest action
This action update the `versionCode` and `versionName` properties of the AndroidManifest.xml file for your Android projects.
## Inputs
### `android-manifest-path`
**Required** The relative path for the AndroidManifest.xml file.
### `version-code`
**Required** The value of the version code, this must be between 0 and 2100000000.### `version-name`
**Required** The value of the version name### `print-file`
Output the AndroidManifest.xml file in console before and after update.
## Usage
```yaml
- name: Update AndroidManifest.xml
uses: damienaicheh/[email protected]
with:
android-manifest-path: './path_to_your/AndroidManifest.xml'
version-code: 2
version-name: '2.0'
print-file: true
```