Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damienaicheh/update-android-manifest-package-action
https://github.com/damienaicheh/update-android-manifest-package-action
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/damienaicheh/update-android-manifest-package-action
- Owner: damienaicheh
- License: mit
- Created: 2021-05-29T09:07:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-29T09:08:04.000Z (over 3 years ago)
- Last Synced: 2024-10-31T10:49:03.991Z (2 months ago)
- Language: TypeScript
- Size: 52.7 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Update Android manifest package action
This action update the `package` and `android:label` for the `application` properties of the AndroidManifest.xml file for your Android projects.
## Inputs
### `android-manifest-path`
**Required** The relative path for the AndroidManifest.xml file.
### `package-name`
**Required** The new package name for the application.### `app-name`
The new application label### `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'
package-name: 'com.mynew.app'
app-name: 'MyApp'
print-file: true
```